/**
 * 新闻详情页专用样式
 */

/* 解决文章内容高度和滚动问题 */
#news-box {
    min-height: auto;
    overflow: visible;
}

#news-detail {
    min-height: auto;
    padding: 20px 0;
}

.blog-post-content {
    min-height: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-meta {
    margin-bottom: 20px;
}

.news-content {
    min-height: auto;
    overflow: visible;
}

/* 文章内容图片样式 */
.news-content img {
    max-width: 100%;
    height: auto;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .blog-post-content {
        padding: 15px;
    }
}
