forgetPassword.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. .sld_login {
  2. .sld_login_header {
  3. background: #fff;
  4. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
  5. .content {
  6. display: flex;
  7. padding: 20px 0;
  8. align-items: center;
  9. width: 1200px;
  10. margin: auto;
  11. .l_logo {
  12. cursor: pointer;
  13. width: 50%;
  14. .img {
  15. display: inline-block;
  16. vertical-align: top;
  17. max-width: 190px;
  18. max-height: 43px;
  19. }
  20. .text {
  21. font-size: 0;
  22. display: inline-block;
  23. vertical-align: top;
  24. line-height: 48px;
  25. margin-left: 5px;
  26. }
  27. }
  28. .r_register_wrap {
  29. font-size: 14px;
  30. width: 50%;
  31. text-align: right;
  32. .go_register_btn {
  33. font-size: 13px;
  34. display: inline-block;
  35. padding: 6px 22px;
  36. background: $colorMain;
  37. color: #fff;
  38. border-radius: 30px;
  39. margin-left: 7px;
  40. //font-family: Microsoft YaHei;
  41. height: 30px;
  42. line-height: 17px;
  43. }
  44. }
  45. }
  46. }
  47. .sld_login_content {
  48. width: 100%;
  49. height: 600px;
  50. position: relative;
  51. .bg {
  52. position: absolute;
  53. margin: auto;
  54. width: 1920px;
  55. height: 100%;
  56. margin-left: -960px;
  57. left: 50%;
  58. overflow: hidden;
  59. display: block;
  60. object-fit: cover;
  61. }
  62. .login {
  63. width: 1200px;
  64. height: 100%;
  65. margin: auto;
  66. z-index: 99;
  67. display: flex;
  68. align-items: center;
  69. justify-content: flex-end;
  70. position: relative;
  71. .login_box {
  72. position: relative;
  73. z-index: 10000;
  74. background: #fff;
  75. padding: 10px;
  76. .top {
  77. margin-top: 20px;
  78. padding: 0 20px;
  79. display: flex;
  80. width: 356px;
  81. cursor: default;
  82. .item1 {
  83. flex: 1;
  84. text-align: center;
  85. font-size: 18px;
  86. color: #666;
  87. position: relative;
  88. }
  89. }
  90. .center {
  91. padding: 30px 30px 40px;
  92. .item {
  93. position: relative;
  94. margin-top: 15px;
  95. border-radius: 2px;
  96. &:first-child {
  97. margin-top: 0;
  98. }
  99. .icon {
  100. position: absolute;
  101. left: 1px;
  102. top: 1px;
  103. width: 50px;
  104. text-align: center;
  105. height: 38px;
  106. background: #f8f8f8;
  107. .input {
  108. border: 1px solid #e8e8e8;
  109. height: 40px;
  110. padding: 0 44px 0 60px;
  111. width: 326px;
  112. }
  113. }
  114. .input {
  115. border: 1px solid #e8e8e8;
  116. height: 40px;
  117. padding: 0 44px 0 60px;
  118. width: 326px;
  119. }
  120. &.code {
  121. .input {
  122. padding-right: 10px;
  123. width: 150px;
  124. }
  125. }
  126. }
  127. .cancel {
  128. position: absolute;
  129. right: 0;
  130. top: 1px;
  131. width: 44px;
  132. height: 38px;
  133. cursor: pointer;
  134. .show_pwd {
  135. &:before {
  136. top: 7px;
  137. left: 13px;
  138. }
  139. }
  140. :before {
  141. position: absolute;
  142. top: 9px;
  143. left: 14px;
  144. }
  145. }
  146. .send_code {
  147. position: absolute;
  148. right: 0;
  149. top: 0;
  150. background: #f9f9f9;
  151. border: 1px solid #eee;
  152. border-left: 0;
  153. width: 80px;
  154. height: 40px;
  155. line-height: 40px;
  156. text-align: center;
  157. color: #000;
  158. :hover {
  159. color: $colorMain;
  160. }
  161. }
  162. .error {
  163. margin-top: 10px;
  164. position: relative;
  165. color: $colorMain;
  166. height: 16px;
  167. line-height: 16px;
  168. }
  169. .login_btn {
  170. display: block;
  171. margin-top: 35px;
  172. background: $colorMain;
  173. color: #fff;
  174. text-align: center;
  175. border-radius: 2px;
  176. height: 45px;
  177. line-height: 45px;
  178. font-size: 18px;
  179. letter-spacing: 0px;
  180. &:hover {
  181. opacity: 0.9;
  182. }
  183. }
  184. }
  185. }
  186. }
  187. }
  188. }