/* 新闻详情页卡片样式 */
.news-detail-section {
    background: #f5f7fa;
    padding: 40px 0 60px 0;
}

.news-detail-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    padding: 48px 40px 40px 40px;
}

.news-detail-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 18px;
    color: #333;
}

.news-detail-meta {
    text-align: center;
    color: #888;
    font-size: 1rem;
    margin-bottom: 32px;
}

.news-detail-img-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.news-detail-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.news-detail-content {
    font-size: 1.15rem;
    color: #444;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-content p {
    margin-bottom: 1.5em;
    text-align: left;
}

@media (max-width: 1300px) {
    .news-detail-card {
        max-width: 98vw;
        padding: 32px 10px;
    }
}

@media (max-width: 700px) {
    .news-detail-card {
        padding: 18px 2vw;
    }
    .news-detail-title {
        font-size: 1.3rem;
    }
    .news-detail-content {
        font-size: 1rem;
    }
} 

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4,
.news-detail-content h5,
.news-detail-content h6 {
    text-align: center;
    margin: 30px 0 20px;
    width: 100%;
}

.news-detail-content h1 {
    font-size: clamp(24px, 5vw, 32px);
}

.news-detail-content h2 {
    font-size: clamp(22px, 4vw, 28px);
}

.news-detail-content h3 {
    font-size: clamp(20px, 3.5vw, 24px);
}

.news-detail-content h4 {
    font-size: clamp(18px, 3vw, 20px);
}

.news-detail-content h5 {
    font-size: clamp(16px, 2.5vw, 18px);
}

.news-detail-content h6 {
    font-size: clamp(14px, 2vw, 16px);
}

.news-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #333;
}

.news-detail-content img {
    width: 900px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .news-detail-content img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .news-detail-content h1 {
        font-size: 28px;
    }

    .news-detail-content h2 {
        font-size: 24px;
    }

    .news-detail-content h3 {
        font-size: 20px;
    }

    .news-detail-content h4 {
        font-size: 18px;
    }

    .news-detail-content h5 {
        font-size: 16px;
    }

    .news-detail-content h6 {
        font-size: 14px;
    }

    .news-detail-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .news-detail-content h1 {
        font-size: 24px;
        margin: 20px 0 15px;
    }

    .news-detail-content h2 {
        font-size: 22px;
        margin: 20px 0 15px;
    }

    .news-detail-content h3 {
        font-size: 20px;
        margin: 20px 0 15px;
    }

    .news-detail-content h4 {
        font-size: 18px;
        margin: 20px 0 15px;
    }

    .news-detail-content h5 {
        font-size: 16px;
        margin: 20px 0 15px;
    }

    .news-detail-content h6 {
        font-size: 14px;
        margin: 20px 0 15px;
    }

    .news-detail-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .news-detail-content img {
        margin: 15px auto;
    }
} 