
        /* ===== 新闻列表独享样式 ===== */
        .news-list {
            padding-top: 150px;
            background-color: var(--light-gray);
            min-height: 100vh;
        }
        
        .news-list .section-title {
            margin-bottom: 50px;
        }
        
        .news-list-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .news-list-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }
        
        .news-list-item:nth-child(1) { animation-delay: 0s; }
        .news-list-item:nth-child(2) { animation-delay: 0.1s; }
        .news-list-item:nth-child(3) { animation-delay: 0.2s; }
        .news-list-item:nth-child(4) { animation-delay: 0.3s; }
        .news-list-item:nth-child(5) { animation-delay: 0.4s; }
        .news-list-item:nth-child(6) { animation-delay: 0.5s; }
        .news-list-item:nth-child(7) { animation-delay: 0.6s; }
        .news-list-item:nth-child(8) { animation-delay: 0.7s; }
        .news-list-item:nth-child(9) { animation-delay: 0.8s; }
        .news-list-item:nth-child(10) { animation-delay: 0.9s; }
        
        .news-list-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(74, 108, 247, 0.2);
        }
        
        .news-list-image {
            width: 300px;
            height: 220px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        
        .news-list-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .news-list-item:hover .news-list-image img {
            transform: scale(1.1);
        }
        
        .news-list-content {
            padding: 30px;
            flex: 1;
        }
        
        .news-list-date {
            display: inline-block;
            background: var(--light-gray);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .news-list-content h3 {
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.4;
            font-size: 1.5rem;
        }
        
        .news-list-content h3 a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        .news-list-content h3 a:hover {
            color: var(--primary);
        }
        
        .news-list-content p {
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .news-list-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .news-list-link i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .news-list-link:hover {
            color: var(--secondary);
        }
        
        .news-list-link:hover i {
            transform: translateX(5px);
        }
        
        /* ===== 分页样式 ===== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            gap: 10px;
        }
        
        .page-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            color: var(--dark);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .page-num:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
        }
        
        .page-num-current {
            background: var(--gradient);
            color: white;
        }
        
        /* ===== 底部样式 ===== */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(74, 108, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(142, 108, 247, 0.1) 0%, transparent 50%);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            color: white;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient);
        }
        
        .footer-column p, .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 12px;
            display: block;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-column a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
            color: white;
            font-size: 1.2rem;
        }
        
        .social-links a:hover {
            background: var(--gradient);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            position: relative;
            z-index: 1;
        }
        
        /* ===== 动画定义 ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* ===== 响应式设计 ===== */
        @media (max-width: 992px) {
            .news-list-item {
                flex-direction: column;
            }
            
            .news-list-image {
                width: 100%;
                height: 250px;
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
                box-shadow: var(--shadow);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .news-list {
                padding-top: 120px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .news-list-content h3 {
                font-size: 1.3rem;
            }
            
            .pagination {
                flex-wrap: wrap;
            }
        }