186 lines
3.4 KiB
Plaintext
186 lines
3.4 KiB
Plaintext
/* pages/vehicleMaintenance/maintainSend/maintainSend.wxss */
|
|
.container {
|
|
height: 100vh;
|
|
padding-top: 2px;
|
|
box-sizing: border-box;
|
|
background: #EFF1F4;
|
|
position: relative;
|
|
|
|
.row {
|
|
margin-bottom: 8px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
.label {
|
|
color: #858CA0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.val {
|
|
color: #2E3A4F;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.item-container {
|
|
height: calc(100vh - 72px);
|
|
max-height: calc(100vh - 72px);
|
|
overflow-y: auto;
|
|
|
|
// background-color: #bfa;
|
|
.item {
|
|
padding: 12px 10px;
|
|
background: #fff;
|
|
position: relative;
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.require {
|
|
&::after {
|
|
content: '*';
|
|
width: 6px;
|
|
height: 100%;
|
|
color: red;
|
|
margin-left: 8px;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
color: #333F53;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&::before {
|
|
content: '';
|
|
display: inline-block;
|
|
width: 4px;
|
|
height: 22px;
|
|
background: linear-gradient(180deg, #4E87FC 0%, #38B1FE 100%);
|
|
border-radius: 2px;
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
.echoFile {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-top: 16px;
|
|
}
|
|
}
|
|
|
|
.photo-list {
|
|
width: 64px;
|
|
height: 64px;
|
|
margin-left: 8px;
|
|
border-radius: 4px;
|
|
position: relative;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.del {
|
|
width: 20px;
|
|
height: 20px;
|
|
position: absolute;
|
|
top: -10px;
|
|
right: -10px;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.bottom {
|
|
width: 100%;
|
|
padding: 10px 8px 14px;
|
|
background: #fff;
|
|
box-sizing: border-box;
|
|
border-radius: 8px 8px 0 0;
|
|
box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.2);
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
|
|
.row {
|
|
width: 100%;
|
|
height: 36px;
|
|
padding: 8px 10px;
|
|
margin-bottom: 8px;
|
|
box-sizing: border-box;
|
|
border-radius: 4px;
|
|
border: 1px solid #E6EAF2;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: 8px;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
input {
|
|
flex: 1;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.btn-box {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
.btn {
|
|
width: 100%;
|
|
height: 40px;
|
|
background-color: #FFFFFF;
|
|
line-height: 40px;
|
|
border-radius: 8px;
|
|
color: #2E3A4F;
|
|
text-align: center;
|
|
border: 1px solid #D6D6D6;
|
|
}
|
|
|
|
.apply {
|
|
background: linear-gradient(90deg, #3B7CFC 0%, #548BFC 100%);
|
|
color: #2E3A4F;
|
|
color: #fff;
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
|
|
.weui-input {
|
|
border-radius: 8px;
|
|
border: 1px solid #E6EAF2;
|
|
width: calc(100% - 16px);
|
|
height: 83px;
|
|
padding: 8px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.radio-group {
|
|
margin-top: 16px;
|
|
display: block;
|
|
|
|
.van-radio-group {
|
|
display: flex;
|
|
}
|
|
}
|
|
} |