/* ============================================
   新闻详情页面样式
   ============================================ */

/* ============================================
   页面头部样式
   ============================================ */

/* 新闻详情页面的头部 - 始终显示背景 */
.news-detail-page .header {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.news-detail-page .header .nav-list a {
    color: #333;
}

.news-detail-page .header .nav-list a.active {
    color: #3364FF;
}

/* ============================================
   面包屑导航样式
   ============================================ */
.breadcrumb {
    padding: 20px 0 20px;
    background: #f9f9f9;
    margin-top: 60px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #3364FF;
}

.breadcrumb .separator {
    color: #999;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

/* ============================================
   新闻详情内容区域样式
   ============================================ */
.news-detail-content {
    padding: 60px 0 80px;
    background: #fff;
}

.news-detail-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.news-detail-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #999;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item span {
    color: #666;
}

/* ============================================
   新闻详情正文样式
   ============================================ */
.news-detail-body {
    max-width: 100%;
}

.news-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.news-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.news-description p {
    margin: 0 0 20px 0;
}

.news-description p:last-child {
    margin-bottom: 0;
}

/* ============================================
   响应式设计 - 移动设备（最大宽度768px）
   ============================================ */
@media (max-width: 768px) {
    .news-detail-content {
        padding: 40px 0 60px;
    }

    .news-detail-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .news-detail-meta {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 15px;
        font-size: 13px;
    }

    .news-image-wrapper {
        margin-bottom: 20px;
    }

    .news-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

