company.scss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. .page-container {
  2. height: 100vh;
  3. display: flex;
  4. flex-direction: column;
  5. justify-content: space-between;
  6. font-family: DM Sans;
  7. font-style: Regular;
  8. // 导航栏"跳过"按钮
  9. .nav-bar-right-btn {
  10. color: rgba(51, 51, 51, 1);
  11. font-size: 20rpx;
  12. font-weight: 400;
  13. line-height: 52rpx;
  14. text-align: right;
  15. }
  16. .content {
  17. flex: 1;
  18. overflow-y: auto;
  19. padding: 24rpx 40rpx;
  20. font-size: 24rpx;
  21. font-weight: 400;
  22. line-height: 32rpx;
  23. color: rgba(102, 102, 102, 1);
  24. .num-title {
  25. color: rgba(1, 107, 246, 1);
  26. margin-bottom: 20rpx;
  27. text {
  28. font-size: 28rpx;
  29. font-weight: 400;
  30. line-height: 60rpx;
  31. }
  32. .current-num {
  33. font-size: 48rpx;
  34. font-weight: 700;
  35. line-height: 60rpx;
  36. }
  37. }
  38. .main-title {
  39. color: rgba(51, 51, 51, 1);
  40. font-size: 36rpx;
  41. font-weight: 700;
  42. line-height: 60rpx;
  43. margin-bottom: 20rpx;
  44. }
  45. .section {
  46. margin-top: 20rpx;
  47. .required {
  48. color: #FF0027;
  49. }
  50. .title {
  51. color: rgba(31, 44, 55, 1);
  52. font-size: 28rpx;
  53. font-weight: 500;
  54. line-height: 44rpx;
  55. margin-bottom: 16rpx;
  56. }
  57. .input-wrapper {
  58. display: flex;
  59. align-items: center;
  60. justify-content: space-between;
  61. box-sizing: border-box;
  62. border: 1px solid rgba(227, 231, 236, 1);
  63. border-radius: 24px;
  64. padding: 11rpx 32rpx;
  65. .placeholder-class,
  66. .input,
  67. .input-content{
  68. color: rgba(153, 153, 153, 1);
  69. font-size: 24rpx;
  70. font-weight: 500;
  71. line-height: 48rpx;
  72. }
  73. .input-content {
  74. margin-right: 12rpx;
  75. }
  76. .flex-1 {
  77. flex: 1;
  78. text-align: center;
  79. }
  80. }
  81. .tags-placeholder {
  82. line-height: 52rpx;
  83. color: #999;
  84. }
  85. }
  86. .upload-wrapper {
  87. margin: 20rpx 0;
  88. .logo {
  89. width: 64rpx;
  90. height: 64rpx;
  91. border: 1px solid rgba(254, 254, 254, 1);
  92. border-radius: 50%;
  93. margin-right: 20rpx;
  94. }
  95. .tip-text {
  96. color: rgba(1, 107, 246, 1);
  97. font-size: 20rpx;
  98. }
  99. }
  100. .select-button-wrapper {
  101. display: flex;
  102. align-items: center;
  103. justify-content: space-between;
  104. gap: 24rpx;
  105. .select-button {
  106. flex: 1;
  107. padding: 12rpx 48rpx;
  108. border-radius: 10rpx;
  109. background: rgba(245, 248, 254, 1);
  110. border: 1px solid rgba(245, 248, 254, 1);
  111. color: rgba(153, 153, 153, 1);
  112. font-size: 28rpx;
  113. font-weight: 400;
  114. line-height: 44rpx;
  115. text-align: center;
  116. box-sizing: border-box;
  117. &.select-active-button {
  118. border: 1px solid rgba(1, 107, 246, 1);
  119. background: rgba(1, 107, 246, 0.1);
  120. color: rgba(1, 107, 246, 1);
  121. }
  122. }
  123. }
  124. .tags {
  125. display: flex;
  126. flex-wrap: wrap;
  127. gap: 8rpx;
  128. padding: 9rpx 0;
  129. .tag {
  130. max-width: 544rpx;
  131. padding: 8rpx;
  132. border-radius: 8rpx;
  133. background: rgba(153, 153, 153, 0.1);
  134. border: 0.5px solid rgba(153, 153, 153, 0.1);
  135. color: rgba(102, 102, 102, 1);
  136. font-size: 20rpx;
  137. font-weight: 400;
  138. line-height: 1;
  139. overflow: hidden;
  140. text-overflow: ellipsis;
  141. white-space: nowrap;
  142. }
  143. .active-tag {
  144. border-color: rgba(1, 107, 246, 1);
  145. color: rgba(1, 107, 246, 1);
  146. background: rgba(1, 107, 246, 0.1);
  147. }
  148. }
  149. }
  150. // 底部按钮
  151. .fixed-button {
  152. padding: 28rpx 40rpx;
  153. box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.04);
  154. .button {
  155. flex-shrink: 0;
  156. border-radius: 999px;
  157. box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.04);
  158. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  159. color: rgba(255, 255, 255, 1);
  160. font-family: DM Sans;
  161. font-size: 32rpx;
  162. font-weight: 400;
  163. line-height: 48rpx;
  164. display: flex;
  165. justify-content: center;
  166. align-items: center;
  167. padding: 16rpx 32rpx;
  168. box-sizing: border-box;
  169. }
  170. }
  171. }