index.module.less 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. .student-register {
  2. min-height: 100vh;
  3. // background: #FFF4E2;
  4. background: linear-gradient(180deg, #C9EDFD 0%, #CCF0FF 100%);
  5. overflow: hidden;
  6. position: relative;
  7. --k-font-primary: #007AFE;
  8. .studentRegisterContainer {
  9. padding-top: 155px;
  10. background: url('./images/banner-bg.png') no-repeat top center;
  11. background-size: contain;
  12. }
  13. :global {
  14. .van-picker__loading {
  15. top: calc(var(--van-picker-toolbar-height) + 20px + var(--van-search-input-height)) !important;
  16. }
  17. }
  18. }
  19. .paymentContainer {
  20. font-size: 14px;
  21. padding: 12px 25px calc(12px + env(safe-area-inset-bottom)) 25px;
  22. background: #FFFFFF;
  23. box-shadow: 0px -1px 0px 0px #F2F2F2, inset 0px 1px 3px 0px #FFFFFF;
  24. border-radius: 18px 18px 0px 0px;
  25. :global {
  26. .van-button {
  27. height: 40px;
  28. line-height: 40px;
  29. background: linear-gradient(135deg, #31C7FF 0%, #007AFE 100%);
  30. font-size: 16px;
  31. color: #fff;
  32. font-weight: 500;
  33. border: 0;
  34. }
  35. }
  36. }
  37. .studentSection {
  38. margin: 0 14px 12px;
  39. padding: 0;
  40. background: linear-gradient(180deg, rgba(219, 246, 253) 0%, rgba(255, 255, 255) 3%);
  41. border-radius: 16px;
  42. border: 2px solid #FFFFFF;
  43. }
  44. .registerForm {
  45. border-radius: 18px;
  46. // margin: 0 12px;
  47. overflow: hidden;
  48. .selectStudentGroup {
  49. margin-left: 10px;
  50. font-size: 14px;
  51. color: #1189FF;
  52. display: flex;
  53. align-items: center;
  54. justify-content: center;
  55. &.selectStudentGroupChecked {
  56. span::after {
  57. transform: rotate(180deg);
  58. }
  59. }
  60. span {
  61. display: flex;
  62. align-items: center;
  63. justify-content: center;
  64. &::after {
  65. display: inline-block;
  66. content: '';
  67. width: 9px;
  68. height: 5px;
  69. margin-left: 4px;
  70. background: url('../../student-register/images/new/icon-n-6.png') no-repeat center;
  71. background-size: contain;
  72. }
  73. }
  74. }
  75. :global {
  76. .van-cell {
  77. background-color: transparent;
  78. }
  79. }
  80. :global {
  81. .van-cell {
  82. padding: 14px 18px;
  83. }
  84. .van-field__label {
  85. font-size: 16px;
  86. color: #666666;
  87. line-height: 22px;
  88. display: flex;
  89. align-items: center;
  90. }
  91. .van-field__control {
  92. font-size: 16px;
  93. color: #131415;
  94. }
  95. }
  96. .codeText {
  97. color: #1189FF;
  98. font-size: 14px;
  99. // &.codeTextDisabled {
  100. // color: #ccc;
  101. // }
  102. }
  103. }
  104. .radioSection {
  105. position: relative;
  106. min-width: 32px;
  107. justify-content: center;
  108. // padding-left: 19px;
  109. // padding-right: 19px;
  110. padding: 5px 19px;
  111. font-size: 14px;
  112. font-weight: 500;
  113. border-radius: 6px;
  114. }
  115. .radioItem {
  116. position: absolute;
  117. top: 0;
  118. left: 0;
  119. right: 0;
  120. bottom: 0;
  121. opacity: 0;
  122. }
  123. .radioSection+.radioSection {
  124. margin-left: 12px;
  125. }
  126. .selectStudentPopup {
  127. :global {
  128. .van-popup__close-icon {
  129. color: #767C7F;
  130. }
  131. }
  132. }
  133. .studentInfo {
  134. :global {
  135. .van-cell {
  136. padding: 10px 0;
  137. &:first-child {
  138. padding-top: 0;
  139. }
  140. &:last-child {
  141. padding-bottom: 0;
  142. }
  143. }
  144. .van-cell__title {
  145. font-size: 14px;
  146. color: #666666;
  147. line-height: 20px;
  148. span {
  149. color: #666666 !important;
  150. }
  151. }
  152. .van-cell__value {
  153. font-size: 14px;
  154. color: #131415;
  155. flex: 1 auto;
  156. line-height: 20px;
  157. span {
  158. color: #131415 !important;
  159. }
  160. }
  161. }
  162. }
  163. .studentBtnGroup {
  164. display: flex;
  165. align-items: center;
  166. padding-top: 20px;
  167. padding-bottom: 5px;
  168. :global {
  169. .van-button {
  170. flex: 1;
  171. &+.van-button {
  172. margin-left: 15px;
  173. }
  174. }
  175. }
  176. }