login.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. @charset "utf-8";
  2. /* CSS Document */
  3. html{ height: 100%; width: 100%;}
  4. * {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. input.input-error:focus{background-color: transparent;}
  9. .popupDom {
  10. position: fixed;
  11. top: -40px;
  12. width: 100%;
  13. text-align: center;
  14. }
  15. .popup {
  16. width: 200px;
  17. height: 40px;
  18. line-height: 40px;
  19. background-color: #2a799f;
  20. border-radius: 0px 0px 4px 4px;
  21. text-align: center;
  22. margin: 0 auto;
  23. border: 1px solid #598fab;
  24. border-top: none;
  25. color: #FFFFFF;
  26. }
  27. .main {
  28. min-height: 700px;
  29. min-width: 1140px;
  30. position: relative;
  31. z-index: 999;
  32. width: 100%;
  33. height: 100%;
  34. }
  35. /* 登录 */
  36. .login-bg {
  37. background: url(../img/login-bg.png)0 0 repeat-x;
  38. width: 100%;
  39. height: 100%;
  40. }
  41. .login-dom{ position:absolute; width:100%;}
  42. .login {
  43. width:590px;
  44. margin: 0 auto;
  45. }
  46. /* logo */
  47. .logo {
  48. padding-top: 100px;
  49. margin: 0 auto 20px;
  50. }
  51. .logo1{margin: 0 auto 20px;}
  52. .logo-color {
  53. color: #c0cad6;
  54. }
  55. /* 输入框 */
  56. .login-box {
  57. width: 320px;
  58. height: 82px;
  59. border-radius: 8px;
  60. -webkit-border-radius: 8px;
  61. margin: 20px auto;
  62. background-color: #dde6ea;
  63. border: 2px solid #fff;
  64. cursor: pointer;
  65. }
  66. .login-shadow {
  67. box-shadow: 0px 0px 15px #000;
  68. -moz-box-shadow: 0px 0px 15px #000;
  69. -o-box-shadow: 0px 0px 15px #000;
  70. -webkit-box-shadow: 0px 0px 15px #000;
  71. }
  72. /* 登录名 */
  73. .name {
  74. width: 100%;
  75. height: 40px;
  76. border-radius: 8px;
  77. }
  78. .name input {
  79. width: 90%;
  80. height: 40px;
  81. outline: none;
  82. border: none;
  83. background-color: transparent;
  84. border-radius: 8px;
  85. -webkit-border-radius: 8px;
  86. margin-left: 5%;
  87. }
  88. input.input-error{
  89. background-color: transparent;
  90. }
  91. /* 密码 */
  92. .pwd {
  93. width: 100%;
  94. height: 40px;
  95. border-radius: 8px;
  96. -webkit-border-radius: 8px;
  97. }
  98. .pwd input {
  99. width: 90%;
  100. height: 40px;
  101. outline: none;
  102. border: none;
  103. background-color: transparent;
  104. border-radius: 8px;
  105. -webkit-border-radius: 8px;
  106. margin-left: 5%;
  107. }
  108. /* 登录按钮 */
  109. .btn {
  110. display: block;
  111. width: 320px;
  112. height: 40px;
  113. color: #c1c8d1;
  114. background-color: #2a799f;
  115. border-radius: 8px;
  116. -webkit-border-radius: 8px;
  117. margin: 30px auto;
  118. line-height: 40px;
  119. cursor: pointer;
  120. border: 1px solid #598fab;
  121. }
  122. .btn:hover {
  123. color: #fff;
  124. }
  125. .login-btn {
  126. margin-top: 50px;
  127. }
  128. /* 忘记密码 */
  129. .login-bg .forget {
  130. width: 560px;
  131. height: 60px;
  132. overflow: hidden;
  133. }
  134. .forget {
  135. background-image: url(../img/forget.png);
  136. margin: 40px auto;
  137. }
  138. .forget-pwd {
  139. color: #c1c8d1;
  140. margin-left: 53px;
  141. padding-top: 20px;
  142. cursor: pointer;
  143. }
  144. .forget-pwd:hover {
  145. text-decoration: underline;
  146. color: #fff;
  147. }
  148. .forget-new:hover {
  149. color: #fff;
  150. text-decoration: underline;
  151. }
  152. .forget-new {
  153. color: #c1c8d1;
  154. padding-top: 20px;
  155. margin-right: 53px;
  156. cursor: pointer;
  157. }
  158. /* 底部 */
  159. .footer {
  160. width: 100%;
  161. position: absolute;
  162. bottom: 20px;
  163. color: #c1c8d1;
  164. }
  165. .footer a{color: #c1c8d1;}
  166. .footer a:hover{color: #fff;text-decoration: underline;}
  167. /* 注册 */
  168. .register {
  169. width: 100%;
  170. margin: 0 auto;
  171. display: none;
  172. }
  173. .num-box,
  174. .code-box {
  175. width: 320px;
  176. height: 40px;
  177. border-radius: 8px;
  178. -webkit-border-radius: 8px;
  179. margin: 20px auto;
  180. background-color: #dde6ea;
  181. cursor: pointer;
  182. }
  183. /* 手机号(注册) */
  184. .area {
  185. width: 85px;
  186. height: 40px;
  187. line-height: 40px;
  188. text-align: center;
  189. color: #555;
  190. }
  191. .num-box input {
  192. width: 73%;
  193. height: 40px;
  194. outline: none;
  195. border: none;
  196. background-color: #dde6ea;
  197. border-radius: 8px;
  198. -webkit-border-radius: 8px;
  199. }
  200. .slider-box {
  201. width: 320px;
  202. height: 40px;
  203. margin: 30px auto;
  204. }
  205. /* 注册第二步 */
  206. .code-box input {
  207. width: 64%;
  208. height: 40px;
  209. outline: none;
  210. border: none;
  211. background-color: #dde6ea;
  212. border-radius: 8px;
  213. -webkit-border-radius: 8px;
  214. }
  215. /* 验证码 */
  216. .code {
  217. width: 114px;
  218. height: 40px;
  219. text-align: center;
  220. line-height: 40px;
  221. color: #265f83;
  222. border-left: 2px solid #ced9dd;
  223. }
  224. .message {
  225. width: 320px;
  226. height: 30px;
  227. color: #c0cad6;
  228. margin: 0 auto;
  229. }
  230. /* 注册第三步 */
  231. .three-box {
  232. width: 320px;
  233. -webkit-border-radius: 8px;
  234. border-radius: 8px;
  235. margin: 20px auto;
  236. background-color: #dde6ea;
  237. border: 2px solid #fff;
  238. cursor: pointer;
  239. }
  240. /* 注册第四步 */
  241. .four-top {
  242. position:relative;
  243. top:50%;
  244. }
  245. .successDom {
  246. position: absolute;
  247. top: -50%;
  248. margin-top:-180px;
  249. z-index: 10;
  250. left: 0;
  251. width: 100%;
  252. text-align: center;
  253. display: none;
  254. }
  255. /*注册*/
  256. .reg-wrap{margin: 20px auto; width: 320px;height: 82px;border-radius: 4px; background-color: #dde6ea;}
  257. .reg-btn{margin: 40px auto; width: 320px;height: 40px;line-height: 40px;border: 1px solid #598fab; background-color: #2a799f;border-radius: 8px; cursor: pointer;}
  258. .reg-btn:hover{color: #fff;}
  259. .reg-wrap .reg-number{height: 40px;line-height: 40px;}
  260. .reg-area{padding: 0 20px;}
  261. .reg-wrap input{background-color:transparent ;}
  262. .reg-phone{width: 80%; }
  263. .reg-code{width: 57%; border-right: 1px solid #ced9dd;}
  264. .reg-wrap .reg-send{padding: 0 37px; color: #265f83;cursor: pointer;}