schoolRegister.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. html,
  2. body,
  3. p,
  4. div,
  5. span {
  6. padding: 0;
  7. margin: 0;
  8. border: 0;
  9. }
  10. .m-toast {
  11. position: fixed;
  12. top: 50%;
  13. left: 50%;
  14. display: -webkit-box;
  15. display: -webkit-flex;
  16. display: flex;
  17. -webkit-box-orient: vertical;
  18. -webkit-box-direction: normal;
  19. -webkit-flex-direction: column;
  20. flex-direction: column;
  21. -webkit-box-align: center;
  22. -webkit-align-items: center;
  23. align-items: center;
  24. -webkit-box-pack: center;
  25. -webkit-justify-content: center;
  26. justify-content: center;
  27. box-sizing: content-box;
  28. width: 88px;
  29. max-width: 70%;
  30. min-height: 88px;
  31. padding: 16px;
  32. color: #fff;
  33. font-size: 14px;
  34. line-height: 20px;
  35. white-space: pre-wrap;
  36. text-align: center;
  37. word-wrap: break-word;
  38. background-color: rgba(50, 50, 51, 0.88);
  39. border-radius: 4px;
  40. -webkit-transform: translate3d(-50%, -50%, 0);
  41. transform: translate3d(-50%, -50%, 0);
  42. z-index: 2002
  43. }
  44. .m-loading {
  45. position: relative;
  46. color: #fff;
  47. font-size: 0;
  48. vertical-align: middle;
  49. padding: 4px
  50. }
  51. .m-loading__spinner {
  52. position: relative;
  53. display: inline-block;
  54. width: 30px;
  55. max-width: 100%;
  56. height: 30px;
  57. max-height: 100%;
  58. vertical-align: middle;
  59. -webkit-animation: m-rotate .8s linear infinite;
  60. animation: m-rotate .8s linear infinite
  61. }
  62. .m-loading__spinner--circular {
  63. -webkit-animation-duration: 2s;
  64. animation-duration: 2s
  65. }
  66. .m-loading__circular {
  67. display: block;
  68. width: 100%;
  69. height: 100%
  70. }
  71. .m-loading__circular circle {
  72. -webkit-animation: m-circular 1.5s ease-in-out infinite;
  73. animation: m-circular 1.5s ease-in-out infinite;
  74. stroke: currentColor;
  75. stroke-width: 3;
  76. stroke-linecap: round
  77. }
  78. .m-loading__text {
  79. display: inline-block;
  80. margin-left: 8px;
  81. color: #969799;
  82. font-size: 14px;
  83. vertical-align: middle
  84. }
  85. .m-loading--vertical {
  86. display: -webkit-box;
  87. display: -webkit-flex;
  88. display: flex;
  89. -webkit-box-orient: vertical;
  90. -webkit-box-direction: normal;
  91. -webkit-flex-direction: column;
  92. flex-direction: column;
  93. -webkit-box-align: center;
  94. -webkit-align-items: center;
  95. align-items: center
  96. }
  97. .m-loading--vertical .m-loading__text {
  98. margin: 8px 0 0
  99. }
  100. @-webkit-keyframes m-circular {
  101. 0% {
  102. stroke-dasharray: 1, 200;
  103. stroke-dashoffset: 0
  104. }
  105. 50% {
  106. stroke-dasharray: 90, 150;
  107. stroke-dashoffset: -40
  108. }
  109. 100% {
  110. stroke-dasharray: 90, 150;
  111. stroke-dashoffset: -120
  112. }
  113. }
  114. @keyframes m-circular {
  115. 0% {
  116. stroke-dasharray: 1, 200;
  117. stroke-dashoffset: 0
  118. }
  119. 50% {
  120. stroke-dasharray: 90, 150;
  121. stroke-dashoffset: -40
  122. }
  123. 100% {
  124. stroke-dasharray: 90, 150;
  125. stroke-dashoffset: -120
  126. }
  127. }
  128. .m-toast__text {
  129. margin-top: 8px
  130. }
  131. .van-field--error .van-field__control,
  132. .van-field--error .van-field__control::placeholder {
  133. color: #c8c9cc;
  134. -webkit-text-fill-color: currentColor;
  135. }
  136. #app {
  137. background: url('../images/initiation/banner2.png') no-repeat top center #C6DDF9;
  138. background-size: contain;
  139. max-width: 750px;
  140. margin: 0 auto;
  141. min-height: 100vh;
  142. overflow: hidden;
  143. position: relative;
  144. }
  145. .banner,
  146. .banner img {
  147. width: 100%;
  148. font-size: 0;
  149. }
  150. .van-cell {
  151. flex-direction: column;
  152. font-size: 16px;
  153. padding: 14px 13px;
  154. }
  155. .van-field__label {
  156. width: 100%;
  157. margin-right: 0;
  158. color: #333;
  159. font-size: 16px;
  160. font-weight: 500;
  161. }
  162. .van-cell--required::before {
  163. left: 15px;
  164. }
  165. .van-field__body {
  166. margin-top: 10px;
  167. }
  168. .btn-submit {
  169. width: 90%;
  170. margin: 20px auto;
  171. }
  172. .system h2 {
  173. font-size: 18px;
  174. font-weight: 500;
  175. margin: 10px 24px;
  176. color: #444444;
  177. }
  178. .system .van-cell--required::before {
  179. left: 25px;
  180. }
  181. .cell-group {
  182. margin: 0 13px 14px;
  183. border-radius: 10px;
  184. padding-bottom: 20px;
  185. }
  186. .van-form {
  187. margin-top: 186px;
  188. background: #C6DDF9;
  189. overflow: hidden;
  190. }
  191. .top-tips {
  192. margin: 30px 13px 20px;
  193. padding: 9px 7px;
  194. background: #FFFFFF;
  195. border-radius: 10px;
  196. border: 5px solid #BE93FF;
  197. font-size: 14px;
  198. font-weight: 500;
  199. color: #724DA9;
  200. line-height: 20px;
  201. }
  202. .title {
  203. position: absolute;
  204. top: 0;
  205. left: 0;
  206. padding: 36px 24px 0;
  207. width: 57%;
  208. height: 154px;
  209. font-size: 28px;
  210. font-weight: 600;
  211. color: #FFFFFF;
  212. line-height: 34px;
  213. letter-spacing: 1px;
  214. text-shadow: 0px 2px 3px rgba(0, 75, 255, 0.5);
  215. }
  216. .tips {
  217. padding-top: 15px;
  218. font-size: 18px;
  219. font-weight: 400;
  220. color: #FFFFFF;
  221. line-height: 18px;
  222. text-shadow: 0px 2px 3px rgba(0, 75, 255, 0.5);
  223. }
  224. .radioSection {
  225. position: relative;
  226. min-width: 32px;
  227. justify-content: center;
  228. }
  229. .radioItem {
  230. position: absolute;
  231. top: 0;
  232. left: 0;
  233. right: 0;
  234. bottom: 0;
  235. opacity: 0;
  236. }
  237. .radioSection+.radioSection {
  238. margin-left: 12px;
  239. }
  240. .van-picker__confirm {
  241. color: #64A9FF !important;
  242. }
  243. /* 弹窗 */
  244. .submit-container {
  245. /* padding: 44px 26px 26px; */
  246. position: relative;
  247. text-align: center;
  248. margin: 0 auto;
  249. background: url('../images/initiation/s-popup-banner.png') no-repeat top center;
  250. background-size: cover;
  251. /* width: 8rem;
  252. height: 9.38rem; */
  253. width: 7.5rem;
  254. height: 8.7rem;
  255. }
  256. .submit-title {
  257. padding-top: 5.2rem;
  258. padding-bottom: 10px;
  259. font-size: 18px;
  260. font-weight: 500;
  261. color: #000000;
  262. }
  263. .submit-tips {
  264. font-size: 15px;
  265. color: #777777;
  266. line-height: 20px;
  267. padding-bottom: 20px;
  268. }
  269. .submit-btn {
  270. background: url('../images/initiation/s-popup-btn.png') no-repeat center center;
  271. background-size: contain;
  272. width: 3.547rem;
  273. height: 1rem;
  274. margin: 0 auto;
  275. }
  276. .submit-container .van-button {
  277. font-size: 18px;
  278. font-weight: 500;
  279. }
  280. .cell_title {
  281. margin: 0 13px 8px;
  282. display: inline-block;
  283. padding: 2px 6px 3px;
  284. background: #64A9FF;
  285. border-radius: 6px;
  286. font-size: 15px;
  287. font-weight: 600;
  288. color: #FFFFFF;
  289. }