register.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. @import "./theme.scss";
  2. .sld_login {
  3. .sld_login_header {
  4. height: 88px;
  5. background: #F6F8FA;
  6. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
  7. .content {
  8. height: 100%;
  9. display: flex;
  10. position: relative;
  11. align-items: center;
  12. width: 1440px;
  13. margin: 0 auto;
  14. .l_logo {
  15. height: 100%;
  16. cursor: pointer;
  17. width: 200px;
  18. .img {
  19. height: 100%;
  20. width: 100%;
  21. object-fit: cover;
  22. }
  23. .text {
  24. font-size: 0;
  25. display: inline-block;
  26. vertical-align: top;
  27. line-height: 48px;
  28. margin-left: 5px;
  29. }
  30. }
  31. .r_register_wrap {
  32. font-size: 14px;
  33. text-align: right;
  34. position: absolute;
  35. right: 0;
  36. .go_login_btn, .go_register_btn {
  37. font-size: 13px;
  38. display: inline-block;
  39. padding: 6px 22px;
  40. background: $colorMain;
  41. color: #fff;
  42. border-radius: 30px;
  43. margin-left: 7px;
  44. //font-family: Microsoft YaHei;
  45. height: 30px;
  46. line-height: 17px;
  47. }
  48. }
  49. }
  50. }
  51. .sld_login_content {
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: center;
  55. align-items: center;
  56. width: 100%;
  57. height: 750px;
  58. position: relative;
  59. .bg {
  60. position: absolute;
  61. margin: auto;
  62. width: 1920px;
  63. height: 100%;
  64. margin-left: -960px;
  65. left: 50%;
  66. overflow: hidden;
  67. display: block;
  68. object-fit: cover;
  69. }
  70. .login {
  71. width: 1200px;
  72. height: 100%;
  73. margin: auto;
  74. z-index: 99;
  75. display: flex;
  76. align-items: center;
  77. justify-content: flex-end;
  78. position: relative;
  79. .login_box {
  80. display: flex;
  81. flex-direction: column;
  82. width: 487px;
  83. height: 598px;
  84. position: relative;
  85. z-index: 10000;
  86. background: #fff;
  87. // padding: 10px 2px 50px;
  88. .top {
  89. margin-top: 20px;
  90. display: flex;
  91. width: 100%;
  92. cursor: default;
  93. .item1 {
  94. flex: 1;
  95. text-align: center;
  96. font-weight: bold;
  97. font-size: 27px;
  98. color: #282E30;
  99. position: relative;
  100. cursor: default;
  101. }
  102. }
  103. .bottom {
  104. height: 51px;
  105. background: #fcfcfc;
  106. border-top: 1px solid #eee;
  107. // position: absolute;
  108. width: 100%;
  109. // bottom: 0;
  110. // left: 0;
  111. display: flex;
  112. padding: 0 16px;
  113. box-sizing: border-box;
  114. &.row-reverse {
  115. flex-direction: row-reverse;
  116. }
  117. a {
  118. display: block;
  119. line-height: 50px;
  120. margin-right: 10px;
  121. // font-weight: bold;
  122. font-size: 14px;
  123. color: $colorMain;
  124. &:hover {
  125. color: $colorMain;
  126. }
  127. }
  128. img {
  129. width: 28px;
  130. height: 28px;
  131. cursor: pointer;
  132. }
  133. }
  134. }
  135. }
  136. }
  137. }
  138. .isLoading{
  139. opacity: .5!important;
  140. cursor: no-drop;
  141. }