No Description

login.css 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. * {
  2. box-sizing: border-box;
  3. font-family: "PingFang SC,Microsoft YaHei,SourceHanSansCN-Normal,HiraginoSansGB,HiraginoSans-W3,Helvetica Neue,Helvetica,STHeiTi,sans-serif";
  4. }
  5. html,body {
  6. position: relative;
  7. width: 100%;
  8. height: 100%;
  9. min-height: 8.41rem;
  10. }
  11. body {
  12. position: relative;
  13. }
  14. .con {
  15. width: 100%;
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. }
  20. .top {
  21. width: 100%;
  22. height: .4rem;
  23. position: fixed;
  24. top: 0;
  25. left: 0;
  26. background: rgba(255,255,255,.8);
  27. z-index: 99999;
  28. }
  29. .top img {
  30. width: .2rem;
  31. height: .2rem;
  32. position: absolute;
  33. left: .1rem;
  34. top: 50%;
  35. transform: translate(0,-50%);
  36. }
  37. .top h1 {
  38. font-size: .14rem;
  39. position: absolute;
  40. left: 50%;
  41. top: 50%;
  42. transform: translate(-50%,-50%);
  43. }
  44. .header {
  45. position: absolute;
  46. top: .24rem;
  47. left: .38rem;
  48. }
  49. .icon {
  50. display: inline-block;
  51. width: .34rem;
  52. height: .34rem;
  53. border-radius: .09rem;
  54. margin-right: .08rem;
  55. }
  56. .title {
  57. text-align: center;
  58. font-size: .18rem;
  59. color: #fff;
  60. }
  61. .header .title {
  62. display: inline-block;
  63. }
  64. .form {
  65. width: 100%;
  66. height: 100%;
  67. padding: 0 .24rem;
  68. position: absolute;
  69. // margin: auto;
  70. padding-top: 3.13rem;
  71. top: 0;
  72. left: 50%;
  73. transform: translate(-50%,0);
  74. }
  75. .main {
  76. height: 1.24rem;
  77. border-radius: .11rem;
  78. line-height: .22rem;
  79. padding: .26rem .13rem;
  80. background: #fff;
  81. }
  82. .text {
  83. box-sizing: content-box;
  84. border-bottom: .01rem solid rgba(0, 0, 0, .18);
  85. position: relative;
  86. padding-bottom: .14rem;
  87. }
  88. .text::before,.left::before {
  89. content: "";
  90. display: inline-block;
  91. width: .14rem;
  92. height: .14rem;
  93. background-image: url("../img/phone.png");
  94. background-size: 100% 100%;
  95. vertical-align: middle;
  96. margin-right: .12rem;
  97. }
  98. .paw {
  99. padding-top: .14rem;
  100. display: flex;
  101. justify-content: space-between;
  102. }
  103. .left::before {
  104. width: .15rem;
  105. background-image: url("../img/check.png");
  106. }
  107. input {
  108. font-size: .15rem;
  109. color: #777777;
  110. border: none;
  111. }
  112. input:focus {
  113. border: none;
  114. }
  115. .check {
  116. font-size: .13rem;
  117. border: none;
  118. background: transparent;
  119. color: #2E2BFF;
  120. float: right;
  121. }
  122. .else {
  123. margin-top: .13rem;
  124. height: .2rem;
  125. }
  126. .notice {
  127. font-size: .14rem;
  128. line-height: .2rem;
  129. color: #fff;
  130. }
  131. .notice span {
  132. font-size: .14rem;
  133. color: #398EFF;
  134. text-decoration: underline;
  135. }
  136. .button {
  137. width: 100%;
  138. height: .59rem;
  139. background-image: url("../img/button.png");
  140. background-size: 100% 100%;
  141. border-radius: .11rem;
  142. border: none;
  143. color: #DC0000;
  144. font-size: .2rem;
  145. margin-top: .38rem;
  146. margin-bottom: .44rem;
  147. }
  148. input::-webkit-input-placeholder{
  149. color: #777;
  150. font-size: .15rem;
  151. }
  152. input::-moz-placeholder{ /* Mozilla Firefox 19+ */
  153. color: #777;
  154. font-size: .15rem;
  155. }
  156. input:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
  157. color: #777;
  158. font-size: .15rem;
  159. }
  160. input::-ms-input-placeholder{ /* Internet Explorer 10-11 */
  161. color: #777;
  162. font-size: .15rem;
  163. }
  164. .content {
  165. width: 100%;
  166. height: 2.26rem;
  167. padding: 0 .24rem;
  168. position: absolute;
  169. top: 3.13rem;
  170. left: 50%;
  171. transform: translate(-50%,0);
  172. display: none;
  173. }
  174. .status {
  175. height: 100%;
  176. border-radius: .11rem;
  177. background: #fff;
  178. text-align: center;
  179. border: .01rem solid transparent;
  180. }
  181. .auditng .status {
  182. height: 90%;
  183. }
  184. .h1 {
  185. color: #037DEE;
  186. font-size: .2rem;
  187. margin-top: .17rem;
  188. margin-bottom: .12rem;
  189. }
  190. .status img {
  191. display: inline-block;
  192. width: 80%;
  193. }
  194. .success img {
  195. width: 90%;
  196. }
  197. .success .status p {
  198. max-width: 100%;
  199. }
  200. .status p {
  201. max-width: 2.08rem;
  202. display: inline-block;
  203. line-height: .18rem;
  204. font-size: .13rem;
  205. color: #6E6E6E;
  206. }
  207. .button2,.button1 {
  208. width: 100%;
  209. height: 19%;
  210. display: flex;
  211. align-items: center;
  212. justify-content: center;
  213. line-height: .55rem;
  214. box-shadow: 0 .05rem 0 #FF9A59;
  215. background: linear-gradient(#FFE88F,#FEC100);
  216. border-radius: .11rem;
  217. border: none;
  218. color: #DC0000;
  219. font-size: .2rem;
  220. font-weight: bold;
  221. margin-top: 5%;
  222. }
  223. .alert-info {
  224. position: fixed;
  225. top: 1.74rem;
  226. right: 0;
  227. left: 0;
  228. bottom: 0;
  229. text-align: center;
  230. z-index: 2;
  231. display: none;
  232. }
  233. .alert-info p {
  234. display: inline-block;
  235. height: .38rem;
  236. color: #fff;
  237. font-size: .14rem;
  238. line-height: .38rem;
  239. padding: 0 .1rem;
  240. background: rgba(0, 0, 0,.9);
  241. border-radius: 5px;
  242. }