negotiation-history.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. .avatar {
  29. width: 72rpx;
  30. height: 72rpx;
  31. border-radius: 50%;
  32. margin-right: 20rpx;
  33. flex-shrink: 0;
  34. display: flex;
  35. align-items: center;
  36. justify-content: center;
  37. font-size: 22rpx;
  38. font-weight: 500;
  39. color: #fff;
  40. }
  41. .avatar--user {
  42. background-color: #1d6ff6;
  43. }
  44. .avatar--platform {
  45. background-color: #ff8c00;
  46. }
  47. .user-info {
  48. display: flex;
  49. flex-direction: column;
  50. justify-content: center;
  51. }
  52. .user-name {
  53. font-size: 30rpx;
  54. color: #333;
  55. font-weight: 500;
  56. margin-bottom: 8rpx;
  57. }
  58. .action-time {
  59. font-size: 24rpx;
  60. color: #999;
  61. }
  62. /* Content */
  63. .item-content {
  64. padding-left: 92rpx; /* Align with text, after avatar (72 + 20) */
  65. margin-top: -10rpx;
  66. }
  67. /* Platform Styles */
  68. .platform-line {
  69. font-size: 30rpx;
  70. color: #333;
  71. line-height: 1.6;
  72. margin-bottom: 12rpx;
  73. font-weight: 500;
  74. &:last-child {
  75. margin-bottom: 0;
  76. }
  77. }
  78. /* User Styles */
  79. .action-title {
  80. font-size: 30rpx;
  81. color: #333;
  82. font-weight: 500;
  83. margin-bottom: 16rpx;
  84. }
  85. .detail-line {
  86. font-size: 28rpx;
  87. line-height: 1.6;
  88. margin-bottom: 6rpx;
  89. display: flex;
  90. }
  91. .detail-label {
  92. color: #333;
  93. flex-shrink: 0;
  94. }
  95. .detail-value {
  96. color: #333;
  97. flex: 1;
  98. word-break: break-all;
  99. }
  100. /* Image Grid */
  101. .image-grid {
  102. display: flex;
  103. flex-wrap: wrap;
  104. gap: 16rpx;
  105. margin-top: 24rpx;
  106. }
  107. .grid-img-wrap {
  108. width: 120rpx;
  109. height: 120rpx;
  110. border-radius: 8rpx;
  111. overflow: hidden;
  112. background-color: #f5f5f5;
  113. display: flex;
  114. align-items: center;
  115. justify-content: center;
  116. }
  117. .grid-img {
  118. width: 100%;
  119. height: 100%;
  120. }
  121. .grid-placeholder {
  122. width: 100%;
  123. height: 100%;
  124. display: flex;
  125. align-items: center;
  126. justify-content: center;
  127. background-color: #e8e8e8;
  128. }