     /* 重置所有样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* 动画关键帧 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                transform: translateX(-30px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes underlineExpand {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* 核心样式变量 */
        :root {
            --primary-color: #ffb600;
            --primary-dark: #e6a400;
            --dark-color: #1a1a1a;
            --border-color: #e0e0e0;
            --light-color: #f8f9fa;
        }
        
        /* 页面整体动画 */
        .body-inner {
            animation: fadeIn 0.5s ease-out;
        }
        
        /* 横幅样式 - 与其他页面一致 */
        .banner-area {
            position: relative;
            height: 300px;
            background-size: cover;
            background-position: center;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0) 100%);
        }
        
        /* 横幅内容容器 */
        .banner-container {
            width: 100%;
        }
        
        .banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: left;
            padding: 0 15px;
        }
        
        /* 修改标题样式 - 添加黄色下划线 */
        .banner-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            animation: slideInLeft 0.8s ease-out 0.3s both;
            opacity: 0;
        }
        
        /* 黄色下划线 */
        .banner-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
            animation: underlineExpand 0.6s ease-out 1.1s forwards;
        }
        
        .banner-description {
            font-size: 1rem;
            opacity: 0.9;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 0.8s ease-out 0.5s both;
            opacity: 0;
        }
        
        /* 面包屑导航容器 - 与其他页面一致 */
        .breadcrumb-container {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
            animation: fadeInUp 0.6s ease-out 0.4s both;
            opacity: 0;
        }
        
        .breadcrumb-container nav {
            background: transparent;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-container .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-container .breadcrumb-item a {
            color: #666;
        }
        
        .breadcrumb-container .breadcrumb-item.active {
            color: #333;
        }
        
        .breadcrumb-container .breadcrumb-item + .breadcrumb-item::before {
            content: " / ";
            color: #999;
        }
        
        /* 主容器 */
        section#main-container.main-container {
            margin: 0 0 30px !important;
            padding: 0 !important;
        }
        
        /* 二级类目导航 */
        .category-nav-container {
            width: 100%;
            margin: 40px 0 20px !important;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInUp 0.6s ease-out 0.6s both;
            opacity: 0;
        }
        
        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 15px;
            list-style: none;
            padding: 0;
            margin: 0 auto;
            max-width: 100%;
        }
        
        .category-tabs li {
            margin: 0;
            flex-shrink: 0;
        }
        
        .category-tabs a {
            padding: 10px 20px;
            border: 1px solid #eee;
            margin-right: 8px;
            margin-bottom: 8px;
            border-radius: 0px;
            color: #333;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .category-tabs a:hover,
        .category-tabs li.active a {
            background: #FFB600;
            color: #fff;
            border-color: #FFB600;
        }
        
        /* 新闻列表容器 */
        .news-content-container {
            width: 100%;
            margin-bottom: 40px;
        }
        
        /* 第一条主要新闻样式 */
        .main-news-item {
            display: flex;
            background: #fff;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            margin: 20px 0 40px 0 !important;
            border: 1px solid #f0f0f0;
            animation: fadeInUp 0.8s ease-out 0.8s both;
            opacity: 0;
        }
        
        .main-news-image {
            flex: 0 0 50%;
            min-height: 320px; 
            overflow: hidden;
            position: relative;
        }
        
        .main-news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .main-news-item:hover .main-news-image img {
            transform: scale(1.05);
        }
        
        .main-news-content {
            flex: 0 0 50%;
            padding: 30px 35px; 
            display: flex;
            flex-direction: column;
        }
        
        .main-news-title {
            font-size: 28px; 
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
            color: #1a1a1a;
        }
        
        .main-news-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .main-news-title a:hover {
            color: #FFB600;
        }
        
        .main-news-excerpt {
            font-size: 16px; 
            line-height: 1.7; 
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .main-news-meta {
            color: #888;
            font-size: 14px; 
            padding-top: 20px; 
            border-top: 1px solid #f0f0f0;
        }
        
        .main-news-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* 常规新闻列表样式 */
        .regular-news-list {
            width: 100%;
        }
        
        /* 常规新闻项动画 */
        .regular-news-item {
            display: flex;
            background: #fff;
            overflow: hidden;
            border: 1px solid #BBBBBB;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            animation: fadeInUp 0.5s ease-out;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        
        /* 为每个常规新闻项设置延迟动画 */
        .regular-news-item:nth-child(1) { animation-delay: 0.9s; }
        .regular-news-item:nth-child(2) { animation-delay: 1.0s; }
        .regular-news-item:nth-child(3) { animation-delay: 1.1s; }
        .regular-news-item:nth-child(4) { animation-delay: 1.2s; }
        .regular-news-item:nth-child(5) { animation-delay: 1.3s; }
        .regular-news-item:nth-child(6) { animation-delay: 1.4s; }
        .regular-news-item:nth-child(7) { animation-delay: 1.5s; }
        .regular-news-item:nth-child(8) { animation-delay: 1.6s; }
        .regular-news-item:nth-child(9) { animation-delay: 1.7s; }
        .regular-news-item:nth-child(10) { animation-delay: 1.8s; }
        
        .regular-news-item:last-child {
            margin-bottom: 0;
        }
        
        .regular-news-item:hover {
            border: 1px solid #FFB600;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 182, 102, 0.1);
        }
        
        .regular-news-image {
            flex: 0 0 260px; 
            width: 260px;
            height: 174px; 
            overflow: hidden;
        }
        
        .regular-news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .regular-news-item:hover .regular-news-image img {
            transform: scale(1.05);
        }
        
        .regular-news-content {
            flex: 1;
            padding: 20px 25px; 
            display: flex;
            flex-direction: column;
        }
        
        .regular-news-title {
            font-size: 20px; 
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 12px; 
            color: #1a1a1a;
        }
        
        .regular-news-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .regular-news-title a:hover {
            color: #FFB600;
        }
        
        .regular-news-excerpt {
            font-size: 15px; 
            line-height: 1.6; 
            color: #555;
            margin-bottom: 15px; 
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        
        .regular-news-meta {
            color: #888;
            font-size: 13px; 
        }
        
        /* 分页样式 */
        .pagination-wrapper {
            margin-top: 30px;
            margin-bottom: 30px !important;
            text-align: center;
            animation: fadeInUp 0.6s ease-out 1.9s both;
            opacity: 0;
        }
        
        nav ul.pagination {
            display: flex;
            justify-content: center;
            padding-left: 0;
            list-style: none;
        }
        
        .page-item {
            margin: 0 2px;
        }
        
        .page-item.active .page-link {
            background-color: #FFB600;
            border-color: #FFB600;
            color: #fff;
        }
        
        .page-link {
            position: relative;
            display: block;
            padding: .4rem .65rem; 
            margin-left: -1px;
            line-height: 1.2; 
            color: #FFB600;
            background-color: #fff;
            border: 1px solid #dee2e6;
            text-decoration: none;
            font-size: 14px; 
        }
        
        .page-link:hover {
            background-color: #FFB600;
            border-color: #FFB600;
            color: #fff;
        }
        
        .page-item.disabled .page-link {
            color: #6c757d;
            pointer-events: none;
            cursor: auto;
            background-color: #fff;
            border-color: #dee2e6;
        }
        
        /* 无数据提示 */
        .no-news {
            text-align: center;
            padding: 60px 20px;
            color: #666;
            animation: fadeInUp 0.8s ease-out 0.8s both;
            opacity: 0;
        }
        
        .no-news i {
            font-size: 3rem;
            color: #ddd;
            margin-bottom: 20px;
        }
        
        .no-news p {
            font-size: 1.1rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .banner-area {
                height: 150px;
            }
            
            .banner-title {
                font-size: 1.8rem;
                padding-bottom: 12px;
            }
            
            .banner-title::after {
                height: 3px;
            }
            
            .banner-description {
                font-size: 0.9rem;
            }
            
            .main-news-image {
                min-height: 280px; 
            }
            
            .main-news-content {
                padding: 25px 30px; 
            }
            
            .main-news-title {
                font-size: 24px; 
            }
        }
        
        @media (max-width: 992px) {
            .banner-area {
                height: 140px;
            }
            
            .banner-title {
                font-size: 1.6rem;
            }
            
            .main-news-item {
                flex-direction: column;
                margin-bottom: 40px; 
            }
            
            .main-news-image {
                flex: none;
                width: 100%;
                min-height: 240px; 
            }
            
            .main-news-content {
                flex: none;
                width: 100%;
                padding: 25px 25px; 
            }
            
            .main-news-title {
                font-size: 22px; 
            }
            
            .regular-news-image {
                flex: 0 0 220px; 
                height: 147px; 
            }
            
            .regular-news-content {
                padding: 18px 20px; 
            }
            
            .regular-news-title {
                font-size: 18px; 
            }
            
            .regular-news-item {
                margin-bottom: 18px; 
            }
        }
        
        @media (max-width: 768px) {
            .banner-area {
                height: 130px;
            }
            
            .banner-title {
                font-size: 1.4rem;
                padding-bottom: 10px;
            }
            
            .banner-title::after {
                height: 2px;
            }
            
            .category-tabs {
                gap: 8px;
            }
            
            .category-tabs a {
                padding: 8px 16px;
                font-size: 14px;
            }
            
            .main-news-content {
                padding: 20px 18px; 
            }
            
            .main-news-title {
                font-size: 20px; 
            }
            
            .regular-news-item {
                flex-direction: column;
            }
            
            .regular-news-image {
                flex: none;
                width: 100%;
                height: 180px; 
            }
            
            .regular-news-content {
                padding: 16px; 
            }
            
            .regular-news-item {
                margin-bottom: 18px; 
            }
        }
        
        @media (max-width: 576px) {
            .banner-area {
                height: 120px;
            }
            
            .banner-title {
                font-size: 1.2rem;
                margin-bottom: 5px;
                padding-bottom: 8px;
            }
            
            .category-nav-container {
                margin: 25px 0 50px !important;
            }
            
            .main-news-item {
                margin: 10px 0 40px 0 !important;
            }
            
            section#main-container.main-container {
                margin: 0 0 30px !important;
            }
            
            .category-tabs {
                gap: 6px;
            }
            
            .category-tabs a {
                padding: 7px 12px;
                font-size: 13px;
            }
            
            .main-news-image {
                min-height: 180px; 
            }
            
            .main-news-content {
                padding: 16px 14px; 
            }
            
            .main-news-title {
                font-size: 18px; 
            }
            
            .regular-news-content {
                padding: 14px; 
            }
            
            .regular-news-title {
                font-size: 16px; 
            }
            
            .regular-news-item {
                margin-bottom: 14px; 
            }
            
            .page-link {
                padding: .35rem .55rem; 
                font-size: 13px; 
            }
        }