97 lines
1.4 KiB
Plaintext
97 lines
1.4 KiB
Plaintext
@import "../styles/_base.less";
|
|
|
|
.form-item {
|
|
position: relative;
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
height: 88rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding-right: 25rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.row {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
height: 2rpx;
|
|
width: 730rpx;
|
|
background: #f3f3f3;
|
|
}
|
|
|
|
.text-require {
|
|
color: #e23;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.form-label {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
height: 88rpx;
|
|
padding-left: 25rpx;
|
|
padding-right: 15rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.disabled {
|
|
color: #9a9a9a !important;
|
|
}
|
|
|
|
.mask {
|
|
position: absolute;
|
|
z-index: 999;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.form-label-right {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.form-label-left {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.picker-view {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
height: 88rpx;
|
|
flex: 1;
|
|
|
|
.picker {
|
|
width: 100%;
|
|
|
|
.pickerText {
|
|
font-size: 28rpx;
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.close {
|
|
height: 36rpx;
|
|
width: 36rpx;
|
|
background: #ddd;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.pls-class {
|
|
color: #9a9a9a;
|
|
}
|
|
|
|
.hideLabel {
|
|
padding-left: 25rpx;
|
|
} |