login.wxss 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. .container {
  2. height: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: space-between;
  7. padding: 100rpx 20rpx;
  8. box-sizing: border-box;
  9. }
  10. .form-box {
  11. width: 100%;
  12. height: auto;
  13. overflow: hidden;
  14. padding: 0 40rpx;
  15. background: #fff;
  16. }
  17. .form-center{
  18. text-align :center;
  19. margin-bottom: 30rpx;
  20. }
  21. .form-center text{
  22. font-size: 36rpx;
  23. font-weight: 600;
  24. }
  25. .userinfo-avatar {
  26. width: 268rpx;
  27. height: 268rpx;
  28. margin: 20rpx;
  29. /* border-radius: 50%; */
  30. }
  31. .form-box {
  32. width: 100%;
  33. height: auto;
  34. overflow: hidden;
  35. padding: 0 40rpx;
  36. margin-top: 36rpx;
  37. background: #fff;
  38. }
  39. .form-center{
  40. text-align :center;
  41. }
  42. .form-center text{
  43. font-weight: 600;
  44. font-size: 42rpx;
  45. }
  46. .form-item {
  47. position: relative;
  48. background: #fff;
  49. height: 96rpx;
  50. border-bottom: 1px solid #d9d9d9;
  51. }
  52. .label{
  53. /* float: left;
  54. width: 30%; */
  55. margin-top: 30rpx;
  56. color: #333;
  57. text-align: right;
  58. margin-right: 10rpx;
  59. font-size: 32rpx;
  60. text-align: center;
  61. }
  62. .content{
  63. /* float: left;
  64. margin-top: 30rpx; */
  65. }
  66. .form-default {
  67. height: 96rpx;
  68. background: #fff;
  69. padding-top: 38rpx;
  70. font-size: 28rpx;
  71. }
  72. .form-item .username, .form-item .password, .form-item .mobile, .area, .form-item .address {
  73. /* position: absolute; */
  74. /* top: 26rpx;
  75. left: 0; */
  76. display: block;
  77. width: 100%;
  78. height: 44rpx;
  79. background: #fff;
  80. /* color: #333; */
  81. font-size: 32rpx;
  82. }
  83. .form-item-code {
  84. margin-top: 32rpx;
  85. height: auto;
  86. overflow: hidden;
  87. width: 100%;
  88. float: left;
  89. width: 350rpx;
  90. }
  91. .form-item-code .form-item {
  92. float: left;
  93. width: 350rpx;
  94. }
  95. .form-item-getPhone {
  96. margin-top: -10rpx;
  97. height: auto;
  98. float: right;
  99. /*border: 1px solid #242a48;*/
  100. border-radius: 6rpx;
  101. color: #242a48;
  102. /*background: green;*/
  103. font-size: 30rpx;
  104. }
  105. .form-item .clear {
  106. position: absolute;
  107. top: 32rpx;
  108. right: 18rpx;
  109. z-index: 2;
  110. display: block;
  111. background: #fff;
  112. }
  113. .register-btn {
  114. margin: 40rpx 0 20rpx 0;
  115. height: 96rpx;
  116. line-height: 96rpx;
  117. width: 260rpx;
  118. color: #fff;
  119. font-size: 30rpx;
  120. background-color: #09AFFF;
  121. margin-top: 50rpx;
  122. margin-left: 5%;
  123. border-radius: 10rpx;
  124. letter-spacing: 3rpx;
  125. }
  126. .region-select {
  127. width: 100%;
  128. height: 600rpx;
  129. background: #fff;
  130. position: fixed;
  131. z-index: 10;
  132. left: 0;
  133. bottom: 0;
  134. }
  135. .region-select .hd {
  136. height: 108rpx;
  137. width: 100%;
  138. border-bottom: 1px solid #f4f4f4;
  139. padding: 46rpx 30rpx 0 30rpx;
  140. }
  141. .region-select .region-selected {
  142. float: left;
  143. height: 60rpx;
  144. display: flex;
  145. }
  146. .region-select .region-selected .item {
  147. max-width: 140rpx;
  148. margin-right: 30rpx;
  149. text-align: left;
  150. line-height: 60rpx;
  151. height: 100%;
  152. color: #333;
  153. font-size: 28rpx;
  154. overflow: hidden;
  155. text-overflow: ellipsis;
  156. white-space: nowrap;
  157. }
  158. .region-select .region-selected .item.disabled {
  159. color: #999;
  160. }
  161. .region-select .region-selected .item.selected {
  162. color: #b4282d;
  163. }
  164. .region-select .done {
  165. float: right;
  166. height: 60rpx;
  167. width: 60rpx;
  168. border: none;
  169. background: #fff;
  170. line-height: 60rpx;
  171. text-align: center;
  172. color: #333;
  173. font-size: 28rpx;
  174. }
  175. .region-select .done.disabled {
  176. color: #999;
  177. }
  178. .region-select .bd {
  179. height: 492rpx;
  180. width: 100%;
  181. padding: 0 30rpx;
  182. }
  183. .region-select .region-list {
  184. height: 492rpx;
  185. }
  186. .region-select .region-list .item {
  187. width: 100%;
  188. height: 104rpx;
  189. line-height: 104rpx;
  190. text-align: left;
  191. color: #333;
  192. font-size: 28rpx;
  193. }
  194. .region-select .region-list .item.selected {
  195. color: #b4282d;
  196. }
  197. .bg-mask {
  198. height: 100%;
  199. width: 100%;
  200. background: rgba(0, 0, 0, 0.4);
  201. position: fixed;
  202. top: 0;
  203. left: 0;
  204. z-index: 8;
  205. }
  206. .container {
  207. height: 100%;
  208. display: flex;
  209. flex-direction: column;
  210. align-items: center;
  211. justify-content: space-between;
  212. padding: 80rpx 20rpx;
  213. box-sizing: border-box;
  214. }
  215. .form-box {
  216. width: 100%;
  217. height: auto;
  218. overflow: hidden;
  219. padding: 0 40rpx;
  220. background: #fff;
  221. }
  222. .form-center{
  223. text-align :center;
  224. margin-bottom: 30rpx;
  225. }
  226. .form-center text{
  227. font-size: 36rpx;
  228. font-weight: 600;
  229. }
  230. .userinfo-avatar {
  231. width: 268rpx;
  232. height: 268rpx;
  233. margin: 20rpx;
  234. /* border-radius: 50%; */
  235. }
  236. .form-box {
  237. width: 100%;
  238. height: auto;
  239. overflow: hidden;
  240. padding: 0 40rpx;
  241. margin-top: 36rpx;
  242. background: #fff;
  243. }
  244. .form-center{
  245. text-align :center;
  246. }
  247. .form-center text{
  248. font-weight: 600;
  249. font-size: 42rpx;
  250. }
  251. .form-item {
  252. /* position: relative; */
  253. display:flex;
  254. background: #fff;
  255. height: 96rpx;
  256. border-bottom: 1px solid #d9d9d9;
  257. }
  258. .label{
  259. /* float: left;
  260. width: 30%; */
  261. margin-top: 30rpx;
  262. color: #333;
  263. text-align: right;
  264. margin-right: 10rpx;
  265. font-size: 32rpx;
  266. text-align: center;
  267. width:200rpx;
  268. }
  269. .content{
  270. /* float: left; */
  271. margin-top: 30rpx;
  272. flex:1;
  273. }
  274. .form-default {
  275. height: 96rpx;
  276. background: #fff;
  277. padding-top: 38rpx;
  278. font-size: 28rpx;
  279. }
  280. .form-item .username, .form-item .password, .form-item .mobile, .area, .form-item .address {
  281. /* position: absolute; */
  282. /* top: 26rpx;
  283. left: 0; */
  284. display: block;
  285. width: 100%;
  286. height: 44rpx;
  287. background: #fff;
  288. /* color: #333; */
  289. font-size: 32rpx;
  290. }
  291. .form-item-code {
  292. margin-top: 32rpx;
  293. height: auto;
  294. overflow: hidden;
  295. width: 100%;
  296. float: left;
  297. width: 350rpx;
  298. }
  299. .form-item-code .form-item {
  300. float: left;
  301. width: 350rpx;
  302. }
  303. .form-item-getPhone {
  304. margin-top: -10rpx;
  305. height: auto;
  306. float: right;
  307. /*border: 1px solid #242a48;*/
  308. border-radius: 6rpx;
  309. color: #242a48;
  310. /*background: green;*/
  311. font-size: 30rpx;
  312. }
  313. .form-item .clear {
  314. position: absolute;
  315. top: 32rpx;
  316. right: 18rpx;
  317. z-index: 2;
  318. display: block;
  319. background: #fff;
  320. }
  321. .register-btn {
  322. margin: 40rpx 0 20rpx 0;
  323. height: 96rpx;
  324. line-height: 96rpx;
  325. width: 260rpx;
  326. color: #fff;
  327. font-size: 30rpx;
  328. background-color: #09AFFF;
  329. margin-top: 50rpx;
  330. margin-left: 5%;
  331. border-radius: 10rpx;
  332. letter-spacing: 3rpx;
  333. }
  334. .region-select {
  335. width: 100%;
  336. height: 600rpx;
  337. background: #fff;
  338. position: fixed;
  339. z-index: 10;
  340. left: 0;
  341. bottom: 0;
  342. }
  343. .region-select .hd {
  344. height: 108rpx;
  345. width: 100%;
  346. border-bottom: 1px solid #f4f4f4;
  347. padding: 46rpx 30rpx 0 30rpx;
  348. }
  349. .region-select .region-selected {
  350. float: left;
  351. height: 60rpx;
  352. display: flex;
  353. }
  354. .region-select .region-selected .item {
  355. max-width: 140rpx;
  356. margin-right: 30rpx;
  357. text-align: left;
  358. line-height: 60rpx;
  359. height: 100%;
  360. color: #333;
  361. font-size: 28rpx;
  362. overflow: hidden;
  363. text-overflow: ellipsis;
  364. white-space: nowrap;
  365. }
  366. .region-select .region-selected .item.disabled {
  367. color: #999;
  368. }
  369. .region-select .region-selected .item.selected {
  370. color: #b4282d;
  371. }
  372. .region-select .done {
  373. float: right;
  374. height: 60rpx;
  375. width: 60rpx;
  376. border: none;
  377. background: #fff;
  378. line-height: 60rpx;
  379. text-align: center;
  380. color: #333;
  381. font-size: 28rpx;
  382. }
  383. .region-select .done.disabled {
  384. color: #999;
  385. }
  386. .region-select .bd {
  387. height: 492rpx;
  388. width: 100%;
  389. padding: 0 30rpx;
  390. }
  391. .region-select .region-list {
  392. height: 492rpx;
  393. }
  394. .region-select .region-list .item {
  395. width: 100%;
  396. height: 104rpx;
  397. line-height: 104rpx;
  398. text-align: left;
  399. color: #333;
  400. font-size: 28rpx;
  401. }
  402. .region-select .region-list .item.selected {
  403. color: #b4282d;
  404. }
  405. .bg-mask {
  406. height: 100%;
  407. width: 100%;
  408. background: rgba(0, 0, 0, 0.4);
  409. position: fixed;
  410. top: 0;
  411. left: 0;
  412. z-index: 8;
  413. }
  414. .link-block{
  415. margin-top:80rpx;
  416. text-align: center;
  417. color:#09afff;
  418. font-size: 24rpx;
  419. text-decoration: underline;
  420. display: flex;
  421. align-items: center;
  422. }