You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.2 KiB

3 years ago
button[type=primary] {
background-color: #007eff;
3 years ago
}
.l-title {
display: flex;
align-items: center;
font-size: 28rpx;
color: #333;
&:before {
content: '';
width: 6rpx;
height: 28rpx;
margin-right: 12rpx;
vertical-align: middle;
background-color: #4876F9;
}
}
.form-list {
padding: 0 24rpx;
margin: 20rpx 24rpx;
border-radius: 16rpx;
background-color: #fff;
.line {
display: flex;
justify-content: space-between;
align-items: center;
padding: 28rpx 0;
border-bottom: 1px solid #E6E8ED;
&:last-child {
border-bottom: 0;
}
}
.ph {
font-size: 28rpx;
color: #999;
}
.name, .val, input {
font-size: 28rpx;
color: #333;
}
input {
flex: 1;
margin-left: 20rpx;
text-align: right;
}
.req {
.name:after {
content: '*';
margin-left: 3px;
color: #F53232;
vertical-align: middle;
}
}
}
.picker-input .input-value-border {
line-height: 1;
border: 0;
}
3 years ago
.tab {
display: flex;
justify-content: space-around;
padding: 10px;
margin-bottom: 10px;
background-color: #fff;
li {
padding: 0 4px;
font-size: 14px;
line-height: 30px;
border-bottom: 3px solid transparent;
}
.active {
color: $uni-primary;
border-bottom-color: $uni-primary;
}
3 years ago
}
.plus {
position: fixed;
bottom: 20px;
right: 20px;
3 years ago
}