1234567891011121314151617181920212223 |
- /* 单选 */
- .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;
- }
- /* 单选 */
|