negotiation-history.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. page {
  2. background-color: #f7f8fa;
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. }
  7. .page-container {
  8. flex: 1;
  9. }
  10. .history-list {
  11. padding-bottom: 40rpx;
  12. }
  13. .history-item {
  14. background-color: #fff;
  15. padding: 32rpx;
  16. position: relative;
  17. margin-bottom: 20rpx;
  18. &:last-child {
  19. margin-bottom: 0;
  20. }
  21. }
  22. /* Header */
  23. .item-header {
  24. display: flex;
  25. align-items: center;
  26. margin-bottom: 20rpx;
  27. }
  28. .user-avatar {
  29. width: 72rpx;
  30. height: 72rpx;
  31. border-radius: 50%;
  32. background-color: #e8e8e8;
  33. margin-right: 20rpx;
  34. flex-shrink: 0;
  35. }
  36. .user-info {
  37. display: flex;
  38. flex-direction: column;
  39. justify-content: center;
  40. }
  41. .user-name {
  42. font-size: 30rpx;
  43. color: #333;
  44. font-weight: 500;
  45. margin-bottom: 8rpx;
  46. }
  47. .action-time {
  48. font-size: 24rpx;
  49. color: #999;
  50. }
  51. /* Content */
  52. .item-content {
  53. padding-left: 92rpx; /* Align with text, after avatar (72 + 20) */
  54. margin-top: -10rpx;
  55. }
  56. /* Platform Styles */
  57. .platform-line {
  58. font-size: 30rpx;
  59. color: #333;
  60. line-height: 1.6;
  61. margin-bottom: 12rpx;
  62. font-weight: 500;
  63. &:last-child {
  64. margin-bottom: 0;
  65. }
  66. }
  67. /* User Styles */
  68. .action-title {
  69. font-size: 30rpx;
  70. color: #333;
  71. font-weight: 500;
  72. margin-bottom: 16rpx;
  73. }
  74. .detail-line {
  75. font-size: 28rpx;
  76. line-height: 1.6;
  77. margin-bottom: 6rpx;
  78. display: flex;
  79. }
  80. .detail-label {
  81. color: #333;
  82. flex-shrink: 0;
  83. }
  84. .detail-value {
  85. color: #333;
  86. flex: 1;
  87. word-break: break-all;
  88. }
  89. /* Image Grid */
  90. .image-grid {
  91. display: flex;
  92. flex-wrap: wrap;
  93. gap: 16rpx;
  94. margin-top: 24rpx;
  95. }
  96. .grid-img-wrap {
  97. width: 120rpx;
  98. height: 120rpx;
  99. border-radius: 8rpx;
  100. overflow: hidden;
  101. background-color: #f5f5f5;
  102. display: flex;
  103. align-items: center;
  104. justify-content: center;
  105. }
  106. .grid-img {
  107. width: 100%;
  108. height: 100%;
  109. }
  110. .grid-placeholder {
  111. width: 100%;
  112. height: 100%;
  113. display: flex;
  114. align-items: center;
  115. justify-content: center;
  116. background-color: #e8e8e8;
  117. }