practice-setting.module.less 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. flex-wrap: wrap;
  18. margin-top: 14px;
  19. .radio:first-child {
  20. :global {
  21. .van-radio__label {
  22. margin-left: 0;
  23. }
  24. }
  25. }
  26. .checkbox:first-child {
  27. :global {
  28. .van-checked__label {
  29. margin-left: 0;
  30. }
  31. }
  32. }
  33. }
  34. .radio {
  35. :global {
  36. .van-radio__icon {
  37. display: none;
  38. }
  39. }
  40. }
  41. .checkbox-group {
  42. padding-bottom: 12px;
  43. }
  44. .radio-group {
  45. :global {
  46. .van-tag--large {
  47. width: 94px;
  48. height: 30px;
  49. font-size: 16px;
  50. text-align: center;
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. }
  55. .van-tag {
  56. box-sizing: border-box;
  57. }
  58. .van-tag--default {
  59. color: var(--van-tag-text-default-color);
  60. }
  61. .van-tag--primary {
  62. background-color: var(--tag-bg-color);
  63. }
  64. }
  65. }
  66. .checkbox {
  67. margin-bottom: 5px;
  68. :global {
  69. .van-checkbox__icon {
  70. display: none;
  71. }
  72. }
  73. }
  74. .PracticeSettingBtns {
  75. :global {
  76. .van-button {
  77. font-size: 18px;
  78. }
  79. }
  80. }