register.scss 2.9 KB

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