login.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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 .title {
  48. color: #68686b;
  49. font-size: 24px;
  50. text-align: center;
  51. margin-bottom: 6px;
  52. }
  53. .login input {
  54. width: 100%;
  55. height: 56px;
  56. font-size: 20px;
  57. background-color: #ffffff;
  58. border-radius: 8px;
  59. border: 1px solid #d1d1d1;
  60. padding: 15px;
  61. margin-top: 18px;
  62. }
  63. .login button {
  64. width: 100%;
  65. height: 52px;
  66. border-radius: 0;
  67. background-color: #005395;
  68. text-align: center;
  69. line-height: 52px;
  70. font-size: 20px;
  71. color: #fff;
  72. margin-top: 24px;
  73. border: 0 none;
  74. cursor: pointer;
  75. }
  76. .login button:hover {
  77. background-color: #00437a;
  78. }
  79. .login p {
  80. font-size: 12px;
  81. color: #68686b;
  82. text-align: left;
  83. margin-top: 21px;
  84. }
  85. .shadow {
  86. width: 480px;
  87. margin-top: -20px;
  88. }
  89. .shadow img {
  90. width: 100%;
  91. }
  92. .camp {
  93. width: 100%;
  94. position: fixed;
  95. bottom: 16px;
  96. text-align: center;
  97. font-size: 14px;
  98. color: #333;
  99. }
  100. .camp img {
  101. height: 24px;
  102. vertical-align: top;
  103. }