Krishya | 3dc6b35 | 2025-06-07 19:02:25 +0800 | [diff] [blame] | 1 | .seed-rating { |
| 2 | display: flex; |
| 3 | align-items: center; |
| 4 | gap: 8px; |
| 5 | font-size: 18px; |
| 6 | } |
| 7 | |
| 8 | .star { |
| 9 | cursor: pointer; |
| 10 | color: #ccc; |
| 11 | font-size: 24px; |
| 12 | transition: color 0.3s; |
| 13 | } |
| 14 | |
| 15 | .star.active { |
| 16 | color: rgba(240, 184, 62, 0.916); |
| 17 | } |
| 18 | |
| 19 | .thank-you { |
| 20 | margin-left: 10px; |
| 21 | font-size: 14px; |
| 22 | color: rgba(222, 91, 111, 0.982); |
22301009 | 207e2db | 2025-06-09 00:27:28 +0800 | [diff] [blame] | 23 | } |
| 24 | .star.hover { |
| 25 | color: rgba(240, 184, 62, 0.916); /* 亮黄色 */ |
Krishya | 3dc6b35 | 2025-06-07 19:02:25 +0800 | [diff] [blame] | 26 | } |
22301009 | 207e2db | 2025-06-09 00:27:28 +0800 | [diff] [blame] | 27 | |