.forum-page { | |
color: #453228; | |
/* background-color: #5F4437; */ | |
/* background: linear-gradient(180deg, #5F4437, #9c737b); */ | |
background: #f8f3ef; | |
/* background-color: #5F4437; */ | |
min-height: 100vh; | |
font-family: Arial, sans-serif; | |
} | |
.forum-content { | |
padding: 20px; | |
} | |
.post-list { | |
display: flex; | |
flex-direction: column; | |
gap: 20px; | |
} | |
.post-card { | |
text-decoration: none; /* 移除链接的下划线 */ | |
background-color: #5F4437; | |
padding: 15px; | |
border-radius: 10px; | |
position: relative; | |
} | |
.post-card-top { | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
} | |
.user-info { | |
display: flex; | |
align-items: center; | |
} | |
.nickname { | |
font-weight: bold; | |
} | |
.cover { | |
max-height: 320px; | |
max-width: 320px; | |
object-fit: cover; | |
border-radius: 6px; | |
} | |
.post-meta { | |
font-size: 12px; | |
margin-top: 5px; | |
color: #ddd; | |
} | |
.post-actions { | |
display: flex; | |
gap: 15px; | |
margin: 10px 0; | |
} | |
.icon-btn { | |
display: flex; | |
align-items: center; | |
gap: 5px; | |
background: none; | |
border: none; | |
color: #fff; | |
cursor: pointer; | |
} | |
.btn-secondary { | |
display: inline-block; | |
background: #888; | |
color: #fff; | |
padding: 6px 12px; | |
text-decoration: none; | |
border-radius: 5px; | |
margin-top: 10px; | |
} | |
.pagination { | |
margin-top: 20px; | |
display: flex; | |
justify-content: center; | |
gap: 10px; | |
} | |
.error-text { | |
color: red; | |
} | |
.toolbar { | |
display: flex; | |
padding: 16px 20px; | |
} | |