index.module.less 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. .timerWrap {
  2. background-color: #fff;
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. border-radius: 0 0 16px 16px;
  7. .timerTop {
  8. width: 276px;
  9. height: 41px;
  10. background: #F5F6FA;
  11. border-radius: 8px;
  12. margin-top: 24px;
  13. display: flex;
  14. flex-direction: row;
  15. align-items: center;
  16. margin-bottom: 24px;
  17. .timerTopPane {
  18. width: 50%;
  19. text-align: center;
  20. line-height: 41px;
  21. cursor: pointer;
  22. }
  23. .timerTopPaneActive {
  24. background: #198CFE;
  25. border-radius: 8px;
  26. color: #fff;
  27. }
  28. }
  29. }
  30. // 计时器
  31. .timerItemInfo {
  32. width: 692px;
  33. background: #A6D1FF;
  34. box-shadow: 0px 9px 0px 0px #CBD6DF;
  35. border-radius: 46px;
  36. border: 13px solid #EEF7FF;
  37. // margin-bottom: 40px;
  38. padding: 10px;
  39. .timerItemInset {
  40. min-height: 339px;
  41. border-radius: 28px 28px 38px 38px;
  42. background: #D8ECFE;
  43. }
  44. .timerItemInfoTop {
  45. width: 100%;
  46. display: flex;
  47. flex-direction: row;
  48. align-items: center;
  49. justify-content: center;
  50. .dot {
  51. width: 10px;
  52. height: 10px;
  53. background: #131415;
  54. border-radius: 28px;
  55. margin-bottom: 15px;
  56. margin: 7px 70px;
  57. }
  58. .dotTop {
  59. width: 10px;
  60. height: 74px;
  61. }
  62. .timerItemTopCore {
  63. display: flex;
  64. flex-direction: column;
  65. align-items: center;
  66. justify-content: center;
  67. h4 {
  68. font-size: 22px;
  69. font-weight: 600;
  70. color: #7CAEE1;
  71. line-height: 70px;
  72. }
  73. }
  74. }
  75. }
  76. .nowTimerWrap {
  77. margin: 35px 0 26px;
  78. width: 174px;
  79. line-height: 45px;
  80. height: 45px;
  81. width: 100%;
  82. text-align: center;
  83. font-size: 24px;
  84. font-weight: 400;
  85. color: rgba(19, 20, 21, .5);
  86. line-height: 33px;
  87. // padding-bottom: 20px;
  88. }
  89. .btnGroupModal {
  90. padding: 40px 0 32px;
  91. :global {
  92. .n-button {
  93. height: 47px;
  94. min-width: 156px;
  95. }
  96. }
  97. }
  98. .palyIcon {
  99. width: 11px;
  100. height: 14px;
  101. }
  102. .playText {
  103. margin-left: 10px;
  104. }
  105. .countInput {
  106. // width: 66px;
  107. // height: 33px;
  108. // background: #F5F6FA;
  109. // border-radius: 17px;
  110. margin: 0 16px;
  111. :global {
  112. .n-input__border {
  113. display: none;
  114. }
  115. .n-input__state-border {
  116. display: none;
  117. }
  118. .n-input {
  119. width: 66px;
  120. height: 33px;
  121. border-radius: 17px;
  122. overflow: hidden;
  123. .n-input-wrapper {
  124. text-align: center;
  125. background: #F5F6FA;
  126. padding: 0;
  127. }
  128. }
  129. }
  130. }
  131. .dotBtm {
  132. width: 100%;
  133. height: 33px;
  134. }
  135. .chioseWrap {
  136. margin: 35px 0 26px;
  137. // width: 174px;
  138. line-height: 45px;
  139. height: 45px;
  140. background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
  141. box-shadow: 2px 2px 0px 0px #A2CAEE;
  142. border-radius: 23px;
  143. display: flex;
  144. flex-direction: row;
  145. align-items: center;
  146. justify-content: center;
  147. :global {
  148. .n-input__input {
  149. line-height: 33px !important;
  150. height: 33px !important;
  151. }
  152. .n-input__input-el {
  153. line-height: 33px !important;
  154. height: 33px !important;
  155. }
  156. }
  157. .add {
  158. width: 16px;
  159. height: 16px;
  160. cursor: pointer;
  161. }
  162. .minus {
  163. width: 16px;
  164. height: 4px;
  165. cursor: pointer;
  166. }
  167. }
  168. .chioseHidden {
  169. visibility: hidden;
  170. }
  171. .numberWrap {
  172. border-radius: 16px;
  173. overflow: hidden;
  174. background-color: #fff;
  175. box-shadow: 4px 4px 0px 0px #A2CAEE;
  176. align-items: center;
  177. display: flex;
  178. flex-direction: row;
  179. }