/* news-detail.css - 新闻详情页通用样式 */
.news-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
}
.news-detail h1 {
    font-size: 28px;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: center;
}
.news-detail .date {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.news-detail .detail-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}
.news-detail .news-content {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}
.news-detail .news-content p {
    margin-bottom: 20px;
}
.news-detail .news-content h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin: 30px 0 15px;
}
.news-detail .back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid #1a73e8;
    color: #1a73e8;
    border-radius: 5px;
    font-weight: 500;
}
.news-detail .back-btn:hover {
    background: #1a73e8;
    color: #fff;
}