style.scss 338 B

1234567891011121314151617181920212223
  1. /* 单选 */
  2. .v-radio{
  3. width: 40upx;
  4. height: 40upx;
  5. border: 1upx solid;
  6. border-radius: 50%;
  7. }
  8. .v-radio-check{
  9. font-size: 30upx;
  10. line-height: 34upx;
  11. color: #fff;
  12. font-weight: bold;
  13. }
  14. .v-radio-small{
  15. width: 24upx;
  16. height: 24upx;
  17. }
  18. .v-radio-small .v-radio-check {
  19. font-size: 20upx;
  20. line-height: 24upx;
  21. }
  22. /* 单选 */