practice-setting.module.less 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .select {
  2. padding: 0 12px;
  3. height: 24px;
  4. }
  5. .tag-list {
  6. margin-top: 12px;
  7. :global {
  8. .van-tag {
  9. margin-right: 6px;
  10. margin-bottom: 6px;
  11. }
  12. }
  13. }
  14. .radio-group,
  15. .checkbox-group {
  16. display: flex;
  17. margin-top: 14px;
  18. .radio:first-child {
  19. :global {
  20. .van-radio__label {
  21. margin-left: 0;
  22. }
  23. }
  24. }
  25. .checkbox:first-child {
  26. :global {
  27. .van-checked__label {
  28. margin-left: 0;
  29. }
  30. }
  31. }
  32. }
  33. .radio {
  34. :global {
  35. .van-radio__icon {
  36. display: none;
  37. }
  38. .van-tag--large {
  39. width: 94px;
  40. height: 30px;
  41. font-size: 16px;
  42. text-align: center;
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. }
  47. .van-tag {
  48. box-sizing: border-box;
  49. }
  50. .van-tag--default {
  51. color: var(--van-tag-text-default-color);
  52. }
  53. .van-tag--primary {
  54. background-color: var(--tag-bg-color);
  55. }
  56. }
  57. }
  58. .checkbox-group {
  59. padding-bottom: 12px;
  60. }
  61. .checkbox {
  62. :global {
  63. .van-checkbox__icon {
  64. display: none;
  65. }
  66. .van-tag--large {
  67. width: 94px;
  68. height: 30px;
  69. font-size: 16px;
  70. text-align: center;
  71. display: flex;
  72. align-items: center;
  73. justify-content: center;
  74. }
  75. .van-tag {
  76. box-sizing: border-box;
  77. }
  78. .van-tag--default {
  79. color: var(--van-tag-text-default-color);
  80. }
  81. .van-tag--primary {
  82. background-color: var(--tag-bg-color);
  83. }
  84. }
  85. }