forgetPassword.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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. }
  61. .login {
  62. width: 1200px;
  63. height: 100%;
  64. margin: auto;
  65. z-index: 99;
  66. display: flex;
  67. align-items: center;
  68. justify-content: flex-end;
  69. position: relative;
  70. .login_box {
  71. position: relative;
  72. z-index: 10000;
  73. background: #fff;
  74. padding: 10px;
  75. .top {
  76. margin-top: 20px;
  77. padding: 0 20px;
  78. display: flex;
  79. width: 356px;
  80. cursor: default;
  81. .item1 {
  82. flex: 1;
  83. text-align: center;
  84. font-size: 18px;
  85. color: #666;
  86. position: relative;
  87. }
  88. }
  89. .center {
  90. padding: 30px 30px 40px;
  91. .item {
  92. position: relative;
  93. margin-top: 15px;
  94. border-radius: 2px;
  95. &:first-child {
  96. margin-top: 0;
  97. }
  98. .icon {
  99. position: absolute;
  100. left: 1px;
  101. top: 1px;
  102. width: 50px;
  103. text-align: center;
  104. height: 38px;
  105. background: #f8f8f8;
  106. .input {
  107. border: 1px solid #e8e8e8;
  108. height: 40px;
  109. padding: 0 44px 0 60px;
  110. width: 326px;
  111. }
  112. }
  113. .input {
  114. border: 1px solid #e8e8e8;
  115. height: 40px;
  116. padding: 0 44px 0 60px;
  117. width: 326px;
  118. }
  119. &.code {
  120. .input {
  121. padding-right: 10px;
  122. width: 150px;
  123. }
  124. }
  125. }
  126. .cancel {
  127. position: absolute;
  128. right: 0;
  129. top: 1px;
  130. width: 44px;
  131. height: 38px;
  132. cursor: pointer;
  133. .show_pwd {
  134. &:before {
  135. top: 7px;
  136. left: 13px;
  137. }
  138. }
  139. :before {
  140. position: absolute;
  141. top: 9px;
  142. left: 14px;
  143. }
  144. }
  145. .send_code {
  146. position: absolute;
  147. right: 0;
  148. top: 0;
  149. background: #f9f9f9;
  150. border: 1px solid #eee;
  151. border-left: 0;
  152. width: 80px;
  153. height: 40px;
  154. line-height: 40px;
  155. text-align: center;
  156. color: #000;
  157. :hover {
  158. color: $colorMain;
  159. }
  160. }
  161. .error {
  162. margin-top: 10px;
  163. position: relative;
  164. color: $colorMain;
  165. height: 16px;
  166. line-height: 16px;
  167. }
  168. .login_btn {
  169. display: block;
  170. margin-top: 35px;
  171. background: $colorMain;
  172. color: #fff;
  173. text-align: center;
  174. border-radius: 2px;
  175. height: 45px;
  176. line-height: 45px;
  177. font-size: 18px;
  178. letter-spacing: 0px;
  179. &:hover {
  180. opacity: 0.9;
  181. }
  182. }
  183. }
  184. }
  185. }
  186. }
  187. }