1234567891011121314151617181920212223242526272829303132333435 |
- .form {
- font-size: 28rpx;
- }
-
- .form-label {
- width: 200rpx;
- font-size: 28rpx;
- line-height: 36rpx;
- color: gray;
- }
-
- .form-value {
- width: 550rpx;
- }
-
- .active-check {
- background-color: #19be6b;
- border-radius: 50%;border: 1rpx #19be6b solid;
-
- }
-
- .no-check {
- border-radius: 50%;border: 1rpx gray solid;
- }
-
- .form-label::before {
- display: inline-block;
- margin-right: 6rpx;
- color: #ef473a;
- font-size: 28rpx;
- font-family: SimSun,sans-serif;
- line-height: 1;
- content: "*"
- }
-
|