index.module.less 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. .intention-page {
  2. min-height: 100vh;
  3. background: url('./images/fill_bg_icon.png') no-repeat top center #85E2FF;
  4. background-size: contain;
  5. padding-top: 40%;
  6. overflow: hidden;
  7. position: relative;
  8. :global {
  9. .cityPopBox {
  10. .van-picker-column__item--selected {
  11. color: #333 !important;
  12. font-weight: normal;
  13. }
  14. .van-picker__loading {
  15. top: 40%;
  16. }
  17. }
  18. }
  19. }
  20. .formBox {
  21. background: #FFFFFF;
  22. border-radius: 16px;
  23. border: 4px solid rgba(79,194,230,0.22);
  24. margin: 0 14px 20px;
  25. padding: 15px 16px 0;
  26. .formItem {
  27. margin-bottom: 24px;
  28. >p {
  29. color: #333333;
  30. font-size: 15px;
  31. font-weight: 600;
  32. line-height: 23px;
  33. margin-bottom: 8px;
  34. >span {
  35. font-weight: normal;
  36. color: #777777;
  37. }
  38. }
  39. .valDot {
  40. font-size: 15px;
  41. background: #F4F4F4;
  42. border-radius: 4px;
  43. height: 37px;
  44. line-height: 37px;
  45. padding: 0 10px;
  46. position: relative;
  47. >i {
  48. position: absolute;
  49. right: 10px;
  50. top: 50%;
  51. transform: translateY(-50%);
  52. background: url('./images/toggle_icon.png') no-repeat center;
  53. background-size: contain;
  54. width: 18px;
  55. height: 10px;
  56. transition: all 0.5s;
  57. }
  58. }
  59. .valDone {
  60. display: flex;
  61. flex-direction: column;
  62. justify-content: center;
  63. background: #F4F4F4;
  64. border-radius: 4px;
  65. min-height: 37px;
  66. padding: 0 10px;
  67. position: relative;
  68. >i {
  69. position: absolute;
  70. right: 10px;
  71. top: 50%;
  72. transform: translateY(-50%);
  73. background: url('./images/toggle_icon.png') no-repeat center;
  74. background-size: contain;
  75. width: 18px;
  76. height: 10px;
  77. transition: all 0.5s;
  78. }
  79. .vdArea {
  80. font-size: 13px;
  81. color: #777777;
  82. text-overflow: ellipsis;
  83. overflow: hidden;
  84. word-break: break-all;
  85. white-space: nowrap;
  86. padding-right: 20px;
  87. }
  88. .vdSchool {
  89. font-size: 15px;
  90. color: #000000;
  91. margin-bottom: 4px;
  92. text-overflow: ellipsis;
  93. overflow: hidden;
  94. word-break: break-all;
  95. white-space: nowrap;
  96. padding-right: 20px;
  97. }
  98. }
  99. .openVal {
  100. >i {
  101. transform: translateY(-50%) rotate(180deg);
  102. }
  103. }
  104. .valDone2 {
  105. height: 58px;
  106. }
  107. .grayText {
  108. color: #BBBBBB;
  109. }
  110. .codeItem {
  111. margin-top: 12px;
  112. }
  113. .selectItem {
  114. display: flex;
  115. align-items: center;
  116. margin-top: 16px;
  117. >div {
  118. display: flex;
  119. align-items: center;
  120. margin-right: 20px;
  121. span {
  122. color: #333333;
  123. font-size: 15px;
  124. }
  125. i {
  126. width: 16px;
  127. height: 16px;
  128. background: url('./images/no_select.png') no-repeat top center;
  129. background-size: contain;
  130. margin-right: 4px;
  131. }
  132. .selectedIcon {
  133. background: url('./images/selected.png') no-repeat top center;
  134. background-size: contain;
  135. }
  136. }
  137. }
  138. }
  139. }
  140. .bottomBtn {
  141. height: 68px;
  142. width: auto;
  143. position: relative;
  144. left: 50%;
  145. transform: translateX(-50%);
  146. margin: 4px 0;
  147. }
  148. .successPop {
  149. position: fixed;
  150. left: 0;
  151. top: 0;
  152. width: 100vw;
  153. height: 100%;
  154. z-index: 8;
  155. background: rgba(0, 0, 0, 0.7);
  156. overflow: hidden;
  157. }
  158. .successBox {
  159. position: fixed;
  160. left: 50%;
  161. top: 50%;
  162. transform: translate(-50%,-50%);
  163. z-index: 9;
  164. width: 220px;
  165. height: 251px;
  166. background: url('./images/success_box_icon.png') no-repeat center;
  167. background-size: contain;
  168. display: flex;
  169. flex-direction: column;
  170. align-items: center;
  171. justify-content: center;
  172. overflow: hidden;
  173. .sTitle {
  174. margin-top: 110px;
  175. width: 74px;
  176. }
  177. .sDone {
  178. width: 190px;
  179. height: 62px;
  180. }
  181. p{
  182. margin: 8px 0 14px;
  183. font-size: 14px;
  184. color: #777;
  185. }
  186. }
  187. .codeText {
  188. color: #1CACF1;
  189. }
  190. .countDown {
  191. color: rgb(28, 172, 241, 0.6);
  192. }
  193. .columnsContent {
  194. :global {
  195. .highLight {
  196. color: #1CACF1;
  197. }
  198. }
  199. }