login.scss 3.0 KB

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