    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }

        a { text-decoration: none; }


        /* Breadcrumb */
        .breadcrumb { background: var(--bg-light); padding: 18px 0; }
        .breadcrumb .container { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-light); }
        .breadcrumb a { color: var(--text-light); transition: var(--transition); }
        .breadcrumb a:hover { color: var(--primary); }
        .breadcrumb .separator { color: #ccc; }
        .breadcrumb .current { color: var(--text); font-weight: 500; }

        /* 页面头部 */
        .page-banner { background: linear-gradient(135deg, var(--secondary) 0%, #fad0c4 100%); padding: 60px 0; text-align: center; }
        .page-banner h1 { font-size: 36px; margin-bottom: 10px; }
        .page-banner p { color: var(--text-light); font-size: 16px; }

        /* 新闻分类 */
        .news-tabs { padding: 30px 0; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
        .news-tab { padding: 10px 28px; border: 2px solid var(--border); border-radius: 30px; cursor: pointer; font-size: 14px; color: var(--text); transition: var(--transition); background: #fff; }
        .news-tab:hover { border-color: var(--primary); color: var(--primary); }
        .news-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

        /* ============ 新闻列表 ============ */
        .news-section { padding-bottom: 80px; }

        /* 头条新闻 */
        .news-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 40px; transition: var(--transition); cursor: pointer; }
        .news-featured:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
        .news-featured-img { height: 100%; min-height: 300px; overflow: hidden; }
        .news-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
        .news-featured:hover .news-featured-img img { transform: scale(1.05); }
        .news-featured-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
        .news-tag { display: inline-block; background: var(--primary); color: #fff; padding: 4px 14px; border-radius: 12px; font-size: 12px; margin-bottom: 15px; align-self: flex-start; }
        .news-featured-content h2 { font-size: 26px; margin-bottom: 15px; line-height: 1.4; }
        .news-featured-content .excerpt { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-size: 15px; }
        .news-meta { display: flex; align-items: center; gap: 20px; font-size: 13px; color: var(--text-light); }
        .news-meta span { display: flex; align-items: center; gap: 5px; }
        .news-meta .read-more { margin-left: auto; color: var(--primary); font-weight: 500; }

        /* 新闻网格 */
        .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .news-card { background: #fff; border-radius: var(--radius); overflow: hidden; transition: var(--transition); cursor: pointer; border: 1px solid var(--border); }
        .news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
        .news-card-img { width: 100%; height: 220px; overflow: hidden; position: relative; }
        .news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
        .news-card:hover .news-card-img img { transform: scale(1.08); }
        .news-card-img .tag { position: absolute; top: 15px; left: 15px; background: rgba(255,255,255,0.9); color: var(--primary); padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 500; }
        .news-card-content { padding: 22px; }
        .news-card-content .date { font-size: 13px; color: var(--text-light); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
        .news-card-content h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.4; transition: var(--transition); }
        .news-card:hover .news-card-content h3 { color: var(--primary); }
        .news-card-content .excerpt { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .news-card-footer { display: flex; align-items: center; gap: 15px; font-size: 13px; color: var(--text-light); padding-top: 12px; border-top: 1px solid var(--border); }
        .news-card-footer span { display: flex; align-items: center; gap: 5px; }
        .news-card-footer .read-more { margin-left: auto; color: var(--primary); }

        /* 分页 */
        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
        .pagination a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: 14px; transition: var(--transition); }
        .pagination a:hover, .pagination a.active { background: var(--primary); color: #fff; border-color: var(--primary); }
        .pagination a.disabled { color: #ccc; cursor: not-allowed; }



        /* Responsive */
        @media (max-width: 1024px) {
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .news-featured { grid-template-columns: 1fr; }
            .news-featured-img { min-height: 250px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .related-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
            .section-title h2 { font-size: 26px; }
            .related { padding: 45px 0; }
        }
        @media (max-width: 768px) {
            .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 15px; gap: 0; box-shadow: var(--shadow); max-height: 80vh; overflow-y: auto; }
            .nav-menu.active { display: flex; }
            .nav-item { position: relative; border-bottom: 1px solid var(--border); }
            .nav-item > a { padding: 14px 5px; width: 100%; justify-content: space-between; }
            .nav-item > a::after { display: none; }
            .menu-toggle { display: block; }
            .top-bar .hidden-mobile { display: none; }
            .mega-menu { position: static; box-shadow: none; max-height: 0; overflow: hidden; }
            .has-mega.open .mega-menu { max-height: 800px; }
            .mega-inner { grid-template-columns: 1fr; gap: 15px; padding: 10px 0 15px 15px; }
            .mega-secondary { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
            .mega-secondary a { padding: 8px 14px; font-size: 13px; }
            .tertiary-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .tertiary-grid a { padding: 8px 10px; font-size: 12px; }
            .news-grid { grid-template-columns: 1fr; }
            .page-banner h1 { font-size: 28px; }
            .news-featured-content { padding: 25px; }
            .news-featured-content h2 { font-size: 22px; }
            .related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .related { padding: 35px 0; }
            .section-title { margin-bottom: 25px; }
            .section-title h2 { font-size: 22px; }
            .section-title p { font-size: 13px; }
            .product-card .info { padding: 12px; }
            .product-card .info h3 { font-size: 14px; }
        }
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
            .news-tabs { gap: 8px; }
            .news-tab { padding: 8px 18px; font-size: 13px; }
            .related-grid { grid-template-columns: 1fr; gap: 15px; }
            .related { padding: 30px 0; }
            .section-title { margin-bottom: 20px; }
            .section-title h2 { font-size: 20px; }
            .product-card .info { padding: 10px; }
            .product-card .info h3 { font-size: 13px; }
        }


/* 相关推荐 - 独立响应式样式 */
.related { padding: 60px 0; background: #f8f9fa; }
.related .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.related .section-title { text-align: center; margin-bottom: 30px; }
.related .section-title h2 { font-size: 28px; margin: 0 0 8px; }
.related .section-title .divider { width: 50px; height: 3px; background: #c4181b; margin: 10px auto; border-radius: 2px; }
.related .section-title p { color: #999; font-size: 18px; margin: 0; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-grid .product-card { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #eee; transition: all .3s; cursor: pointer; }
.related-grid .product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,.12); }
.related-grid .product-card .img { width: 100%; padding-top: 75%; position: relative; overflow: hidden; background: #f5f5f5; }
.related-grid .product-card .img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.related-grid .product-card .info { padding: 12px 14px; }
.related-grid .product-card .info h3 { font-size: 15px; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #333; }

@media (max-width: 1024px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .related { padding: 45px 0; }
    .related .section-title h2 { font-size: 24px; }
}
@media (max-width: 768px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .related { padding: 35px 0; }
    .related .container { padding: 0 12px; }
    .related .section-title { margin-bottom: 20px; }
    .related .section-title h2 { font-size: 20px; }
    .related .section-title p { font-size: 12px; }
    .related-grid .product-card .info { padding: 10px; }
    .related-grid .product-card .info h3 { font-size: 13px; }
}
@media (max-width: 480px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .related { padding: 25px 0; }
    .related .container { padding: 0 10px; }
    .related .section-title { margin-bottom: 15px; }
    .related .section-title h2 { font-size: 18px; }
    .related-grid .product-card .info { padding: 8px; }
    .related-grid .product-card .info h3 { font-size: 16px; }
}




/*分页*/
.pagination a, .current{
    float:left;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    }




    </style>