login.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. *{
  2. font: 13px/1.5 '微软雅黑', Verdana, Helvetica, Arial, sans-serif;
  3. -webkit-box-sizing: border-box;
  4. -moz-box-sizing: border-box;
  5. -box-sizing: border-box;
  6. padding:0;
  7. margin:0;
  8. list-style:none;
  9. box-sizing: border-box;
  10. }
  11. body,html{
  12. height:100%;
  13. overflow:hidden;
  14. }
  15. body{
  16. background:url(../images/web_login_bg.jpg) no-repeat center;
  17. background-size: cover;
  18. }
  19. a{
  20. color:#27A9E3;
  21. text-decoration:none;
  22. cursor:pointer;
  23. }
  24. .login{
  25. margin: 150px auto 0 auto;
  26. min-height: 420px;
  27. max-width: 420px;
  28. padding: 40px;
  29. background-color: #ffffff;
  30. margin-left: auto;
  31. margin-right: auto;
  32. border-radius: 4px;
  33. /* overflow-x: hidden; */
  34. box-sizing: border-box;
  35. }
  36. a.logo{
  37. display: block;
  38. height: 58px;
  39. width: 167px;
  40. margin: 0 auto 30px auto;
  41. background-size: 167px 42px;
  42. }
  43. .message {
  44. margin: 10px 0 0 -58px;
  45. padding: 18px 10px 18px 60px;
  46. background: #27A9E3;
  47. position: relative;
  48. color: #fff;
  49. font-size: 16px;
  50. }
  51. #darkbannerwrap {
  52. background: url(../images/aiwrap.png);
  53. width: 18px;
  54. height: 10px;
  55. margin: 0 0 20px -58px;
  56. position: relative;
  57. }
  58. input[type=text],
  59. input[type=file],
  60. input[type=password],
  61. input[type=email], select {
  62. border: 1px solid #DCDEE0;
  63. vertical-align: middle;
  64. border-radius: 3px;
  65. height: 50px;
  66. padding: 0px 16px;
  67. font-size: 14px;
  68. color: #555555;
  69. outline:none;
  70. width:100%;
  71. }
  72. input[type=text]:focus,
  73. input[type=file]:focus,
  74. input[type=password]:focus,
  75. input[type=email]:focus, select:focus {
  76. border: 1px solid #27A9E3;
  77. }
  78. input[type=submit],
  79. input[type=button]{
  80. display: inline-block;
  81. vertical-align: middle;
  82. padding: 12px 24px;
  83. margin: 0px;
  84. font-size: 18px;
  85. line-height: 24px;
  86. text-align: center;
  87. white-space: nowrap;
  88. vertical-align: middle;
  89. cursor: pointer;
  90. color: #ffffff;
  91. background-color: #27A9E3;
  92. border-radius: 3px;
  93. border: none;
  94. -webkit-appearance: none;
  95. outline:none;
  96. width:100%;
  97. }
  98. hr.hr15 {
  99. height: 15px;
  100. border: none;
  101. margin: 0px;
  102. padding: 0px;
  103. width: 100%;
  104. }
  105. hr.hr20 {
  106. height: 20px;
  107. border: none;
  108. margin: 0px;
  109. padding: 0px;
  110. width: 100%;
  111. }
  112. .copyright{
  113. font-size:14px;
  114. color:rgba(255,255,255,0.85);
  115. display:block;
  116. position:absolute;
  117. bottom:15px;
  118. right:15px;
  119. }