index.module.less 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. .container {
  2. background: linear-gradient(179deg, #005CBA 0%, #B7EBFF 100%);
  3. .containerBg {
  4. min-height: 100vh;
  5. //
  6. background-image: url('./images/icon_bg.png');
  7. background-repeat: no-repeat;
  8. background-size: 100%;
  9. padding-top: 23Px;
  10. }
  11. .titleIcon {
  12. display: block;
  13. max-width: 100%;
  14. height: 26Px;
  15. margin: 8px auto 0;
  16. }
  17. :global {
  18. .van-picker__loading {
  19. top: calc(var(--van-picker-toolbar-height) + 15px + var(--van-search-input-height)) !important;
  20. }
  21. }
  22. }
  23. .title {
  24. font-size: 30px;
  25. font-family: AlimamaShuHeiTi-Bold, AlimamaShuHeiTi;
  26. font-weight: bold;
  27. color: #021F67;
  28. line-height: 36px;
  29. padding: 12px 16px 16px;
  30. text-align: center;
  31. }
  32. .tagWrap {
  33. display: flex;
  34. justify-content: center;
  35. .tag {
  36. font-size: 16px;
  37. font-family: Alibaba-PuHuiTi-M, Alibaba-PuHuiTi;
  38. font-weight: normal;
  39. color: #FFFFFF;
  40. line-height: 22px;
  41. background: linear-gradient(90deg, #02BAFF 0%, #007AFE 100%);
  42. border-radius: 8px;
  43. margin: 0 auto;
  44. display: flex;
  45. align-items: center;
  46. padding: 4px 6px;
  47. span {
  48. font-size: 28Px;
  49. color: #C5EEFD;
  50. }
  51. }
  52. }
  53. .contentWrap {
  54. padding-top: 208px;
  55. .content {
  56. background: rgba(255, 255, 255, 0.5);
  57. border-radius: 20Px 20Px 0 0;
  58. border: 2px solid #FFFFFF;
  59. border-bottom: none;
  60. padding: 12px;
  61. padding-bottom: 50Px;
  62. }
  63. .icon {
  64. display: block;
  65. max-width: 100%;
  66. height: 26Px;
  67. margin: 16px auto 8px;
  68. }
  69. .group {
  70. border-radius: 18Px;
  71. overflow: hidden;
  72. margin-bottom: 12Px;
  73. :global {
  74. .van-cell {
  75. padding: 18px 16px;
  76. }
  77. .van-field__control {
  78. justify-content: flex-end;
  79. }
  80. .van-field__label {
  81. font-size: 16Px;
  82. color: #666666;
  83. }
  84. .van-field__error-message {
  85. text-align: right;
  86. }
  87. }
  88. }
  89. .radio {
  90. padding: 4px 10px;
  91. background: #F5F6FA;
  92. border: none;
  93. font-size: 14Px;
  94. line-height: 22px;
  95. color: #626264;
  96. font-weight: 400;
  97. border-radius: 6px;
  98. margin: 0 6px;
  99. }
  100. }
  101. .tips {
  102. font-size: 13px;
  103. font-family: PingFangSC-Regular, PingFang SC;
  104. font-weight: 400;
  105. color: #F64650;
  106. line-height: 18px;
  107. background: #FFEBEB;
  108. border-radius: 8Px;
  109. padding: 8Px;
  110. }
  111. .submit {
  112. margin-top: 18Px;
  113. background-color: transparent;
  114. height: 50Px;
  115. padding: 0;
  116. border: none;
  117. &::before {
  118. display: none;
  119. }
  120. }
  121. .submitIcon {
  122. display: block;
  123. max-width: 100%;
  124. max-height: 50Px;
  125. }
  126. .successWrap {
  127. position: relative;
  128. max-width: 76vw;
  129. display: flex;
  130. flex-direction: column;
  131. align-items: center;
  132. .p1 {
  133. position: absolute;
  134. max-width: 94vw;
  135. transform: translate(12Px, -84Px);
  136. }
  137. .p2 {
  138. max-width: 100%;
  139. position: relative;
  140. z-index: 1;
  141. }
  142. .btnWrap {
  143. position: relative;
  144. top: -2Px;
  145. display: flex;
  146. flex-direction: column;
  147. align-items: center;
  148. background-color: #fff;
  149. width: 100%;
  150. border-radius: 0 0 16Px 16Px;
  151. padding: 0 0 20Px 0;
  152. .btnTitle {
  153. font-size: 17Px;
  154. font-family: PingFangSC-Semibold, PingFang SC;
  155. font-weight: 600;
  156. color: #021F67;
  157. line-height: 24Px;
  158. padding: 15Px 0;
  159. text-align: center;
  160. }
  161. .btnDes {
  162. font-size: 15Px;
  163. font-family: PingFangSC-Regular, PingFang SC;
  164. font-weight: 400;
  165. color: #777777;
  166. line-height: 21Px;
  167. text-align: center;
  168. padding-bottom: 20Px;
  169. }
  170. .btn {
  171. width: 172Px;
  172. height: 40Px;
  173. font-size: 16Px;
  174. font-family: PingFangSC-Semibold, PingFang SC;
  175. font-weight: 600;
  176. color: #EEF8FE;
  177. line-height: 22Px;
  178. background: linear-gradient(135deg, #00B9FF 0%, #007AFF 100%);
  179. margin: 0 auto;
  180. }
  181. }
  182. }
  183. .codeWrap {
  184. :global {
  185. .van-field__error-message {
  186. text-align: left !important;
  187. }
  188. }
  189. }
  190. .sendBtn {
  191. width: 100Px;
  192. }
  193. .sendBtn:global(.van-button--disabled) {
  194. &::before {
  195. left: -5%;
  196. top: -15%;
  197. width: 110%;
  198. height: 130%;
  199. transform: none;
  200. }
  201. }