timer.module.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. .timer {
  2. background: #f6f8f9;
  3. min-height: 100vh;
  4. overflow: hidden;
  5. padding: 0 14px;
  6. :global {
  7. .van-button {
  8. font-size: 18px;
  9. color: #FFFFFF;
  10. }
  11. }
  12. }
  13. .tips {
  14. margin: 12px 0;
  15. padding: 15px 12px;
  16. background: #ffffff;
  17. border-radius: 10px;
  18. .tipsTitle {
  19. font-size: 18px;
  20. font-weight: 500;
  21. color: #000000;
  22. line-height: 25px;
  23. }
  24. .tipsTime {
  25. padding-top: 4px;
  26. font-size: 14px;
  27. color: #ff9e5a;
  28. line-height: 22px;
  29. span {
  30. font-weight: 600;
  31. }
  32. }
  33. }
  34. .radio-group,
  35. .checkbox-group {
  36. display: flex;
  37. flex-wrap: wrap;
  38. margin-top: 14px;
  39. .radio:first-child {
  40. :global {
  41. .van-radio__label {
  42. margin-left: 0;
  43. }
  44. }
  45. }
  46. .checkbox:first-child {
  47. :global {
  48. .van-checked__label {
  49. margin-left: 0;
  50. }
  51. }
  52. }
  53. }
  54. .radio {
  55. :global {
  56. .van-radio__icon {
  57. display: none;
  58. }
  59. }
  60. }
  61. .colField {
  62. margin: 12px 0;
  63. padding: 14px 12px;
  64. background-color: #fff;
  65. border-radius: 10px;
  66. .radio-group {
  67. :global {
  68. .van-tag--large {
  69. width: 94px;
  70. height: 30px;
  71. font-size: 15px;
  72. text-align: center;
  73. display: flex;
  74. align-items: center;
  75. justify-content: center;
  76. }
  77. .van-tag {
  78. box-sizing: border-box;
  79. }
  80. .van-tag--default {
  81. color: var(--van-tag-text-default-color);
  82. }
  83. .van-tag--primary {
  84. background-color: var(--tag-bg-color);
  85. }
  86. }
  87. }
  88. .title {
  89. display: flex;
  90. align-items: center;
  91. img {
  92. width: 18px;
  93. height: 18px;
  94. margin-right: 4px;
  95. }
  96. }
  97. }
  98. .timerContainer {
  99. background: #ffffff;
  100. border-radius: 10px;
  101. padding: 14px 5px 9px;
  102. :global {
  103. .van-col {
  104. margin-bottom: 5px;
  105. }
  106. }
  107. }
  108. .tag {
  109. height: 28px;
  110. background: #eff6f5;
  111. border-radius: 4px;
  112. font-size: 12px;
  113. font-weight: 500;
  114. color: #2dc7aa;
  115. display: flex;
  116. align-items: center;
  117. justify-content: center;
  118. }
  119. .active {
  120. background: #2dc7aa;
  121. color: #ffffff;
  122. }
  123. .select {
  124. color: #ffffff !important;
  125. background: #ffb752;
  126. }
  127. .btnGroupTimer {
  128. padding-top: 20px;
  129. background: #F6F8F9;
  130. padding-bottom: 30px;
  131. }