12345678910111213141516171819202122232425 |
- @import "../../style/common";
- @import "../../style/font";
- /* 单选 */
- .v-radio{
- width: 40upx;
- height: 40upx;
- border: 1upx solid;
- border-radius: 50%;
- }
- .v-radio-check{
- font-size: 30upx;
- line-height: 34upx;
- color: #fff;
- font-weight: bold;
- }
- .v-radio-small{
- width: 24upx;
- height: 24upx;
- }
- .v-radio-small .v-radio-check {
- font-size: 20upx;
- line-height: 24upx;
- }
- /* 单选 */
|