blob: 37cbe4d0634f59f48a662193cfff2dd46c983bf6 [file] [log] [blame]
LaoeGaociee7c5772025-05-28 12:34:47 +08001.thread-detail {
2 max-width: 1200px;
3 margin: 0 auto;
4 padding: 2rem;
5
6 // 帖子头部
7 .thread-header {
8 display: flex;
9 justify-content: space-between;
10 align-items: center;
11 margin-bottom: 2rem;
12
13 .user-info {
14 display: flex;
15 align-items: center;
16 gap: 1rem;
17
18 .user-meta {
19 h3 {
20 margin: 0;
21 font-size: 1.25rem;
22 color: #2d3748;
23 }
24
25 span {
26 color: #718096;
27 font-size: 0.875rem;
28 }
29 }
30 }
31
32 .post-time {
33 color: #718096;
34 font-size: 0.875rem;
35 }
36 }
37
38 // 帖子内容
39 .thread-content {
40 h1 {
41 font-size: 2rem;
42 color: #1a202c;
43 margin-bottom: 1.5rem;
44 }
45
46 .content-body {
47 .thread-image {
48 width: 100%;
49 height: auto;
50 border-radius: 0.5rem;
51 margin-bottom: 1.5rem;
52 }
53
54 .thread-image {
55 display: flex;
56 align-items: center;
57 justify-content: center;
58 }
59
60 p {
61 font-size: 1rem;
62 line-height: 1.75;
63 color: #4a5568;
64 margin-bottom: 2rem;
65 }
66 }
67
68 .thread-actions {
69 display: flex;
70 gap: 1rem;
71 margin-bottom: 2rem;
72
73 .like-button {
74 &.liked {
75 background: #f49c79;
76 }
77 }
78 }
79 }
LaoeGaociee7c5772025-05-28 12:34:47 +080080}