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