login.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. .container {
  2. background: #F7F8FA;
  3. width: 100vw;
  4. height: 100vh;
  5. display: flex;
  6. flex-direction: column;
  7. }
  8. .main-wrap {
  9. width: 1200px;
  10. margin: 0 auto;
  11. }
  12. .head-wrap {
  13. background: #fff;
  14. height: 64px;
  15. }
  16. .head-wrap .main-wrap {
  17. display: flex;
  18. height: 100%;
  19. align-items: center;
  20. justify-content: space-between;
  21. }
  22. .head-wrap .login-wrap {
  23. height: 18px;
  24. display: flex;
  25. align-items: center;
  26. }
  27. .head-wrap .login-wrap img {
  28. max-height: 100%;
  29. width: auto;
  30. }
  31. .type-wrap {
  32. box-sizing: border-box;
  33. padding: 20px;
  34. margin-top: 20px;
  35. width: auto;
  36. background: #FFFFFF;
  37. border-radius: 6px;
  38. display: flex;
  39. justify-content: space-around;
  40. box-shadow: 0px 0px 20px #CCCCCC;
  41. position: relative;
  42. }
  43. .show {
  44. text-align: center;
  45. position: relative
  46. }
  47. .show i {
  48. display: inline-block;
  49. width: 18px;
  50. height: 18px;
  51. }
  52. .show i img {
  53. width: 100%;
  54. }
  55. .show > span {
  56. font-size: 16px;
  57. font-family: Microsoft YaHei;
  58. font-weight: 400;
  59. color: #333333;
  60. }
  61. .log-type {
  62. display: none;
  63. position: absolute;
  64. left: 50%;
  65. transform: translateX(-50%);
  66. }
  67. .show:hover .log-type {
  68. display: block;
  69. }
  70. .type-item {
  71. text-align: center;
  72. padding: 0 10px;
  73. display: inline-block;
  74. }
  75. .type-item span {
  76. font-family: Microsoft YaHei;
  77. font-weight: 400;
  78. color: #333333;
  79. }
  80. .item-img {
  81. width: 100px;
  82. height: 100px;
  83. display: flex;
  84. flex-direction: row;
  85. flex-wrap: wrap;
  86. margin-bottom: 10px;
  87. }
  88. .body-wrap {
  89. flex: 1;
  90. height: 0;
  91. }
  92. .body-wrap .main-wrap {
  93. display: flex;
  94. align-items: center;
  95. justify-content: space-between;
  96. height: 100%;
  97. }
  98. .body-wrap .login-leftbg {
  99. width: 570px;
  100. }
  101. .body-wrap .form-wrap {
  102. width: 440px;
  103. background: #fff;
  104. border-radius: 4px;
  105. padding: 50px 40px;
  106. box-sizing: border-box;
  107. }
  108. .body-wrap .form-wrap .login-title {
  109. font-size: 30px;
  110. line-height: 36px;
  111. color: #000;
  112. font-weight: 400;
  113. text-align: center;
  114. margin-bottom: 30px;
  115. }
  116. .body-wrap .form-wrap .input-wrap {
  117. width: 360px;
  118. height: 48px;
  119. background: #FFFFFF;
  120. border: 1px solid #E6E6E6;
  121. border-radius: 4px;
  122. margin-bottom: 15px;
  123. display: flex;
  124. }
  125. .body-wrap .input-wrap .icon {
  126. display: flex;
  127. align-items: center;
  128. justify-items: center;
  129. padding-left: 10px;
  130. }
  131. .body-wrap .input-wrap .iconfont {
  132. font-size: 20px;
  133. color: #909399;
  134. }
  135. .body-wrap .input-wrap .input, .body-wrap .input-wrap .layui-form-select {
  136. flex: 1;
  137. width: 0;
  138. line-height: 48px;
  139. height: 48px;
  140. padding: 0 10px;
  141. border: none;
  142. }
  143. .body-wrap .input-wrap .captcha {
  144. cursor: pointer;
  145. }
  146. .body-wrap .form-wrap .layui-btn{
  147. line-height: 48px;
  148. height: 48px;
  149. color: #fff;
  150. border-radius: 4px;
  151. width: 100%;
  152. margin-top: 15px;
  153. }
  154. .body-wrap .layui-form-select .layui-input {
  155. border: none;
  156. line-height: 48px;
  157. height: 48px;
  158. padding-left: 0;
  159. }
  160. .footer-wrap {
  161. padding: 50px 0 20px 0;
  162. text-align: center;
  163. }
  164. .footer-wrap a {
  165. color: #999;
  166. font-size: 12px;
  167. }
  168. .footer-wrap .copyright-logo img {
  169. max-width: 100px;
  170. max-height: 27px;
  171. }
  172. .footer-wrap .gov-box img {
  173. width: 20px;
  174. height: 20px;
  175. margin-right: 5px;
  176. }
  177. .footer-wrap .info {
  178. margin: 8px 0;
  179. }