register.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. }
  64. .login {
  65. width: 1200px;
  66. height: 100%;
  67. margin: auto;
  68. z-index: 99;
  69. display: flex;
  70. align-items: center;
  71. justify-content: flex-end;
  72. position: relative;
  73. .login_box {
  74. position: relative;
  75. z-index: 10000;
  76. background: #fff;
  77. padding: 10px 2px 50px;
  78. .top {
  79. margin-top: 20px;
  80. padding: 0 20px;
  81. display: flex;
  82. width: 356px;
  83. cursor: default;
  84. .item1 {
  85. flex: 1;
  86. text-align: center;
  87. font-weight: bold;
  88. font-size: 32px;
  89. color: #282E30;
  90. position: relative;
  91. cursor: default;
  92. }
  93. }
  94. .bottom {
  95. height: 51px;
  96. background: #fcfcfc;
  97. border-top: 1px solid #eee;
  98. position: absolute;
  99. width: 100%;
  100. bottom: 0;
  101. left: 0;
  102. display: flex;
  103. padding: 0 16px;
  104. box-sizing: border-box;
  105. &.row-reverse {
  106. flex-direction: row-reverse;
  107. }
  108. a {
  109. display: block;
  110. line-height: 50px;
  111. margin-right: 10px;
  112. font-weight: bold;
  113. font-size: 14px;
  114. color: #999;
  115. &:hover {
  116. color: $colorMain;
  117. }
  118. }
  119. img {
  120. width: 28px;
  121. height: 28px;
  122. cursor: pointer;
  123. }
  124. }
  125. }
  126. }
  127. }
  128. }
  129. .isLoading{
  130. opacity: .5!important;
  131. cursor: no-drop;
  132. }