index.module.less 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. .settting{
  2. .head{
  3. background: url("../image/headImg.png") no-repeat;
  4. background-size: 100% 100%;
  5. width: 372px;
  6. height: 57px;
  7. position: relative;
  8. .headTit{
  9. position: absolute;
  10. bottom: 9px;
  11. left: 50%;
  12. transform: translateX(-50%);
  13. width: 38px;
  14. height: 18px;
  15. }
  16. .closeImg{
  17. position: absolute;
  18. top: 0;
  19. right: -38px;
  20. width: 32px;
  21. height: 32px;
  22. cursor: pointer;
  23. }
  24. }
  25. .content{
  26. width: 354px;
  27. height: 284px;
  28. background: #B0D8FF;
  29. box-shadow: 0px 4px 0px 0px #7AAEE0;
  30. border-radius: 0px 0px 24px 24px;
  31. margin: 0 auto;
  32. padding: 10px;
  33. .conBox{
  34. width: 100%;
  35. height: 100%;
  36. background: #EAF2FB;
  37. border-radius: 12px;
  38. overflow-y: auto;
  39. padding: 0 16px;
  40. &::-webkit-scrollbar {
  41. width: 0;
  42. display: none;
  43. }
  44. .cellBox{
  45. padding: 14px 0;
  46. display: flex;
  47. justify-content: space-between;
  48. align-items: center;
  49. border-bottom: 1px solid #D5E0ED;
  50. :global{
  51. .van-switch{
  52. width: 42px;
  53. height: 21px;
  54. background-color: transparent!important;
  55. background-image: url("../image/guan.png");
  56. background-repeat: no-repeat;
  57. background-size: 100% 100%;
  58. border-radius: 0;
  59. &.van-switch--on{
  60. background-image: url("../image//kai.png");
  61. }
  62. .van-switch__node{
  63. display: none;
  64. }
  65. }
  66. }
  67. .tit{
  68. font-weight: 600;
  69. font-size: 15px;
  70. color: #000000;
  71. line-height: 21px;
  72. }
  73. .radioBox{
  74. display: flex;
  75. > div{
  76. width: 66px;
  77. height: 28px;
  78. font-weight: 600;
  79. font-size: 14px;
  80. color: #757C87;
  81. text-align: center;
  82. line-height: 26px;
  83. background: url("../image/radio.png") no-repeat;
  84. background-size: 100% 100%;
  85. margin-right: 10px;
  86. cursor: pointer;
  87. &:last-child{
  88. margin-right: 0;
  89. }
  90. &.active{
  91. background: url("../image/radioActive.png") no-repeat;
  92. background-size: 100% 100%;
  93. color: #ffffff;
  94. }
  95. }
  96. }
  97. .frequency{
  98. display: flex;
  99. align-items: center;
  100. .frequencyNum{
  101. margin: 0 10px;
  102. width: 63px;
  103. height: 29px;
  104. background: #FFFFFF;
  105. border-radius: 6px;
  106. text-align: center;
  107. line-height: 29px;
  108. font-weight: 600;
  109. font-size: 15px;
  110. color: #1CACF1;
  111. }
  112. .btn{
  113. width: 24px;
  114. height: 24px;
  115. flex-shrink: 0;
  116. cursor: pointer;
  117. }
  118. }
  119. .reactionTimeBox{
  120. display: flex;
  121. align-items: center;
  122. .reactionTime{
  123. width: 63px;
  124. height: 29px;
  125. background: #FFFFFF;
  126. border-radius: 6px;
  127. padding: 0;
  128. line-height: 29px;
  129. :global{
  130. .van-field__control{
  131. font-weight: 600;
  132. font-size: 15px;
  133. color: #1CACF1;
  134. }
  135. }
  136. }
  137. .timeName{
  138. margin-left: 8px;
  139. font-weight: 600;
  140. font-size: 15px;
  141. color: #000000;
  142. }
  143. }
  144. }
  145. .cellBtnBox{
  146. display: flex;
  147. justify-content: center;
  148. align-items: center;
  149. padding: 14px 0;
  150. >img{
  151. width: 118px;
  152. height: 39px;
  153. cursor: pointer;
  154. &:first-child{
  155. margin-right: 20px;
  156. }
  157. }
  158. }
  159. }
  160. }
  161. }