register.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. .form-box {
  2. width: 100%;
  3. height: auto;
  4. overflow: hidden;
  5. padding: 0 40rpx;
  6. margin-top: 96rpx;
  7. background: #fff;
  8. }
  9. .form-center{
  10. text-align :center;
  11. }
  12. .form-center text{
  13. font-size: 32rpx;
  14. font-weight: 600;
  15. }
  16. .userinfo-avatar {
  17. width: 128rpx;
  18. height: 128rpx;
  19. margin: 20rpx;
  20. border-radius: 50%;
  21. }
  22. .form-item {
  23. position: relative;
  24. background: #fff;
  25. height: 96rpx;
  26. border-bottom: 1px solid #d9d9d9;
  27. }
  28. .form-default {
  29. height: 96rpx;
  30. background: #fff;
  31. padding-top: 38rpx;
  32. font-size: 28rpx;
  33. }
  34. .form-item .username, .form-item .password, .form-item .mobile, .area, .form-item .address {
  35. position: absolute;
  36. top: 26rpx;
  37. left: 0;
  38. display: block;
  39. width: 100%;
  40. height: 44rpx;
  41. background: #fff;
  42. color: #333;
  43. font-size: 30rpx;
  44. }
  45. .form-item-code {
  46. margin-top: 32rpx;
  47. height: auto;
  48. overflow: hidden;
  49. width: 100%;
  50. float: left;
  51. width: 350rpx;
  52. }
  53. .form-item-code .form-item {
  54. float: left;
  55. width: 350rpx;
  56. }
  57. .form-item-getPhone {
  58. margin-top: 18rpx;
  59. height: auto;
  60. float: right;
  61. /*border: 1px solid #242a48;*/
  62. border-radius: 6rpx;
  63. color: #242a48;
  64. /*background: green;*/
  65. font-size: 30rpx;
  66. }
  67. .form-item .clear {
  68. position: absolute;
  69. top: 32rpx;
  70. right: 18rpx;
  71. z-index: 2;
  72. display: block;
  73. background: #fff;
  74. }
  75. .register-btn {
  76. margin: 40rpx 0 20rpx 0;
  77. height: 96rpx;
  78. line-height: 96rpx;
  79. color: #fff;
  80. font-size: 30rpx;
  81. background-color: #242a48;
  82. position: absolute;
  83. width: 90%;
  84. height: 90rpx;
  85. line-height: 98rpx;
  86. position: absolute;
  87. bottom: 25rpx;
  88. left: 0;
  89. border-radius: 0;
  90. padding: 0;
  91. margin: 0;
  92. margin-left: 5%;
  93. border-top-left-radius: 50rpx;
  94. border-bottom-left-radius: 50rpx;
  95. border-top-right-radius: 50rpx;
  96. border-bottom-right-radius: 50rpx;
  97. letter-spacing: 3rpx;
  98. }
  99. .region-select {
  100. width: 100%;
  101. height: 600rpx;
  102. background: #fff;
  103. position: fixed;
  104. z-index: 10;
  105. left: 0;
  106. bottom: 0;
  107. }
  108. .region-select .hd {
  109. height: 108rpx;
  110. width: 100%;
  111. border-bottom: 1px solid #f4f4f4;
  112. padding: 46rpx 30rpx 0 30rpx;
  113. }
  114. .region-select .region-selected {
  115. float: left;
  116. height: 60rpx;
  117. display: flex;
  118. }
  119. .region-select .region-selected .item {
  120. max-width: 140rpx;
  121. margin-right: 30rpx;
  122. text-align: left;
  123. line-height: 60rpx;
  124. height: 100%;
  125. color: #333;
  126. font-size: 28rpx;
  127. overflow: hidden;
  128. text-overflow: ellipsis;
  129. white-space: nowrap;
  130. }
  131. .region-select .region-selected .item.disabled {
  132. color: #999;
  133. }
  134. .region-select .region-selected .item.selected {
  135. color: #b4282d;
  136. }
  137. .region-select .done {
  138. float: right;
  139. height: 60rpx;
  140. width: 60rpx;
  141. border: none;
  142. background: #fff;
  143. line-height: 60rpx;
  144. text-align: center;
  145. color: #333;
  146. font-size: 28rpx;
  147. }
  148. .region-select .done.disabled {
  149. color: #999;
  150. }
  151. .region-select .bd {
  152. height: 492rpx;
  153. width: 100%;
  154. padding: 0 30rpx;
  155. }
  156. .region-select .region-list {
  157. height: 492rpx;
  158. }
  159. .region-select .region-list .item {
  160. width: 100%;
  161. height: 104rpx;
  162. line-height: 104rpx;
  163. text-align: left;
  164. color: #333;
  165. font-size: 28rpx;
  166. }
  167. .region-select .region-list .item.selected {
  168. color: #b4282d;
  169. }
  170. .bg-mask {
  171. height: 100%;
  172. width: 100%;
  173. background: rgba(0, 0, 0, 0.4);
  174. position: fixed;
  175. top: 0;
  176. left: 0;
  177. z-index: 8;
  178. }