style.scss 396 B

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