message-login.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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. display: flex;
  87. justify-content: space-between;
  88. align-items: center;
  89. color: #333333;
  90. font-size: 28rpx;
  91. padding: 0 0 20rpx;
  92. }
  93. .open-btn {
  94. background-color: initial;
  95. border-radius: initial;
  96. }
  97. .eye-icon {
  98. height: 30rpx;
  99. }
  100. .btn-box {
  101. width: 100%;
  102. display: flex;
  103. justify-content: center;
  104. align-items: center;
  105. padding: 100rpx 0 28rpx;
  106. }
  107. .btn-box button {
  108. width: 100%;
  109. height: 86rpx;
  110. line-height: 86rpx;
  111. display: flex;
  112. align-items: center;
  113. justify-content: center;
  114. background-color: #E0E0E0;
  115. color: #777777;
  116. font-size: 30rpx;
  117. border-radius: 100rpx;
  118. }
  119. .login-box {
  120. width: 100%;
  121. display: flex;
  122. align-items: center;
  123. justify-content: center;
  124. margin-bottom: 100rpx;
  125. }
  126. .login-box view {
  127. position: relative;
  128. padding: 0 68rpx;
  129. color: #A7A7A7;
  130. font-size: 28rpx;
  131. }
  132. .login-box view::after {
  133. content: "";
  134. width: 1px;
  135. height: 30rpx;
  136. background-color: #A7A7A7;
  137. position: absolute;
  138. right: 0;
  139. top: 50%;
  140. transform: translate(0, -50%);
  141. }
  142. .login-box view:last-child::after {
  143. background-color: initial;
  144. }
  145. .type-box {
  146. width: 100%;
  147. display: flex;
  148. justify-content: center;
  149. align-items: center;
  150. margin-bottom: 80rpx;
  151. }
  152. .type-box button {
  153. border-radius: initial;
  154. background-color: initial;
  155. margin-right: 160rpx;
  156. }
  157. .type-box button:last-child {
  158. margin-right: 0;
  159. }
  160. .type-box button image {
  161. width: 66rpx;
  162. height: 66rpx;
  163. }
  164. .login-bottom-row {
  165. width: 100%;
  166. display: flex;
  167. align-items: flex-start;
  168. color: #A7A7A7;
  169. font-size: 24rpx;
  170. margin-bottom: 30rpx;
  171. }
  172. .select-btn {
  173. display: flex;
  174. align-items: center;
  175. border-radius: initial;
  176. background-color: initial;
  177. margin-right: 10rpx;
  178. margin-top: 10rpx;
  179. }
  180. .select-btn image {
  181. width: 22rpx;
  182. height: 22rpx;
  183. }