        :root {
            --main-blue: #165DFF;
            --accent-orange: #165DFF;
            --text-dark: #333;
            --text-gray: #666;
            --bg-light: #f8f9fa;
            --border-color: #eeeeee;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
		/* --- 1. 头部与导航 (复用) --- */
        header { background: #fff; padding: 15px 0; }
        .header-flex { display: flex; justify-content: space-between; align-items: center; }
        .phone { font-size: 20px; color: var(--main-blue); font-weight: bold; }

       .main-nav { background: #fff; border-top: 1px solid #eee; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
        .nav-list { display: flex; justify-content: space-between; list-style: none; }
        .nav-list > li { position: relative; }
        .nav-list > li > a { display: block; padding: 15px 10px; color: #333; font-size: 16px; text-decoration: none; transition: 0.3s; }
        .nav-list > li > a:hover, .nav-list > li > a.active { color: var(--accent-orange); border-bottom: 2px solid var(--accent-orange); }

        /* 下拉菜单 */
        .dropdown:hover .submenu { display: block; }
        .submenu { 
            display: none; position: absolute; top: 100%; left: 0; background: #fff; 
            min-width: 160px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-top: 2px solid var(--accent-orange); list-style: none; 
        }
        .submenu li a { display: block; padding: 10px 20px; color: #666; font-size: 14px; text-decoration: none; }
        .submenu li a:hover { background: #e8f3ff; color: var(--accent-orange); }
		
		
		

        /* 基础复位 */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: "PingFang SC", "Microsoft YaHei", sans-serif; color: var(--text-dark); line-height: 1.6; background: #fff; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; transition: 0.3s; color: inherit; }

        /* --- 1. 顶部面包屑 --- */
        .breadcrumb { background: var(--bg-light); padding: 15px 0; font-size: 14px; color: #888; border-bottom: 1px solid var(--border-color); }
        .breadcrumb a:hover { color: var(--main-blue); }
        .breadcrumb span { margin: 0 8px; }

        /* --- 2. 列表页主布局 --- */
        .news-list-container { padding: 50px 0; display: flex; gap: 40px; }
        
        /* 左侧列表 */
        .news-main-list { flex: 2.5; }

        /* 焦点新闻大图 (置顶) */
        .news-featured { position: relative; border-radius: 8px; overflow: hidden; margin-bottom: 40px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
        .news-featured img { width: 100%; height: 350px; object-fit: cover; }
        .featured-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; }
        .featured-content h2 { font-size: 24px; margin-bottom: 10px; }
        .featured-content p { font-size: 14px; opacity: 0.9; }

        /* 列表项样式 */
        .news-item { display: flex; gap: 25px; padding: 30px 0; border-bottom: 1px solid var(--border-color); transition: 0.3s; }
        .news-item:hover { background: #fafafa; }
        .news-img { flex: 1; overflow: hidden; border-radius: 4px; }
        .news-img img { width: 100%; height: 160px; object-fit: cover; transition: 0.5s; }
        .news-item:hover .news-img img { transform: scale(1.1); }
        
        .news-info { flex: 2; display: flex; flex-direction: column; justify-content: center; }
        .news-info .date { color: #999; font-size: 13px; margin-bottom: 10px; }
        .news-info h3 { font-size: 20px; color: var(--main-blue); margin-bottom: 12px; }
        .news-info p { font-size: 15px; color: #666; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .read-more { font-size: 14px; color: var(--accent-orange); font-weight: bold; }

        /* --- 3. 分页器 --- */
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
        .pagination a { padding: 8px 16px; border: 1px solid var(--border-color); color: #666; font-size: 14px; }
        .pagination a.active { background: var(--main-blue); color: #fff; border-color: var(--main-blue); }
        .pagination a:hover:not(.active) { background: #eee; }

        /* --- 4. 右侧侧边栏 --- */
        .sidebar { flex: 1; }
        .sidebar-widget { border: 1px solid var(--border-color); padding: 25px; margin-bottom: 30px; border-radius: 4px; }
        .widget-title { font-size: 18px; color: var(--main-blue); margin-bottom: 20px; position: relative; font-weight: bold; }
        .widget-title::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background: var(--accent-orange); }

        /* 分类列表 */
        .category-list { list-style: none; }
        .category-list li { border-bottom: 1px dashed #eee; }
        .category-list li:last-child { border-bottom: none; }
        .category-list li a { display: block; padding: 12px 0; color: #555; }
        .category-list li a:hover { color: var(--main-blue); padding-left: 5px; }
        
        /* 侧边联系卡片 */
        .side-contact { background: var(--main-blue); color: #fff; padding: 25px; border-radius: 4px; text-align: center; }
        .side-contact h3 { font-size: 20px; margin-bottom: 15px; color: var(--accent-orange); }
        .side-phone { font-size: 22px; font-weight: bold; }
		
		
		  /* --- 底部 (复刻截图样式) --- */
		footer { background-color: #1a1a1a; color: #fff; padding: 60px 0 20px; }
        .footer-container { display: flex; justify-content: space-between; gap: 40px; }
        .footer-nav-grid { display: grid; grid-template-columns: repeat(4, auto); gap: 12px 30px; margin-top: 20px; }
        .footer-nav-grid a { color: #ccc; font-size: 14px; }
        .footer-center .qr-code-box { background: #fff; padding: 5px; width: 110px;margin: 0 auto;}
        .footer-right { text-align: right; }
        .contact-phone { font-size: 28px; font-weight: bold; color: #fff; }
        .footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid #2d2d2d; color: #666; font-size: 12px; text-align: center; }
		
		

        /* --- 响应式 --- */
        @media (max-width: 992px) {
            .news-list-container { flex-direction: column; }
            .news-item { flex-direction: column; }
            .news-img { width: 100%; height: 200px; }
            .footer-container {flex-direction: column;text-align: center;}
             .footer-nav-grid {justify-content: center;}
             .footer-right{text-align: center;}
        }
@media (max-width: 768px) {
            .nav-list { overflow-x: auto; white-space: nowrap; justify-content: flex-start; }
            .nav-list > li > a { padding: 15px 15px; font-size: 14px; }
            .header-flex {flex-direction: column;gap: 10px;}
        }