common.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. .head-revers-back{
  2. font-size: 52rpx;
  3. color: #000;
  4. }
  5. .page-content {
  6. width: 100%;
  7. padding: 30rpx 60rpx 0;
  8. .login-title {
  9. display: block;
  10. font-size: 68rpx;
  11. font-family: PingFang SC, PingFang SC-Bold;
  12. font-weight: 700;
  13. color: #333333;
  14. line-height: 1.2;
  15. letter-spacing: 0.96rpx;
  16. }
  17. .login-content {
  18. display: block;
  19. font-size: 28rpx;
  20. font-family: PingFang SC, PingFang SC-Regular;
  21. font-weight: 400;
  22. color: #808080;
  23. line-height: 1.2;
  24. letter-spacing: 0.56rpx;
  25. padding: 20rpx 0 40rpx;
  26. }
  27. }
  28. .tab-box{
  29. padding-bottom: 44rpx;
  30. }
  31. .tab {
  32. width: 100%;
  33. display: flex;
  34. align-items: center;
  35. padding-top: 46rpx;
  36. .tab-item {
  37. font-size: 30rpx;
  38. font-family: PingFang SC, PingFang SC-Bold;
  39. font-weight: 700;
  40. color: #1a1a1a;
  41. line-height: 38rpx;
  42. letter-spacing: 0.6rpx;
  43. +.tab-item {
  44. margin-left: 50rpx;
  45. }
  46. }
  47. .active-tab-item {
  48. color: $Theme-Color;
  49. position: relative;
  50. &::before {
  51. position: absolute;
  52. left: 0;
  53. bottom: -11rpx;
  54. content: '';
  55. width: 100%;
  56. height: 6rpx;
  57. border-radius: 2rpx;
  58. background-color: $Theme-Color;
  59. }
  60. }
  61. }
  62. .login-form{
  63. width: 100%;
  64. .form-item{
  65. width: 100%;
  66. height: 90rpx;
  67. padding: 0 20rpx;
  68. display: flex;
  69. align-items: center;
  70. background-color: $box-bg;
  71. border-radius: 6rpx;
  72. margin-top: 20rpx;
  73. &:first-child{
  74. margin-top: 0;
  75. }
  76. .form-lable{
  77. width: 140rpx;
  78. height: 100%;
  79. font-size: 24rpx;
  80. flex-wrap: 700;
  81. display: flex;
  82. align-items: center;
  83. .form-lable-icon{
  84. margin-left: 4px;
  85. font-size: 18rpx;
  86. }
  87. }
  88. .form-input{
  89. flex: 1;
  90. height: 100%;
  91. font-size: 28rpx;
  92. }
  93. .form-input-place{
  94. font-size: 28rpx;
  95. color: #938989;
  96. }
  97. }
  98. .form-agreement{
  99. width: 100%;
  100. display: flex;
  101. align-items: center;
  102. font-size: 26rpx;
  103. color: #938989;
  104. padding: 26rpx 0;
  105. .agreement-confirm{
  106. width: 30rpx;
  107. height: 30rpx;
  108. background-color: $box-bg;
  109. margin-right: 10rpx;
  110. border-radius: 6rpx;
  111. .confirm-icon{
  112. width: 100%;
  113. height: 100%;
  114. background-color: $Theme-Color;
  115. color: #fff;
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. font-size: 24rpx;
  120. }
  121. }
  122. .agreement-name{
  123. color: $Theme-Color;
  124. }
  125. }
  126. .form-btn{
  127. width: 100%;
  128. height:90rpx;
  129. background-color: $Theme-Color;
  130. border-radius: 8rpx;
  131. text-align: center;
  132. line-height: 90rpx;
  133. color: #fff;
  134. font-size: 32rpx;
  135. font-weight: bold;
  136. }
  137. }
  138. .form-hint{
  139. width: 100%;
  140. padding: 46rpx 0 0;
  141. font-size: 24rpx;
  142. line-height: 1.2;
  143. color: #c1c1c1;
  144. display: flex;
  145. justify-content: center;
  146. align-items: stretch;
  147. .hint-btn{
  148. color: $Theme-Color;
  149. }
  150. .form-hint-link{
  151. margin: 0 10px;
  152. width: 1rpx;
  153. background-color: #cfcfcf;
  154. }
  155. }
  156. .code-box{
  157. width: 100%;
  158. margin-top: 50rpx;
  159. .code-hint{
  160. margin-top: 50rpx;
  161. font-size: 28rpx;
  162. display: inline-block;
  163. color: #666;
  164. }
  165. }