139 lines
3.2 KiB
Plaintext
139 lines
3.2 KiB
Plaintext
/* pages/backlog/violationFeedback/violationFeedback.wxss */
|
|
.container {
|
|
height: 100vh;
|
|
padding-top: 2px;
|
|
box-sizing: border-box;
|
|
background: #EFF1F4;
|
|
overflow: hidden;
|
|
position: relative;
|
|
.content {
|
|
padding: 12px 8px 4px;
|
|
background: #fff;
|
|
.row {
|
|
width: 100%;
|
|
min-height: 36px;
|
|
padding: 8px 10px;
|
|
margin-bottom: 8px;
|
|
box-sizing: border-box;
|
|
border-radius: 4px;
|
|
border: 1px solid #E6EAF2;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
.label {
|
|
color: #2F3B50;
|
|
font-size: 14px;
|
|
}
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
|
|
.select-box {
|
|
width: 70%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
.placeholder{
|
|
// color: #949CB5;
|
|
}
|
|
.arrow{
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 13rpx solid transparent;
|
|
border-right: 13rpx solid transparent;
|
|
border-top: 15rpx solid #636B83;
|
|
margin-left: 18rpx;
|
|
}
|
|
}
|
|
}
|
|
.row-now {
|
|
width: 100%;
|
|
min-height: 36px;
|
|
padding: 8px 10px;
|
|
margin-bottom: 8px;
|
|
box-sizing: border-box;
|
|
border-radius: 4px;
|
|
border: 1px solid #E6EAF2;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.label {
|
|
color: #2F3B50;
|
|
font-size: 14px;
|
|
}
|
|
.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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
} |