login.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. .login-register-box {
  2. height: 100vh;
  3. .login-box {
  4. width: 40vw;
  5. position: absolute;
  6. left: 50%;
  7. margin-left: -22vw;
  8. top: 5vh;
  9. .logo {
  10. height: 35vh;
  11. width: 35vh;
  12. }
  13. }
  14. }
  15. .link-icon {
  16. width: 20px;
  17. min-width: 20px;
  18. height: 20px;
  19. border-radius: 10px;
  20. }
  21. .vPic {
  22. width: 33%;
  23. height: 38px;
  24. float: right !important;
  25. background: #ccc;
  26. img {
  27. cursor: pointer;
  28. vertical-align: middle;
  29. }
  30. }
  31. .logo_login {
  32. width: 100px;
  33. }
  34. #userLayout.user-layout-wrapper {
  35. height: 100%;
  36. position: relative;
  37. &.mobile {
  38. .container {
  39. .main {
  40. max-width: 368px;
  41. width: 98%;
  42. }
  43. }
  44. }
  45. .container {
  46. position: relative;
  47. overflow: auto;
  48. width: 100%;
  49. min-height: 100%;
  50. background: #f0f2f5 url(~@/assets/background.svg) no-repeat 50%;
  51. background-size: 100%;
  52. padding: 110px 0 144px;
  53. a {
  54. text-decoration: none;
  55. }
  56. .top {
  57. text-align: center;
  58. margin-top: -40px;
  59. .header {
  60. height: 44px;
  61. line-height: 44px;
  62. margin-bottom: 30px;
  63. .badge {
  64. position: absolute;
  65. display: inline-block;
  66. line-height: 1;
  67. vertical-align: middle;
  68. margin-left: -12px;
  69. margin-top: -10px;
  70. opacity: 0.8;
  71. }
  72. .logo {
  73. height: 44px;
  74. vertical-align: top;
  75. margin-right: 16px;
  76. border-style: none;
  77. }
  78. .title {
  79. font-size: 33px;
  80. color: rgba(0, 0, 0, 0.85);
  81. font-family: Avenir, "Helvetica Neue", Arial, Helvetica, sans-serif;
  82. font-weight: 600;
  83. position: relative;
  84. top: 2px;
  85. }
  86. }
  87. .desc {
  88. font-size: 14px;
  89. color: rgba(0, 0, 0, 0.45);
  90. margin-top: 12px;
  91. }
  92. }
  93. .main {
  94. min-width: 260px;
  95. width: 368px;
  96. margin: 0 auto;
  97. }
  98. .footer {
  99. position: relative;
  100. width: 100%;
  101. padding: 0 20px;
  102. margin: 40px 0 10px;
  103. text-align: center;
  104. .links {
  105. margin-bottom: 8px;
  106. font-size: 14px;
  107. width: 330px;
  108. display: inline-flex;
  109. flex-direction: row;
  110. justify-content: space-between;
  111. padding-right: 40px;
  112. a {
  113. color: rgba(0, 0, 0, 0.45);
  114. transition: all 0.3s;
  115. }
  116. }
  117. .copyright {
  118. color: rgba(0, 0, 0, 0.45);
  119. font-size: 14px;
  120. padding-right: 40px;
  121. }
  122. }
  123. }
  124. }