    /* ==========================================================================
           1. 承袭全局核心变量与基础样式
           ========================================================================== */
        :root {
            --primary-color: #0056b3;
            --secondary-color: #ff6600;
            --text-dark: #333333;
            --bg-light: #f8f9fa;
            --border-color: #e0e0e0;
        }

        * { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0; 
        }

        html { 
            scroll-behavior: smooth; 
            scroll-padding-top: 130px; 
        }

        body { 
            font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", sans-serif; 
            line-height: 1.6; 
            color: var(--text-dark); 
            background-color: #fff; 
            -webkit-font-smoothing: antialiased; 
        }

        .container { 
            width: 100%; 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 20px; 
        }
        
        /* 按钮公用样式 */
        .btn { 
            display: inline-block; 
            background: var(--secondary-color); 
            color: #fff; 
            padding: 12px 28px; 
            text-decoration: none; 
            border-radius: 4px; 
            font-weight: bold; 
            transition: background 0.3s; 
            text-align: center; 
            font-size: 1rem; 
            border: none; 
            cursor: pointer; 
        }
        .btn:hover { 
            background: #e05500; 
        }

        /* ==========================================================================
           2. Header 头部样式
           ========================================================================== */
        header { 
            background: #fff; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
        }
        .header-top { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            padding: 15px 0; 
            border-bottom: 1px solid #f1f3f5; 
        }
        .logo { 
            flex: 0 0 auto; 
        }
		
		        .bt { font-size: 1.5rem; color: var(--primary-color); line-height: 1.2; font-weight: 700; }
		.logo a {text-decoration: none;}
		
        .logo h1 { 
            font-size: 1.5rem; 
            color: var(--primary-color); 
            line-height: 1.2; 
            font-weight: 700; 
        }
        .logo span { 
            font-size: 0.85rem; 
            color: #666; 
            display: block; 
            margin-top: 4px; 
            letter-spacing: 1px; 
        }
        .header-rt { 
            text-align: right; 
            flex: 0 0 auto; 
        }
        .hotline { 
            font-size: 1.4rem; 
            color: var(--secondary-color); 
            font-weight: bold; 
            text-decoration: none; 
            display: block; 
        }
        .main-nav { 
            background: #fff; 
            padding: 10px 0; 
            display: block; 
        }
        .nav-list { 
            display: flex; 
            list-style: none; 
            gap: 40px; 
            justify-content: center; 
            align-items: center; 
        }
        .nav-list a { 
            text-decoration: none; 
            color: #495057; 
            font-weight: 500; 
            font-size: 1.05rem; 
            transition: all 0.2s; 
            padding: 5px 0; 
            white-space: nowrap; 
        }
        .nav-list a:hover, .nav-list .active { 
            color: var(--primary-color); 
            border-bottom: 2px solid var(--primary-color); 
        }
        .menu-toggle, .menu-btn { 
            display: none; 
        }

        /* ==========================================================================
           3. 面包屑导航样式
           ========================================================================== */
        .breadcrumb { 
            background: var(--bg-light); 
            padding: 12px 0; 
            border-bottom: 1px solid var(--border-color); 
            font-size: 0.9rem; 
        }
        .breadcrumb-list { 
            display: flex; 
            list-style: none; 
            gap: 8px; 
            color: #6c757d; 
        }
        .breadcrumb-list a { 
            color: #495057; 
            text-decoration: none; 
        }
        .breadcrumb-list a:hover { 
            color: var(--primary-color); 
            text-decoration: underline; 
        }
        .breadcrumb-list li:not(:last-child)::after { 
            content: '/'; 
            margin-left: 8px; 
            color: #adb5bd; 
        }
        .breadcrumb-list li:last-child { 
            color: var(--primary-color); 
            font-weight: 500; 
        }

        /* ==========================================================================
           4. 调整后的单栏宽屏布局核心样式
           ========================================================================== */
        .news-wrapper {
            padding: 30px 0 60px;
            background: #fff;
        }
        
        /* 调整后的横幅转化卡片（移至顶部） */
        .top-cta-banner {
            background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
            color: #fff;
            border-radius: 6px;
            padding: 25px 30px;
            margin-bottom: 35px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0, 86, 179, 0.1);
        }
        .cta-info h4 { font-size: 1.4rem; margin-bottom: 6px; letter-spacing: 0.5px; }
        .cta-info p { font-size: 0.95rem; color: #e8f4ff; }
        .top-cta-banner .btn { flex: 0 0 auto; margin-left: 20px; box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3); }

        /* 主新闻列表区：单栏自适应宽度 */
        .news-main-list {
            width: 100%;
            max-width: 960px;
            margin: 0 auto;
        }
        
        /* 独立文章卡片（精简去掉了图片框） */
        .news-item-card {
            padding-bottom: 25px;
            margin-bottom: 25px;
            border-bottom: 1px dashed var(--border-color);
            transition: all 0.3s;
        }
        .news-item-card:hover .news-item-title a {
            color: var(--secondary-color);
        }
        
        .news-item-content {
            display: flex;
            flex-direction: column;
        }
        .news-item-meta {
            display: flex;
            gap: 15px;
            font-size: 0.85rem;
            color: #6c757d;
            align-items: center;
        }
        .news-cate-tag {
            background: #e8f4ff;
            color: var(--primary-color);
            padding: 2px 8px;
            border-radius: 3px;
            font-weight: 500;
        }
        .news-item-title {
            font-size: 1.3rem;
            margin: 10px 0;
            line-height: 1.4;
        }
        .news-item-title a {
            color: #111;
            text-decoration: none;
            transition: color 0.2s;
            font-weight: bold;
        }
        .news-item-excerpt {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-align: justify;
        }
        
        /* 经典数字分页组件 */
        .pagination-box {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 45px;
        }
        .pagination-box a, .pagination-box span {
            display: inline-block;
            padding: 8px 16px;
            border: 1px solid var(--border-color);
            color: #495057;
            text-decoration: none;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        .pagination-box a:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: #e8f4ff;
        }
        .pagination-box .current-page {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
            font-weight: bold;
        }

        /* ==========================================================================
           5. Footer 页脚样式
           ========================================================================== */
        footer { 
            background: #212529; 
            color: #b5b9bd; 
            padding: 40px 0; 
            text-align: center; 
            font-size: 0.9rem; 
            line-height: 1.8; 
        }
        footer p { 
            margin-bottom: 8px; 
        }
        footer p strong { 
            color: #fff; 
        }
        footer a { 
            color: #fff; 
            text-decoration: none; 
        }
        footer a:hover { 
            text-decoration: underline; 
        }

        /* ==========================================================================
           6. 严格响应式适配断点
           ========================================================================== */
        @media (max-width: 992px) {
            .nav-list { gap: 20px; }
            .logo h1 { font-size: 1.3rem; }
            .hotline { font-size: 1.2rem; }
            .top-cta-banner { padding: 20px; }
            .cta-info h4 { font-size: 1.2rem; }
        }

        @media (max-width: 768px) {
            html { scroll-padding-top: 90px; }
            .header-top { padding: 10px 0; position: relative; }
            .logo h1 { font-size: 1.1rem; }
            .logo span { font-size: 0.75rem; letter-spacing: 0; }
            .header-rt { margin-right: 45px; text-align: right; }
            .hotline { font-size: 1rem; }
            
            .menu-btn { 
                display: block; 
                position: absolute; 
                right: 20px; 
                top: 50%; 
                transform: translateY(-50%); 
                cursor: pointer; 
                padding: 10px 0; 
                z-index: 1002; 
            }
            .menu-btn .icon-bar { 
                display: block; 
                width: 22px; 
                height: 2px; 
                background: #333; 
                margin: 4px 0; 
                transition: all 0.2s; 
            }
            
            .main-nav { 
                display: block; 
                position: absolute; 
                top: 100%; 
                left: 0; 
                right: 0; 
                background: #fff; 
                border-top: 1px solid var(--border-color); 
                border-bottom: 2px solid var(--primary-color); 
                max-height: 0; 
                overflow: hidden; 
                opacity: 0; 
                transition: all 0.3s ease-in-out; 
                padding: 0; 
            }
            .nav-list { flex-direction: column; gap: 0; width: 100%; padding: 10px 0; }
            .nav-list li { width: 100%; text-align: center; }
            .nav-list a { display: block; padding: 12px 0; font-size: 1rem; border-bottom: 1px solid #f8f9fa; }
            .nav-list li:last-child a { border-bottom: none; }
            .nav-list a:hover { border-bottom: none; background: var(--bg-light); }
            
            .menu-toggle:checked ~ .main-nav { max-height: 400px; opacity: 1; }
            .menu-toggle:checked ~ .menu-btn .icon-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
            .menu-toggle:checked ~ .menu-btn .icon-bar:nth-child(2) { opacity: 0; }
            .menu-toggle:checked ~ .menu-btn .icon-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

            /* 移动端转化横幅调整为垂直排列 */
            .top-cta-banner { flex-direction: column; text-align: center; gap: 15px; }
            .top-cta-banner .btn { margin-left: 0; width: 100%; }
            .news-item-title { font-size: 1.15rem; }
            .pagination-box a, .pagination-box span { padding: 6px 12px; font-size: 0.85rem; }
        }

        @media (max-width: 414px) {
            .header-rt p { display: none; }
            .logo h1 { font-size: 1rem; }
        }