/* 文章详情页样式 */
.article-container { max-width: 800px; margin: 30px auto; padding: 0 20px; }
.article-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.article-header { text-align: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid #f0ebe0; }
.article-header h1 { color: #8B0000; font-size: 28px; margin: 0 0 12px 0; }
.article-meta { color: #999; font-size: 14px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.article-content { line-height: 2; font-size: 16px; color: #333; }
.article-content p { margin: 6px 0; text-indent: 2em; }
.article-content img { max-width: 100%; border-radius: 8px; }
.article-content h3 { color: #8B0000; margin: 20px 0 10px; }
.back-link { text-align: center; margin-top: 30px; }
.back-link a { display: inline-block; padding: 10px 30px; background: #8B0000; color: #fff; text-decoration: none; border-radius: 8px; font-size: 14px; }
@media (max-width: 600px) {
    .article-card { padding: 20px 15px; border-radius: 0; }
    .article-header h1 { font-size: 22px; }
    .article-meta { gap: 10px; font-size: 12px; }
}.article-content img { display: block; margin: 20px auto; max-width: 100%; height: auto; }

/* 减小段落间距 */
.article-content p { margin: 8px 0; }
.article-content br { display: none; }
.article-content div { margin: 5px 0; }
.article-content br + br { display: none; }
.article-content { white-space: pre-wrap; word-wrap: break-word; }
