login.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. .login-container {
  2. display: flex;
  3. align-items: center;
  4. position: relative;
  5. width: 100%;
  6. height: 100%;
  7. margin: 0 auto;
  8. background-image: url("/img/bg/bg.jpg");
  9. background-size: 100% 100%;
  10. }
  11. .login-weaper {
  12. margin: 0 auto;
  13. width: 1000px;
  14. box-shadow: -4px 5px 10px rgba(0, 0, 0, 0.4);
  15. .el-input-group__append {
  16. border: none;
  17. }
  18. }
  19. .login-left,
  20. .login-border {
  21. position: relative;
  22. min-height: 500px;
  23. align-items: center;
  24. display: flex;
  25. }
  26. .login-left {
  27. border-top-left-radius: 5px;
  28. border-bottom-left-radius: 5px;
  29. justify-content: center;
  30. flex-direction: column;
  31. background-color: #409EFF;
  32. color: #fff;
  33. float: left;
  34. width: 50%;
  35. position: relative;
  36. }
  37. .login-left .img {
  38. width: 280px;
  39. }
  40. .login-time {
  41. position: absolute;
  42. left: 25px;
  43. top: 25px;
  44. width: 100%;
  45. color: #fff;
  46. font-weight: 200;
  47. opacity: 0.9;
  48. font-size: 18px;
  49. overflow: hidden;
  50. }
  51. .login-left .title {
  52. margin-top: 60px;
  53. text-align: center;
  54. color: #fff;
  55. font-weight: 300;
  56. letter-spacing: 2px;
  57. font-size: 25px;
  58. }
  59. .login-border {
  60. border-left: none;
  61. border-top-right-radius: 5px;
  62. border-bottom-right-radius: 5px;
  63. color: #fff;
  64. background-color: #fff;
  65. width: 50%;
  66. float: left;
  67. box-sizing: border-box;
  68. }
  69. .login-main {
  70. margin: 0 auto;
  71. width: 65%;
  72. box-sizing: border-box;
  73. }
  74. .login-main > h3 {
  75. margin-bottom: 20px;
  76. }
  77. .login-main > p {
  78. color: #76838f;
  79. }
  80. .login-title {
  81. color: #333;
  82. margin-bottom: 40px;
  83. font-weight: 500;
  84. font-size: 22px;
  85. text-align: center;
  86. letter-spacing: 4px;
  87. }
  88. .login-menu {
  89. margin-top: 40px;
  90. width: 100%;
  91. text-align: center;
  92. a {
  93. color: #999;
  94. font-size: 12px;
  95. margin: 0px 8px;
  96. }
  97. }
  98. .login-submit {
  99. width: 100%;
  100. height: 45px;
  101. border: 1px solid #409EFF;
  102. background: none;
  103. font-size: 18px;
  104. letter-spacing: 2px;
  105. font-weight: 300;
  106. color: #409EFF;
  107. cursor: pointer;
  108. margin-top: 30px;
  109. font-family: "neo";
  110. transition: 0.25s;
  111. }
  112. .login-form {
  113. margin: 10px 0;
  114. i {
  115. color: #333;
  116. }
  117. .el-form-item__content {
  118. width: 100%;
  119. }
  120. .el-form-item {
  121. margin-bottom: 12px;
  122. }
  123. .el-input {
  124. input {
  125. padding-bottom: 10px;
  126. text-indent: 5px;
  127. background: transparent;
  128. border: none;
  129. border-radius: 0;
  130. color: #333;
  131. border-bottom: 1px solid rgb(235, 237, 242);
  132. }
  133. .el-input__prefix {
  134. i {
  135. padding: 0 5px;
  136. font-size: 16px !important;
  137. }
  138. }
  139. }
  140. }
  141. .login-code {
  142. display: flex;
  143. align-items: center;
  144. justify-content: space-around;
  145. margin: 0 0 0 10px;
  146. }
  147. .login-code-img {
  148. margin-top: 2px;
  149. width: 100px;
  150. height: 38px;
  151. background-color: #fdfdfd;
  152. border: 1px solid #f0f0f0;
  153. color: #333;
  154. font-size: 14px;
  155. font-weight: bold;
  156. letter-spacing: 5px;
  157. line-height: 38px;
  158. text-indent: 5px;
  159. text-align: center;
  160. cursor:pointer!important;
  161. }