login.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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: #8b9aac;
  32. color: #fff;
  33. float: left;
  34. width: 50%;
  35. position: relative;
  36. }
  37. .login-left .img {
  38. width: 140px;
  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. text-align: center;
  53. color: #fff;
  54. font-weight: bold;
  55. font-size: 30px;
  56. letter-spacing: 2px;
  57. }
  58. .login-border {
  59. border-left: none;
  60. border-top-right-radius: 5px;
  61. border-bottom-right-radius: 5px;
  62. color: #fff;
  63. background-color: #fff;
  64. width: 50%;
  65. float: left;
  66. box-sizing: border-box;
  67. }
  68. .login-main {
  69. margin: 0 auto;
  70. width: 65%;
  71. box-sizing: border-box;
  72. }
  73. .login-main > h3 {
  74. margin-bottom: 20px;
  75. }
  76. .login-main > p {
  77. color: #76838f;
  78. }
  79. .login-title {
  80. color: #333;
  81. margin-bottom: 40px;
  82. font-weight: 500;
  83. font-size: 22px;
  84. text-align: center;
  85. letter-spacing: 4px;
  86. }
  87. .login-menu {
  88. margin-top: 40px;
  89. width: 100%;
  90. text-align: center;
  91. a {
  92. color: #999;
  93. font-size: 12px;
  94. margin: 0px 8px;
  95. }
  96. }
  97. .login-submit {
  98. width: 100%;
  99. height: 45px;
  100. border: 1px solid #409EFF;
  101. background: none;
  102. font-size: 18px;
  103. letter-spacing: 2px;
  104. font-weight: 300;
  105. color: #409EFF;
  106. cursor: pointer;
  107. margin-top: 30px;
  108. font-family: "neo";
  109. transition: 0.25s;
  110. }
  111. .login-form {
  112. margin: 10px 0;
  113. i {
  114. color: #333;
  115. }
  116. .el-form-item__content {
  117. width: 100%;
  118. }
  119. .el-form-item {
  120. margin-bottom: 12px;
  121. }
  122. .el-input {
  123. input {
  124. padding-bottom: 10px;
  125. text-indent: 5px;
  126. background: transparent;
  127. border: none;
  128. border-radius: 0;
  129. color: #333;
  130. border-bottom: 1px solid rgb(235, 237, 242);
  131. }
  132. .el-input__prefix {
  133. i {
  134. padding: 0 5px;
  135. font-size: 16px !important;
  136. }
  137. }
  138. }
  139. }
  140. .login-code {
  141. display: flex;
  142. align-items: center;
  143. justify-content: space-around;
  144. margin: 0 0 0 10px;
  145. }
  146. .login-code-img {
  147. margin-top: 2px;
  148. width: 100px;
  149. height: 38px;
  150. background-color: #fdfdfd;
  151. border: 1px solid #f0f0f0;
  152. color: #333;
  153. font-size: 14px;
  154. font-weight: bold;
  155. letter-spacing: 5px;
  156. line-height: 38px;
  157. text-indent: 5px;
  158. text-align: center;
  159. cursor:pointer!important;
  160. }