retrievePassword.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. .pageContainer{
  2. max-width: 13.2rem;
  3. min-height: 100vh;
  4. margin: 0 auto;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. }
  9. .pageLogo{
  10. padding-top: 1rem;
  11. }
  12. .pageLogo img{
  13. height: .3rem;
  14. }
  15. .pageSection{
  16. flex: 1;
  17. padding-top: 1.6rem;
  18. }
  19. #registerModel{
  20. display: none;
  21. }
  22. #emailVerifyModel,#setPasswordModel{
  23. display: none;
  24. }
  25. .modelTitle{
  26. font-weight: bold;
  27. font-size: .36rem;
  28. color: #333333;
  29. }
  30. .modelTips{
  31. font-size: .14rem;
  32. color: #999999;
  33. padding-top: .08rem;
  34. }
  35. .modelContainer{
  36. padding-top: .48rem;
  37. }
  38. .modelItem{
  39. border-radius: .08rem;
  40. height: .58rem;
  41. width: 4.5rem;
  42. border: .02rem solid rgba(0, 0, 0, .05);
  43. margin-bottom: .24rem;
  44. position: relative;
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. transition: border .1s;
  49. }
  50. .modelItem .miTitle{
  51. position: absolute;
  52. z-index: 1;
  53. background: #FFF;
  54. line-height: 1;
  55. color: #666666;
  56. font-size: .14rem;
  57. left: .12rem;
  58. top: 0;
  59. transform: translateY(-50%);
  60. padding: 0 .08rem;
  61. transition: color .1s;
  62. }
  63. .modelItem.active{
  64. border-color: rgba(79, 73, 222, 1);
  65. }
  66. .modelItem.active .miTitle{
  67. color: rgba(79, 73, 222, 1);
  68. }
  69. .modelItem .input{
  70. flex: 1;
  71. height: 100%;
  72. outline: none;
  73. font-size: .18rem;
  74. padding-left: .12rem;
  75. padding: .12rem;
  76. padding-top: .1rem;
  77. box-sizing: border-box;
  78. border: none;
  79. background-color: transparent;
  80. }
  81. .modelItemButon{
  82. color: rgba(79, 73, 222, .8);
  83. cursor: pointer;
  84. padding: .06rem 0;
  85. width: 1rem;
  86. text-align: center;
  87. margin: 0 .12rem;
  88. border: .02rem solid rgba(79, 73, 222, .8);
  89. border-radius: .08rem;
  90. }
  91. .pageButton{
  92. width: 4.5rem;
  93. height: .6rem;
  94. background-color: rgba(79, 73, 222, 1);
  95. border-radius: .08rem;
  96. font-size: .22rem;
  97. letter-spacing: .02rem;
  98. font-weight: bold;
  99. display: flex;
  100. align-items: center;
  101. justify-content: center;
  102. color: #fff;
  103. cursor: pointer;
  104. }
  105. .otherButton{
  106. width: 4.5rem;
  107. height: .5rem;
  108. border-radius: .08rem;
  109. font-size: .18rem;
  110. letter-spacing: .02rem;
  111. font-weight: bold;
  112. display: flex;
  113. align-items: center;
  114. justify-content: center;
  115. color: #434343;
  116. cursor: pointer;
  117. margin-top: .24rem;
  118. }
  119. .accountTips{
  120. display: flex;
  121. align-items: center;
  122. justify-content: center;
  123. padding-top: .24rem;
  124. font-size: .16rem;
  125. color: #434343;
  126. }
  127. .accountTips span{
  128. color: rgba(79, 73, 222, 1);
  129. cursor: pointer;
  130. }
  131. @media (max-width: 899px) {
  132. .modelTitle{
  133. font-size: .4rem;
  134. }
  135. .pageSection{
  136. width: 6rem;
  137. padding-top: 1rem;
  138. }
  139. .modelItem{
  140. width: 100%;
  141. height: .7rem;
  142. margin-bottom: .32rem;
  143. }
  144. .modelItem .miTitle{
  145. font-size: .18rem;
  146. }
  147. .modelItem .input{
  148. font-size: .22rem;
  149. }
  150. .pageButton{
  151. width: 100%;
  152. height: .8rem;
  153. font-size: .26rem;
  154. }
  155. .forgotPassword{
  156. font-size: .16rem;
  157. }
  158. .accountTips{
  159. font-size: .18rem;
  160. }
  161. .modelTips{
  162. font-size: .18rem;
  163. }
  164. }
  165. @media (max-width: 750px) {
  166. .modelTitle{
  167. font-size: .42rem;
  168. }
  169. .pageSection{
  170. width: 5.5rem;
  171. padding-top: 2rem;
  172. }
  173. .modelItem{
  174. width: 100%;
  175. height: .8rem;
  176. margin-bottom: .32rem;
  177. }
  178. .modelItem .miTitle{
  179. font-size: .2rem;
  180. }
  181. .modelItem .input{
  182. font-size: .24rem;
  183. }
  184. .pageButton{
  185. width: 100%;
  186. height: .8rem;
  187. font-size: .26rem;
  188. }
  189. .forgotPassword{
  190. font-size: .18rem;
  191. }
  192. .accountTips{
  193. font-size: .2rem;
  194. }
  195. .modelTips{
  196. font-size: .2rem;
  197. padding-top: .18rem;
  198. }
  199. .modelContainer{
  200. padding-top: .6rem;
  201. }
  202. .modelItemButon{
  203. font-size: .2rem;
  204. width: 1.2rem;
  205. padding: .1rem 0;
  206. }
  207. }