index.scss 2.7 KB

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