/* ========== 新闻详情页面样式 ========== */
:root {
    --primary-green: #38a660;
    --light-green: #6c9f3d;
    --dark-green: #1e7e34;
    --text-color: #333;
    --secondary-text: #666;
    --border-color: #e5e5e5;
    --bg-light: #f8f9fa;
}

/* 基础样式 */
body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #F6F6F6;
}

/* 主内容区域 */
.main-content {
    padding: 0;
    min-height: calc(100vh - 70px - 440px);
    background: #fff;
}

/* 面包屑导航 */
.breadcrumb-nav {
    padding: 15px 0;
    font-size: 14px;
    color: var(--secondary-text);
    cursor: pointer;
}

.breadcrumb-item {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: var(--primary-green);
}

.breadcrumb-item.active {
    color: var(--primary-green);
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #999;
}

/* 新闻详情容器 */
.tab-content {
    max-width: 1200px;
    padding-top: 10px;
}

.news-detail {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* ========== 新闻标题区域 ========== */
.news-header {
    padding: 40px 50px 30px;
    border-bottom: 1px solid #E5E5E5;

    position: relative;
}



.news-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.4;
    text-align: center;
    position: relative;
}


.news-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--secondary-text);
}

/* 移除图标样式，因为已不使用图标 */

.meta-label {
    font-weight: 500;
}

.meta-value {
    color: var(--text-color);
    font-weight: 600;
}

/* ========== 新闻内容区域 ========== */
.news-content {
    padding: 40px 50px;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* 富文本内容区域 - 使用自带样式，不添加额外样式 */



/* ========== 响应式设计 ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .tab-content {
        padding: 0 50px 40px;
    }
    
    .news-header {
        padding: 30px 40px 25px;
    }
    
    .news-content {
        padding: 30px 40px;
    }
    
    .news-title {
        font-size: 2rem;
    }
    
    .news-meta {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .tab-content {
        padding: 0 20px 30px;
    }
    
    .news-header {
        padding: 25px 20px 20px;
    }
    
    .news-content {
        padding: 25px 20px;
    }
    
    .news-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .news-meta {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }
    
    .meta-item {
        justify-content: center;
    }
    

@media (max-width: 480px) {
    .tab-content {
        padding: 0 15px 25px;
    }
    
    .news-header {
        padding: 20px 15px;
    }
    
    .news-content {
        padding: 20px 15px;
    }
    
    .news-title {
        font-size: 18px;
    }
    
    .news-meta {
        gap: 12px;
    }
    
    .meta-item {
        font-size: 13px;
    }
    
    /* 富文本在小屏幕设备使用自带样式 */
}

/* ========== 打印样式 ========== */
@media print {
    .news-detail {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .news-header {
        background: none;
        border-bottom: 2px solid #333;
    }
    
    .news-title {
        color: #000;
    }
    
    /* 已移除图标相关样式 */
    
    /* 打印时富文本使用自带样式 */
}
}