JIALDemo/target/classes/backend/styles/hearCaseAdd.css

206 lines
3.2 KiB
CSS
Raw Normal View History

2023-12-12 15:23:28 +08:00
/* 共享的样式 */
.input-common {
2023-12-10 00:04:13 +08:00
width: 130px;
}
2023-12-12 15:23:28 +08:00
.number-common {
2023-12-10 00:04:13 +08:00
border-left: solid 1px #FFE1CA;
background: #fff3ea;
}
2023-12-12 15:23:28 +08:00
.table-common {
2023-12-10 00:04:13 +08:00
border: solid 1px #EBEEF5;
border-radius: 3px;
}
2023-12-12 15:23:28 +08:00
.table-common th {
2023-12-10 00:04:13 +08:00
padding: 5px 0;
}
2023-12-12 15:23:28 +08:00
.table-common td {
2023-12-10 00:04:13 +08:00
padding: 7px 0;
}
2023-12-12 15:23:28 +08:00
.dialog-common {
2023-12-10 00:04:13 +08:00
padding: 0;
border-bottom: solid 1px #ccc;
}
2023-12-12 15:23:28 +08:00
.footer-common {
2023-12-10 00:04:13 +08:00
padding-top: 27px;
}
2023-12-12 15:23:28 +08:00
.content-common {
2023-12-10 00:04:13 +08:00
background: #fafafb;
padding: 20px;
border: solid 1px #ccc;
border-radius: 3px;
}
2023-12-12 15:23:28 +08:00
.checkbox-label-common {
2023-12-10 00:04:13 +08:00
width: 100%;
}
2023-12-12 15:23:28 +08:00
/* 原有样式的优化 */
.selectInput {
position: relative;
width: 100%;
min-width: 100px;
2023-12-10 00:04:13 +08:00
}
2023-12-12 15:23:28 +08:00
.selectInput .flavorSelect {
position: absolute;
width: 100%;
padding: 0 10px;
border-radius: 3px;
border: solid 1px #FF903D;
line-height: 30px;
text-align: center;
background: #fff;
top: 50px;
z-index: 99;
2023-12-10 00:04:13 +08:00
}
2023-12-12 15:23:28 +08:00
.selectInput .flavorSelect .items {
cursor: pointer;
display: inline-block;
width: 100%;
line-height: 35px;
border-bottom: solid 1px #f4f4f4;
color: #666;
2023-12-10 00:04:13 +08:00
}
2023-12-12 15:23:28 +08:00
.selectInput .flavorSelect .none {
font-size: 14px;
2023-12-10 00:04:13 +08:00
}
2023-12-12 15:23:28 +08:00
#hearCase-add-app .uploadImg .el-form-item__label::before,
#hearCase-add-app .plaintiff .defendant .el-form-item__label::before {
content: '*';
color: #F56C6C;
margin-right: 4px;
2023-12-10 00:04:13 +08:00
}
2023-12-12 15:23:28 +08:00
.addList .searchInfo {
2023-12-10 00:04:13 +08:00
position: absolute;
top: 10px;
right: 20px;
}
2023-12-12 15:23:28 +08:00
.addTable {
2023-12-10 00:04:13 +08:00
width: 777px;
}
2023-12-12 15:23:28 +08:00
.addBut {
2023-12-10 00:04:13 +08:00
background: #ffc200;
display: inline-block;
padding: 0px 20px;
border-radius: 3px;
line-height: 40px;
cursor: pointer;
border-radius: 4px;
color: #333333;
font-weight: 500;
}
2023-12-12 15:23:28 +08:00
.addCon {
2023-12-10 00:04:13 +08:00
display: flex;
2023-12-12 15:23:28 +08:00
line-height: 30px;
2023-12-10 00:04:13 +08:00
}
2023-12-12 15:23:28 +08:00
.leftCont {
2023-12-10 00:04:13 +08:00
display: flex;
border-right: solid 2px #E4E7ED;
width: 60%;
2023-12-12 15:23:28 +08:00
2023-12-10 00:04:13 +08:00
}
2023-12-12 15:23:28 +08:00
.tabBut {
2023-12-10 00:04:13 +08:00
width: 110px;
}
2023-12-12 15:23:28 +08:00
.tabBut span {
2023-12-10 00:04:13 +08:00
display: block;
text-align: center;
border-right: solid 2px #f4f4f4;
cursor: pointer;
}
2023-12-12 15:23:28 +08:00
.act {
2023-12-10 00:04:13 +08:00
border-color: #FFC200 !important;
color: #FFC200 !important;
}
2023-12-12 15:23:28 +08:00
.tabList {
2023-12-10 00:04:13 +08:00
flex: 1;
padding: 15px;
}
2023-12-12 15:23:28 +08:00
.tabList .table {
2023-12-10 00:04:13 +08:00
border: solid 1px #f4f4f4;
border-bottom: solid 1px #f4f4f4;
}
2023-12-12 15:23:28 +08:00
.tabList .table .items {
2023-12-10 00:04:13 +08:00
border-bottom: solid 1px #f4f4f4;
padding: 0 10px;
display: flex;
}
2023-12-12 15:23:28 +08:00
.tabList .table .items .el-checkbox,
.tabList .table .items .el-checkbox__label {
2023-12-10 00:04:13 +08:00
width: 100%;
}
2023-12-12 15:23:28 +08:00
.tabList .table .items .item {
2023-12-10 00:04:13 +08:00
display: flex;
padding-right: 20px;
}
2023-12-12 15:23:28 +08:00
.tabList .table .items .item span {
2023-12-10 00:04:13 +08:00
display: inline-block;
text-align: center;
flex: 1;
}
2023-12-12 15:23:28 +08:00
.ritCont {
2023-12-10 00:04:13 +08:00
width: 40%;
padding: 0 15px;
}
2023-12-12 15:23:28 +08:00
.ritCont .item {
2023-12-10 00:04:13 +08:00
box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.03);
display: flex;
text-align: center;
padding: 0 10px;
margin-bottom: 20px;
border-radius: 6px;
color: #818693;
}
2023-12-12 15:23:28 +08:00
.ritCont .item span:first-child {
2023-12-10 00:04:13 +08:00
text-align: left;
color: #20232A;
}
2023-12-12 15:23:28 +08:00
.ritCont .item .price {
2023-12-10 00:04:13 +08:00
display: inline-block;
flex: 1;
}
2023-12-12 15:23:28 +08:00
.ritCont .item .del {
2023-12-10 00:04:13 +08:00
cursor: pointer;
}
2023-12-12 15:23:28 +08:00
.ritCont .item .del img {
2023-12-10 00:04:13 +08:00
position: relative;
top: 5px;
width: 20px;
}
2023-12-12 15:23:28 +08:00
.separator {
margin: 0 5px; /* 调整分隔符两侧的间距 */
color: #999; /* 设置分隔符颜色 */
}