login.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .container {
  2. background-color: #f4f8fd;
  3. position: absolute;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. height: 480px;
  8. background: url(./../imgs/BG_login.png) no-repeat center top;
  9. background-size: cover;
  10. behavior: url(PIE.htc);
  11. }
  12. .bg {
  13. width: 100%;
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. min-width: 1020px;
  18. }
  19. .content {
  20. width: 480px;
  21. height: 470px;
  22. position: fixed;
  23. left: 50%;
  24. top: 50%;
  25. margin-top: -235px;
  26. margin-left: -240px;
  27. }
  28. .logo {
  29. text-align: center;
  30. font-size: 28px;
  31. color: #fff;
  32. }
  33. .logo img {
  34. height: 50px;
  35. vertical-align: top;
  36. margin-bottom: 20px;
  37. }
  38. .login {
  39. width: 480px;
  40. /* height: 400px; */
  41. position: relative;
  42. border-radius: 8px;
  43. background: #fff;
  44. border: 1px solid #e5e5e5;
  45. padding: 38px 40px;
  46. }
  47. .login .captcha{
  48. width: 50%;
  49. }
  50. .login .verificationCodeImg {
  51. width: 50%;
  52. margin-top: 18px;
  53. height: 56px;
  54. }
  55. .login .title {
  56. color: #68686b;
  57. font-size: 24px;
  58. text-align: center;
  59. margin-bottom: 6px;
  60. }
  61. .login input {
  62. width: 100%;
  63. height: 56px;
  64. font-size: 20px;
  65. background-color: #ffffff;
  66. border-radius: 8px;
  67. border: 1px solid #d1d1d1;
  68. padding: 15px;
  69. margin-top: 18px;
  70. }
  71. .login button {
  72. width: 100%;
  73. height: 52px;
  74. border-radius: 0;
  75. background-color: #005395;
  76. text-align: center;
  77. line-height: 52px;
  78. font-size: 20px;
  79. color: #fff;
  80. margin-top: 24px;
  81. border: 0 none;
  82. cursor: pointer;
  83. }
  84. .login button:hover {
  85. background-color: #00437a;
  86. }
  87. .login p {
  88. font-size: 12px;
  89. color: #68686b;
  90. text-align: left;
  91. margin-top: 21px;
  92. }
  93. .shadow {
  94. width: 480px;
  95. margin-top: -20px;
  96. }
  97. .shadow img {
  98. width: 100%;
  99. }
  100. .camp {
  101. width: 100%;
  102. position: fixed;
  103. bottom: 16px;
  104. text-align: center;
  105. font-size: 14px;
  106. color: #333;
  107. }
  108. .camp img {
  109. height: 24px;
  110. vertical-align: top;
  111. }