/* 新闻详情页专用样式 - 简洁优雅 */

.news-detail {
    max-width: 900px;
    margin: 100px auto 60px;
    padding: 0 20px;
}

.news-detail-header {
    margin-bottom: 48px;
}

.news-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.4;
}

.news-detail-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #6c757d;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
}

.news-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-detail-image {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-content {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
}

.news-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 40px 0 20px;
    padding-left: 16px;
    border-left: 4px solid #667eea;
}

.news-detail-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 32px 0 16px;
}

.news-detail-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-detail-content ul {
    margin: 20px 0;
    padding-left: 32px;
}

.news-detail-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.news-detail-content strong {
    color: #667eea;
    font-weight: 600;
}

/* 高亮信息框 */
.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 24px 28px;
    border-radius: 8px;
    margin: 32px 0;
}

.highlight-box h3 {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    padding-left: 0 !important;
    border-left: none !important;
}

.highlight-box p {
    margin-bottom: 12px;
}

.highlight-box ul {
    margin: 16px 0;
}

/* 数据表格 */
.data-table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin: 32px 0;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: #667eea;
    color: #fff;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* 统计数据卡片 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.stat-box {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

/* 返回按钮 */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 48px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.back-link:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* 响应式 */
@media (max-width: 768px) {
    .news-detail {
        margin: 80px auto 40px;
    }
    
    .news-detail-title {
        font-size: 28px;
    }
    
    .news-detail-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .news-detail-image {
        height: 250px;
    }
    
    .news-detail-content {
        font-size: 16px;
    }
    
    .news-detail-content h2 {
        font-size: 24px;
    }
    
    .news-detail-content h3 {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
