blob: 641a4beb17386e74b4a913aa52c6489ffb2576db [file] [log] [blame]
Krishyac0f7e9b2025-04-22 15:28:28 +08001.seed-detail-page {
Krishyaf1d0ea82025-05-03 17:01:58 +08002 background: linear-gradient(180deg, #5F4437, #823c3c);
Krishyac0f7e9b2025-04-22 15:28:28 +08003 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;
Krishyaf1d0ea82025-05-03 17:01:58 +080020 color: #4A3B34;
Krishyac0f7e9b2025-04-22 15:28:28 +080021}
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 {
Krishyaf1d0ea82025-05-03 17:01:58 +080071 background-color: #5F4437;
Krishyac0f7e9b2025-04-22 15:28:28 +080072}
73
74.comments-section {
75 margin-top: 20px;
76}
77
78.comments-section h3 {
79 margin-bottom: 10px;
80 font-size: 20px;
Krishyaf1d0ea82025-05-03 17:01:58 +080081 color: #4A3B34;
Krishyac0f7e9b2025-04-22 15:28:28 +080082}
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}
223010095b28c672025-04-10 20:12:45 +0800121