index.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. @keyframes title-animation {
  2. 0% {
  3. font-size: 32rpx;
  4. }
  5. 100% {
  6. font-size: 36rpx;
  7. }
  8. }
  9. .login-wrap {
  10. padding: 50rpx 34rpx;
  11. min-height: 500rpx;
  12. background-color: #fff;
  13. border-radius: 20rpx 20rpx 0 0;
  14. }
  15. .head-box {
  16. .head-title {
  17. min-width: 160rpx;
  18. font-size: 36rpx;
  19. font-weight: bold;
  20. color: #333333;
  21. line-height: 36rpx;
  22. }
  23. .head-title-active {
  24. width: 160rpx;
  25. font-size: 32rpx;
  26. font-weight: 600;
  27. color: #999;
  28. line-height: 36rpx;
  29. }
  30. .head-title-animation {
  31. animation-name: title-animation;
  32. animation-duration: 0.1s;
  33. animation-timing-function: ease-out;
  34. animation-fill-mode: forwards;
  35. }
  36. .head-title-line {
  37. position: relative;
  38. &::before {
  39. content: '';
  40. width: 1rpx;
  41. height: 34rpx;
  42. background-color: #e4e7ed;
  43. position: absolute;
  44. left: -30rpx;
  45. top: 50%;
  46. transform: translateY(-50%);
  47. }
  48. }
  49. .head-subtitle {
  50. font-size: 26rpx;
  51. font-weight: 400;
  52. color: #afb6c0;
  53. text-align: left;
  54. display: flex;
  55. }
  56. }
  57. // .code-btn[disabled] {
  58. // background-color: #fff;
  59. // }
  60. .code-btn-start {
  61. width: 160rpx;
  62. height: 56rpx;
  63. line-height: normal;
  64. border: 2rpx solid var(--ui-BG-Main);
  65. border-radius: 28rpx;
  66. font-size: 26rpx;
  67. font-weight: 400;
  68. color: var(--ui-BG-Main);
  69. opacity: 1;
  70. }
  71. .forgot-btn {
  72. width: 160rpx;
  73. line-height: 56rpx;
  74. font-size: 30rpx;
  75. font-weight: 500;
  76. color: #999;
  77. }
  78. .login-btn-start {
  79. width: 158rpx;
  80. height: 56rpx;
  81. line-height: normal;
  82. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  83. border-radius: 28rpx;
  84. font-size: 26rpx;
  85. font-weight: 500;
  86. color: #fff;
  87. }
  88. .type-btn {
  89. padding: 20rpx;
  90. margin: 40rpx auto;
  91. width: 200rpx;
  92. font-size: 30rpx;
  93. font-weight: 500;
  94. color: #999999;
  95. }
  96. .auto-login-box {
  97. width: 100%;
  98. .auto-login-btn {
  99. width: 68rpx;
  100. height: 68rpx;
  101. border-radius: 50%;
  102. margin: 0 30rpx;
  103. }
  104. .auto-login-img {
  105. width: 68rpx;
  106. height: 68rpx;
  107. border-radius: 50%;
  108. }
  109. }
  110. .agreement-box {
  111. margin: 80rpx auto 0;
  112. .protocol-check {
  113. transform: scale(0.7);
  114. }
  115. .agreement-text {
  116. font-size: 26rpx;
  117. font-weight: 500;
  118. color: #999999;
  119. .tcp-text {
  120. color: var(--ui-BG-Main);
  121. }
  122. }
  123. }
  124. // 修改密码
  125. .editPwd-btn-box {
  126. .save-btn {
  127. width: 690rpx;
  128. line-height: 70rpx;
  129. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  130. border-radius: 35rpx;
  131. font-size: 28rpx;
  132. font-weight: 500;
  133. color: #ffffff;
  134. }
  135. .forgot-btn {
  136. width: 690rpx;
  137. line-height: 70rpx;
  138. font-size: 28rpx;
  139. font-weight: 500;
  140. color: #999999;
  141. }
  142. }