Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 1 | .seed-detail-page { |
Krishya | 57cc17b | 2025-05-26 16:43:34 +0800 | [diff] [blame^] | 2 | background: #333; |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 3 | font-family: 'Helvetica Neue', sans-serif; |
| 4 | color: #333; |
| 5 | } |
| 6 | |
| 7 | .seed-detail { |
| 8 | background-color: #e9ded2; |
| 9 | border-radius: 16px; |
| 10 | max-width: 960px; |
| 11 | margin: 0 auto; |
| 12 | margin-top: 40px; |
| 13 | padding: 24px 32px; |
| 14 | } |
| 15 | |
| 16 | .seed-detail h1 { |
| 17 | font-size: 24px; |
| 18 | font-weight: bold; |
| 19 | margin-bottom: 16px; |
Krishya | f1d0ea8 | 2025-05-03 17:01:58 +0800 | [diff] [blame] | 20 | color: #4A3B34; |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | .seed-header-container { |
| 24 | display: flex; |
| 25 | justify-content: space-between; |
| 26 | align-items: flex-start; |
| 27 | } |
| 28 | |
| 29 | .seed-info { |
| 30 | flex: 1; |
| 31 | } |
| 32 | |
| 33 | .seed-basic-info p, |
| 34 | .seed-media-info p { |
| 35 | font-size: 16px; |
| 36 | margin: 6px 0; |
| 37 | } |
| 38 | |
| 39 | .cover-image { |
| 40 | width: 200px; |
| 41 | height: auto; |
| 42 | margin-left: 20px; |
| 43 | border-radius: 8px; |
| 44 | } |
| 45 | |
| 46 | .comment-options { |
| 47 | margin-top: 8px; |
| 48 | display: flex; |
| 49 | justify-content: flex-end; /* 将 space-between 改为 flex-end */ |
| 50 | } |
| 51 | |
| 52 | .action-buttons { |
| 53 | justify-content: flex-end; /*靠右对齐*/ |
| 54 | display: flex; |
| 55 | gap: 10px; |
| 56 | margin-bottom: 20px; |
| 57 | } |
| 58 | |
| 59 | .btn { |
| 60 | justify-content: flex-end; /*靠右对齐*/ |
| 61 | padding: 6px 14px; |
| 62 | background-color: #BA929A; |
| 63 | color: #fff; |
| 64 | border: none; |
| 65 | border-radius: 6px; |
| 66 | font-size: 14px; |
| 67 | cursor: pointer; |
| 68 | } |
| 69 | |
| 70 | .btn:hover { |
Krishya | f1d0ea8 | 2025-05-03 17:01:58 +0800 | [diff] [blame] | 71 | background-color: #5F4437; |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | .comments-section { |
| 75 | margin-top: 20px; |
| 76 | } |
| 77 | |
| 78 | .comments-section h3 { |
| 79 | margin-bottom: 10px; |
| 80 | font-size: 20px; |
Krishya | f1d0ea8 | 2025-05-03 17:01:58 +0800 | [diff] [blame] | 81 | color: #4A3B34; |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | .comments-list { |
| 85 | border-top: 1px solid #ccc; |
| 86 | padding-top: 10px; |
| 87 | } |
| 88 | |
| 89 | .comment { |
| 90 | border-bottom: 1px solid #ccc; |
| 91 | padding: 10px 0; |
| 92 | } |
| 93 | |
| 94 | .comment-user { |
| 95 | font-weight: bold; |
| 96 | margin-bottom: 5px; |
| 97 | } |
| 98 | |
| 99 | .comment-content { |
| 100 | margin: 0; |
| 101 | } |
| 102 | |
| 103 | .add-comment-form { |
| 104 | margin-top: 10px; |
| 105 | } |
| 106 | |
| 107 | .add-comment-form textarea { |
| 108 | width: 100%; |
| 109 | padding: 10px; |
| 110 | resize: vertical; |
| 111 | min-height: 80px; |
| 112 | border: 1px solid #bbb; |
| 113 | border-radius: 6px; |
| 114 | margin-bottom: 10px; |
| 115 | } |
| 116 | |
| 117 | .error-text { |
| 118 | color: #f00; |
| 119 | text-align: center; |
| 120 | } |
22301009 | 5b28c67 | 2025-04-10 20:12:45 +0800 | [diff] [blame] | 121 | |