login.css 3.6 KB

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