与牧同行-兽医端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

145 lines
2.4 KiB

  1. .page {
  2. min-height: 100vh;
  3. background-color: #ffffff;
  4. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  5. }
  6. /* 列表容器 - 直接贴边 */
  7. .list-container {
  8. padding: 0 16px;
  9. }
  10. /* 评价卡片 - 极简风格 */
  11. .evaluation-card {
  12. background-color: #ffffff;
  13. padding: 20px 0;
  14. position: relative;
  15. transition: background-color 0.2s ease;
  16. }
  17. .evaluation-card:active {
  18. background-color: #f8f9fc;
  19. }
  20. /* 用户信息行 */
  21. .user-row {
  22. display: flex;
  23. align-items: center;
  24. margin-bottom: 12px;
  25. }
  26. /* 头像区域 */
  27. .avatar-wrapper {
  28. margin-right: 12px;
  29. }
  30. .avatar {
  31. width: 48px;
  32. height: 48px;
  33. border-radius: 50%;
  34. background-color: #f0f2f6;
  35. overflow: hidden;
  36. flex-shrink: 0;
  37. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  38. }
  39. .avatar-placeholder {
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. }
  44. .avatar-text {
  45. font-size: 20px;
  46. font-weight: 500;
  47. color: #ffffff;
  48. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  49. }
  50. /* 用户信息区 */
  51. .user-info {
  52. flex: 1;
  53. }
  54. .name-row {
  55. display: flex;
  56. align-items: baseline;
  57. justify-content: space-between;
  58. margin-bottom: 4px;
  59. }
  60. .user-name {
  61. font-size: 16px;
  62. font-weight: 600;
  63. color: #1e2a3a;
  64. letter-spacing: -0.2px;
  65. }
  66. .time {
  67. font-size: 12px;
  68. color: #98a2b3;
  69. font-weight: 400;
  70. }
  71. /* 评价内容 */
  72. .content-section {
  73. margin-bottom: 12px;
  74. padding-right: 8px;
  75. }
  76. .content-text {
  77. font-size: 15px;
  78. line-height: 1.5;
  79. color: #1e2a3a;
  80. word-break: break-word;
  81. font-weight: 400;
  82. }
  83. /* 卡片底部分隔线 */
  84. .card-footer {
  85. margin-top: 8px;
  86. }
  87. .divider {
  88. height: 1px;
  89. background-color: #eef1f4;
  90. width: 100%;
  91. }
  92. /* 空状态 */
  93. .empty-state {
  94. display: flex;
  95. flex-direction: column;
  96. align-items: center;
  97. justify-content: center;
  98. padding: 80px 20px;
  99. background-color: #ffffff;
  100. }
  101. .empty-icon {
  102. width: 140px;
  103. height: 140px;
  104. margin-bottom: 20px;
  105. opacity: 0.6;
  106. }
  107. .empty-text {
  108. font-size: 15px;
  109. color: #9aa6b8;
  110. font-weight: 400;
  111. }
  112. /* 加载更多 */
  113. .load-more {
  114. text-align: center;
  115. padding: 24px 0 30px;
  116. }
  117. .load-more-text {
  118. font-size: 12px;
  119. color: #b8c0cc;
  120. font-weight: 400;
  121. }