index.scss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. width: 100vw;
  44. padding: 20rpx 30rpx;
  45. box-sizing: border-box;
  46. .user {
  47. display: flex;
  48. .portrait {
  49. width: 80rpx;
  50. height: 80rpx;
  51. text-align: center;
  52. line-height: 80rpx;
  53. border-radius: 50%;
  54. font-size: 28rpx;
  55. font-family: PingFang SC-Regular, PingFang SC;
  56. color: #FFFFFF;
  57. margin-right: 20rpx;
  58. flex-shrink: 0;
  59. }
  60. .content {
  61. .label {
  62. font-size: 30rpx;
  63. font-family: PingFang SC-Regular, PingFang SC;
  64. color: #333333;
  65. text {
  66. font-size: 24rpx;
  67. font-family: PingFang SC-Regular, PingFang SC;
  68. color: #999999;
  69. }
  70. }
  71. }
  72. .exp {
  73. color: #999999;
  74. }
  75. }
  76. .text {
  77. width: 100%;
  78. font-size: 24rpx;
  79. font-family: PingFang SC-Regular, PingFang SC;
  80. color: #666666;
  81. word-break: break-all;
  82. margin-top: 10rpx;
  83. }
  84. .type {
  85. font-size: 24rpx;
  86. font-family: PingFang SC-Regular, PingFang SC;
  87. color: #999999;
  88. margin-top: 10rpx;
  89. text {
  90. font-size: 24rpx;
  91. color: #333333;
  92. }
  93. }
  94. }
  95. .bottom {
  96. border-top: 1px solid #DDDDDD;
  97. display: flex;
  98. justify-content: space-between;
  99. align-items: center;
  100. width: 100%;
  101. height: 70rpx;
  102. background: #FFFFFF;
  103. box-sizing: border-box;
  104. padding: 0 30rpx;
  105. navigator {
  106. padding: 0 20rpx;
  107. line-height: 70rpx;
  108. border-radius: 8rpx;
  109. .iconfont {
  110. font-size: 28rpx;
  111. color: #999999;
  112. margin-right: 8rpx;
  113. }
  114. font-size: 24rpx;
  115. font-family: PingFang SC-Regular,
  116. PingFang SC;
  117. color: #333333;
  118. }
  119. .comment {
  120. padding: 0 10rpx;
  121. margin-left: -10rpx;
  122. }
  123. }
  124. }
  125. .custom-class {
  126. --search-background-color: #fff !important;
  127. padding-right: 10rpx !important;
  128. }
  129. .createdate {
  130. display: flex;
  131. align-items: center;
  132. font-size: 24rpx;
  133. color: #3874F6;
  134. margin-bottom: 20rpx;
  135. }
  136. .createdate::before {
  137. content: '';
  138. display: inline-block;
  139. width: 16rpx;
  140. height: 16rpx;
  141. border-radius: 50%;
  142. border: 4rpx solid #3874F6;
  143. box-sizing: border-box;
  144. margin-right: 8rpx;
  145. }