2025-06-19 17:33:18 +08:00

142 lines
3.4 KiB
Plaintext

/* pages/backlog/accidentFeedback/accidentFeedback.wxss */
.container {
height: 100vh;
padding-top: 2px;
box-sizing: border-box;
background: #EFF1F4;
overflow: hidden;
position: relative;
.content {
max-height: calc(100vh - 110px);
padding: 12px 8px 4px;
background: #fff;
border-radius: 0 0 8px 8px;
overflow-y: auto;
.row {
width: 100%;
min-height: 36px;
padding: 8px 10px;
margin-bottom: 8px;
box-sizing: border-box;
box-shadow: 0px 1px 0px 0px #E6EAF2;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
position: relative;
.label {
color: #2F3B50;
font-size: 14px;
}
.select {
width: 70%;
position: absolute;
right: 10px;
picker {
width: 100%;
text-align: right;
position: relative;
.picker {
width: 100%;
height: 38px;
padding-right: 20px;
box-sizing: border-box;
// border: 1px solid #E6EAF2;
border-radius: 4px;
font-size: 14px;
display: flex;
justify-content: flex-end;
align-items: center;
}
.picker::after {
content: '';
width: 0;
height: 0;
border-top: 6px solid #636B83;
border-right: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid transparent;
position: absolute;
top: 50%;
right: 4px;
transform: translateY(-2px);
}
}
}
.date-select {
width: 70%;
padding-right: 20px;
text-align: right;
position: relative;
.arrow {
width: 0;
height: 0;
border-top: 6px solid #636B83;
border-right: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid transparent;
position: absolute;
top: 50%;
right: 4px;
transform: translateY(-2px);
}
}
.marker {
width: 100%;
margin-top: 8px;
color: #949CB5;
font-size: 14px;
}
.upload {
width: 100%;
margin-top: 8px;
.upload-btn {
width: 64px;
height: 64px;
background: #ECF1FF;
border-radius: 4px;
border: 1px dashed #4381FC;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
image {
width: 20px;
height: 20px;
margin: 16rpx 0 8rpx;
}
.val {
color: #4381FC;
font-size: 14px;
}
}
}
}
}
.bottom {
width: 100%;
padding: 22px 10px;
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;
.btn-box {
width: 100%;
display: flex;
justify-content: space-between;
.btn {
width: 100%;
height: 40px;
line-height: 40px;
border-radius: 8px;
background: linear-gradient(90deg, #3B7CFC 0%, #548BFC 100%);
color: #fff;
font-weight: bold;
text-align: center;
}
}
}
}