22301009 | 1e2aea7 | 2025-06-08 16:35:54 +0800 | [diff] [blame] | 1 | .playlist-detail { |
| 2 | background-color: #fffaf7; /* 和上一页主背景色保持一致 */ |
| 3 | border-radius: 12px; /* 统一圆角 */ |
| 4 | box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* 统一阴影 */ |
| 5 | color: #6b4f3b; /* 主文字颜色,棕色系 */ |
| 6 | } |
| 7 | |
| 8 | .playlist-detail h1 { |
| 9 | font-size: 2rem; |
| 10 | margin-bottom: 16px; |
| 11 | color: #4e342e; /* 深棕色标题 */ |
| 12 | font-weight: 700; |
| 13 | } |
| 14 | |
Krishya | dbfadaa | 2025-06-09 20:33:15 +0800 | [diff] [blame] | 15 | .cover-img { |
22301009 | 1e2aea7 | 2025-06-08 16:35:54 +0800 | [diff] [blame] | 16 | width: 100%; |
| 17 | max-height: 400px; |
| 18 | object-fit: cover; |
| 19 | border-radius: 12px; /* 与容器圆角匹配 */ |
| 20 | margin-bottom: 20px; |
| 21 | box-shadow: 0 4px 12px rgb(107 79 59 / 0.2); /* 柔和阴影 */ |
| 22 | } |
| 23 | |
| 24 | .playlist-detail p { |
| 25 | font-size: 1rem; |
| 26 | line-height: 1.6; |
| 27 | margin-bottom: 20px; |
| 28 | color: #6b4f3b; |
| 29 | } |
| 30 | |
| 31 | .playlist-detail h3 { |
| 32 | font-size: 1.4rem; |
| 33 | margin-bottom: 12px; |
| 34 | color: #4e342e; |
| 35 | font-weight: 600; |
| 36 | } |
| 37 | |
| 38 | .playlist-detail ul { |
| 39 | padding-left: 20px; |
| 40 | list-style: disc; |
| 41 | color: #6b4f3b; |
| 42 | } |
| 43 | |
| 44 | .playlist-detail li { |
| 45 | padding: 6px 0; |
| 46 | border-bottom: 1px solid #e2cfc3; |
| 47 | font-weight: 500; |
| 48 | color: #5d4037; |
| 49 | } |
| 50 | |
| 51 | .playlist-detail li:last-child { |
| 52 | border-bottom: none; |
| 53 | } |
| 54 | |
| 55 | /* 错误提示 */ |
| 56 | .error { |
| 57 | max-width: 600px; |
| 58 | margin: 40px auto; |
| 59 | padding: 20px; |
| 60 | background: #f8d7da; /* 柔和粉棕 */ |
| 61 | color: #a94442; |
| 62 | border: 1px solid #a94442; |
| 63 | border-radius: 12px; |
| 64 | text-align: center; |
| 65 | font-weight: 600; |
| 66 | } |
| 67 | |
| 68 | /* 重试按钮 */ |
| 69 | .retry-button { |
| 70 | margin-top: 12px; |
| 71 | padding: 8px 16px; |
| 72 | background-color: #6b4f3b; |
| 73 | border: none; |
| 74 | border-radius: 8px; |
| 75 | color: #fffaf7; |
| 76 | font-weight: 600; |
| 77 | cursor: pointer; |
| 78 | transition: background-color 0.25s ease; |
| 79 | } |
| 80 | |
| 81 | .retry-button:hover { |
| 82 | background-color: #4b3325; |
| 83 | } |