register.scss 2.6 KB

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