index.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. .head {
  2. display: flex;
  3. align-items: center;
  4. width: 100vw;
  5. height: 120rpx;
  6. padding: 0 20rpx 0 30rpx;
  7. box-sizing: border-box;
  8. .count {
  9. font-size: 28rpx;
  10. font-family: PingFang SC-Regular, PingFang SC;
  11. color: #333333;
  12. }
  13. .expand {
  14. flex: 1;
  15. display: flex;
  16. align-items: center;
  17. justify-content: flex-end;
  18. .but {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. flex-shrink: 0;
  23. width: 80rpx;
  24. height: 80rpx;
  25. background: #FFFFFF;
  26. border-radius: 8rpx;
  27. border: 2rpx solid #CCCCCC;
  28. margin-left: 20rpx;
  29. color: #666666;
  30. }
  31. }
  32. }
  33. .exp {
  34. margin-top: 8rpx;
  35. font-size: 24rpx;
  36. font-family: PingFang SC-Regular, PingFang SC;
  37. color: #333333;
  38. }
  39. .trace-box {
  40. background-color: #ffffff;
  41. margin-bottom: 20rpx;
  42. .item {
  43. position: relative;
  44. width: 100vw;
  45. padding: 20rpx 30rpx;
  46. box-sizing: border-box;
  47. .resource {
  48. position: absolute;
  49. padding: 4rpx 14rpx;
  50. background-color: #3874F6;
  51. color: #fff;
  52. font-size: 24rpx;
  53. top: 20rpx;
  54. right: 20rpx;
  55. border-radius: 2rpx;
  56. }
  57. .user {
  58. display: flex;
  59. .portrait {
  60. width: 80rpx;
  61. height: 80rpx;
  62. text-align: center;
  63. line-height: 80rpx;
  64. border-radius: 50%;
  65. font-size: 28rpx;
  66. font-family: PingFang SC-Regular, PingFang SC;
  67. color: #FFFFFF;
  68. margin-right: 20rpx;
  69. flex-shrink: 0;
  70. }
  71. .content {
  72. .label {
  73. font-size: 30rpx;
  74. font-family: PingFang SC-Regular, PingFang SC;
  75. color: #333333;
  76. text {
  77. font-size: 24rpx;
  78. font-family: PingFang SC-Regular, PingFang SC;
  79. color: #999999;
  80. }
  81. }
  82. }
  83. .exp {
  84. color: #999999;
  85. }
  86. }
  87. .text {
  88. width: 100%;
  89. font-size: 24rpx;
  90. font-family: PingFang SC-Regular, PingFang SC;
  91. color: #666666;
  92. word-break: break-all;
  93. margin-top: 10rpx;
  94. }
  95. .type {
  96. font-size: 24rpx;
  97. font-family: PingFang SC-Regular, PingFang SC;
  98. color: #999999;
  99. margin-top: 10rpx;
  100. text {
  101. font-size: 24rpx;
  102. color: #333333;
  103. }
  104. }
  105. }
  106. .bottom {
  107. border-top: 1px solid #DDDDDD;
  108. display: flex;
  109. justify-content: space-between;
  110. align-items: center;
  111. width: 100%;
  112. height: 70rpx;
  113. background: #FFFFFF;
  114. box-sizing: border-box;
  115. padding: 0 30rpx;
  116. navigator {
  117. padding: 0 20rpx;
  118. line-height: 70rpx;
  119. border-radius: 8rpx;
  120. .iconfont {
  121. font-size: 28rpx;
  122. color: #999999;
  123. margin-right: 8rpx;
  124. }
  125. font-size: 24rpx;
  126. font-family: PingFang SC-Regular,
  127. PingFang SC;
  128. color: #333333;
  129. }
  130. .comment {
  131. padding: 0 10rpx;
  132. margin-left: -10rpx;
  133. }
  134. }
  135. }
  136. .custom-class {
  137. --search-background-color: #fff !important;
  138. padding-right: 10rpx !important;
  139. }
  140. .createdate {
  141. display: flex;
  142. align-items: center;
  143. font-size: 24rpx;
  144. color: #3874F6;
  145. margin-bottom: 20rpx;
  146. }
  147. .createdate::before {
  148. content: '';
  149. display: inline-block;
  150. width: 16rpx;
  151. height: 16rpx;
  152. border-radius: 50%;
  153. border: 4rpx solid #3874F6;
  154. box-sizing: border-box;
  155. margin-right: 8rpx;
  156. }