login.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. *{
  2. padding:0;
  3. margin:0;
  4. }
  5. html, body{
  6. height: 100%;
  7. overflow-y: hidden;
  8. }
  9. .errorinfo{
  10. background: transparent!important;
  11. color: RED;
  12. }
  13. .login-body{
  14. width: 100%;
  15. height:100%;
  16. background: url(../images/lock-screen-background.jpg) no-repeat;
  17. background-size: cover;
  18. }
  19. .login-body-box{
  20. width:400px;
  21. height:322px;
  22. position: absolute;
  23. top: 50%;
  24. left: 50%;
  25. margin: -161px 0 0 -200px;
  26. padding:0;
  27. background: rgba(2, 48, 86, 0.8);
  28. }
  29. .login-dl-form{
  30. padding:0 20px;
  31. box-sizing: border-box;
  32. -moz-box-sizing: border-box;
  33. -webkit-box-sizing: border-box;
  34. -o-box-sizing: border-box;
  35. -ms-box-sizing: border-box;
  36. }
  37. .login-dl-title{
  38. text-align: center;
  39. height: 80px;
  40. line-height: 80px;
  41. color: rgb(255, 255, 255);
  42. font-size: 20px;
  43. }
  44. .login-dl-name{
  45. width: 55px;
  46. height: 50px;
  47. padding-right: 15px;
  48. float: left;
  49. line-height: 50px;
  50. text-align: right;
  51. color: rgb(0, 76, 139);
  52. background: rgb(224, 224, 224);
  53. }
  54. .login-dl-info{
  55. margin-left: 70px;
  56. height: 50px;
  57. position: relative;
  58. }
  59. .login-dl-info input{
  60. font-size: 20px;
  61. margin: 0px;
  62. padding:0 10px;
  63. height: 50px;
  64. line-height: 50px;
  65. width: 268px;
  66. border:0;
  67. }
  68. .login-dl-info i{
  69. position: absolute;
  70. right:0;
  71. top:0;
  72. width:50px;
  73. height: 50px;
  74. line-height: 50px;
  75. text-align: center;
  76. font-size: 28px;
  77. z-index: 9999;
  78. color: rgb(201, 201, 201);
  79. }
  80. .login-dl-info select{
  81. margin: 0px;
  82. padding:0 10px;
  83. height: 50px;
  84. line-height: 50px;
  85. width: 290px;
  86. border: none;
  87. outline: none;
  88. appearance: none;
  89. -webkit-appearance: none;
  90. -moz-appearance: none;
  91. }
  92. .login-dl-info option{
  93. height: 30px;
  94. margin: 0 -4px;
  95. outline: none;
  96. }
  97. .login-dl-form dd{
  98. width: 100%;
  99. height: 50px;
  100. background: rgb(249, 249, 249);
  101. margin: 0px 0px 10px;
  102. }
  103. .login-dl-submit{
  104. background: rgba(0, 76, 139, 0.85);
  105. position: absolute;
  106. bottom: 0px;
  107. height: 55px;
  108. width: 100% !important;
  109. text-align: center;
  110. line-height: 55px;
  111. }
  112. .login-dl-submit a{
  113. width:100%;
  114. height:100%;
  115. display:block;
  116. color:#fff;
  117. font-size: 16px;
  118. cursor: pointer;
  119. }
  120. .fa-caret-down{
  121. pointer-events: none;
  122. }