index.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. .trace-box {
  2. background-color: #ffffff;
  3. margin-bottom: 20rpx;
  4. .item {
  5. position: relative;
  6. width: 100vw;
  7. padding: 20rpx 30rpx;
  8. box-sizing: border-box;
  9. .resource{
  10. position: absolute;
  11. padding: 4rpx 14rpx;
  12. background-color: #3874F6;
  13. color: #fff;
  14. font-size: 24rpx;
  15. top: 20rpx;
  16. right: 20rpx;
  17. border-radius: 2rpx;
  18. }
  19. .user {
  20. display: flex;
  21. .portrait {
  22. width: 80rpx;
  23. height: 80rpx;
  24. text-align: center;
  25. line-height: 80rpx;
  26. border-radius: 50%;
  27. font-size: 28rpx;
  28. font-family: PingFang SC-Regular, PingFang SC;
  29. color: #FFFFFF;
  30. margin-right: 20rpx;
  31. flex-shrink: 0;
  32. }
  33. .content {
  34. .label {
  35. font-size: 30rpx;
  36. font-family: PingFang SC-Regular, PingFang SC;
  37. color: #333333;
  38. text {
  39. font-size: 24rpx;
  40. font-family: PingFang SC-Regular, PingFang SC;
  41. color: #999999;
  42. }
  43. }
  44. .exp {
  45. margin-top: 8rpx;
  46. font-size: 24rpx;
  47. font-family: PingFang SC-Regular, PingFang SC;
  48. color: #333333;
  49. }
  50. }
  51. }
  52. .text {
  53. width: 100%;
  54. font-size: 28rpx;
  55. font-family: PingFang SC-Regular, PingFang SC;
  56. color: #666666;
  57. word-break: break-all;
  58. margin-top: 20rpx;
  59. }
  60. .type {
  61. font-size: 24rpx;
  62. font-family: PingFang SC-Regular, PingFang SC;
  63. color: #999999;
  64. margin-top: 20rpx;
  65. text {
  66. font-size: 24rpx;
  67. color: #333333;
  68. }
  69. }
  70. }
  71. .bottom {
  72. display: flex;
  73. justify-content: flex-end;
  74. align-items: center;
  75. width: 100%;
  76. height: 80rpx;
  77. background: #FFFFFF;
  78. border-top: 1px solid #DDDDDD;
  79. navigator {
  80. padding: 0 20rpx;
  81. line-height: 80rpx;
  82. .iconfont {
  83. font-size: 28rpx;
  84. color: #999999;
  85. margin-right: 8rpx;
  86. }
  87. font-size: 24rpx;
  88. font-family: PingFang SC-Regular,
  89. PingFang SC;
  90. color: #333333;
  91. }
  92. }
  93. }
  94. .text-label {
  95. color: #999999 !important;
  96. }
  97. .createdate {
  98. display: flex;
  99. align-items: center;
  100. font-size: 24rpx;
  101. color: #3874F6;
  102. margin-bottom: 20rpx;
  103. }
  104. .createdate::before {
  105. content: '';
  106. display: inline-block;
  107. width: 16rpx;
  108. height: 16rpx;
  109. border-radius: 50%;
  110. border: 4rpx solid #3874F6;
  111. box-sizing: border-box;
  112. margin-right: 8rpx;
  113. }