login.scss 3.0 KB

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