register.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. page {
  2. background-color: #fff;
  3. }
  4. .wrap {
  5. width: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. padding: 60rpx 50rpx 0 74rpx;
  9. box-sizing: border-box;
  10. }
  11. .title-row {
  12. display: flex;
  13. flex-direction: column;
  14. margin-bottom: 110rpx;
  15. }
  16. .title-row>view:first-child {
  17. font-size: 56rpx;
  18. color: #333333;
  19. font-weight: bold;
  20. position: relative;
  21. }
  22. .title-row>view:first-child::after {
  23. content: "";
  24. width: 104rpx;
  25. height: 8rpx;
  26. position: absolute;
  27. bottom: 3rpx;
  28. left: 0;
  29. background-color: #F2501A;
  30. }
  31. .title-row>view:last-child {
  32. color: #A7A7A7;
  33. font-size: 32rpx;
  34. }
  35. .form-box {
  36. width: 100%;
  37. display: flex;
  38. flex-direction: column;
  39. }
  40. .form-row {
  41. width: 100%;
  42. height: 80rpx;
  43. display: flex;
  44. align-items: center;
  45. border-bottom: 1px solid #F0F1F2;
  46. box-sizing: border-box;
  47. margin-bottom: 20rpx;
  48. }
  49. .num-row {
  50. color: #1A191C;
  51. font-size: 40rpx;
  52. font-weight: bold;
  53. display: flex;
  54. align-items: center;
  55. margin-right: 44rpx;
  56. }
  57. .sanjiao {
  58. width: 18rpx;
  59. margin-left: 8rpx;
  60. }
  61. .input {
  62. flex: 1;
  63. font-size: 32rpx;
  64. color: #333333;
  65. }
  66. .placeholder {
  67. color: #A7A7A7;
  68. }
  69. .get-code {
  70. width: 166rpx;
  71. height: 60rpx;
  72. line-height: 60rpx;
  73. display: flex;
  74. justify-content: center;
  75. align-items: center;
  76. background-color: #F2501A;
  77. border-radius: 100rpx;
  78. color: #FFFFFF;
  79. font-size: 26rpx;
  80. }
  81. .code {
  82. width: 134rpx;
  83. }
  84. .msg {
  85. width: 100%;
  86. color: #333333;
  87. font-size: 24rpx;
  88. padding: 0 0 20rpx;
  89. }
  90. .open-btn {
  91. background-color: initial;
  92. border-radius: initial;
  93. }
  94. .eye-icon {
  95. height: 30rpx;
  96. }
  97. .btn-box {
  98. width: 100%;
  99. display: flex;
  100. justify-content: center;
  101. align-items: center;
  102. padding: 100rpx 0 28rpx;
  103. }
  104. .btn-box button {
  105. width: 100%;
  106. height: 86rpx;
  107. line-height: 86rpx;
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. background-color: #E0E0E0;
  112. color: #777777;
  113. font-size: 30rpx;
  114. border-radius: 100rpx;
  115. }
  116. .login-box {
  117. width: 100%;
  118. display: flex;
  119. align-items: center;
  120. justify-content: center;
  121. margin-bottom: 100rpx;
  122. }
  123. .login-box view {
  124. position: relative;
  125. padding: 0 68rpx;
  126. color: #A7A7A7;
  127. font-size: 28rpx;
  128. }
  129. .login-box view::after {
  130. content: "";
  131. width: 1px;
  132. height: 30rpx;
  133. background-color: #A7A7A7;
  134. position: absolute;
  135. right: 0;
  136. top: 50%;
  137. transform: translate(0, -50%);
  138. }
  139. .login-box view:last-child::after {
  140. background-color: initial;
  141. }
  142. .type-box {
  143. width: 100%;
  144. display: flex;
  145. justify-content: center;
  146. align-items: center;
  147. margin-bottom: 80rpx;
  148. }
  149. .type-box button {
  150. border-radius: initial;
  151. background-color: initial;
  152. margin-right: 160rpx;
  153. }
  154. .type-box button:last-child {
  155. margin-right: 0;
  156. }
  157. .type-box button image {
  158. width: 66rpx;
  159. height: 66rpx;
  160. }
  161. .login-bottom-row {
  162. width: 100%;
  163. display: flex;
  164. align-items: flex-start;
  165. color: #A7A7A7;
  166. font-size: 24rpx;
  167. margin-bottom: 30rpx;
  168. }
  169. .select-btn {
  170. display: flex;
  171. align-items: center;
  172. border-radius: initial;
  173. background-color: initial;
  174. margin-right: 10rpx;
  175. margin-top: 7rpx;
  176. }
  177. .select-btn image {
  178. width: 22rpx;
  179. height: 22rpx;
  180. }