 :root {
            --primary-color: #069BDB;
            --secondary-color: #D9D9D9;
            --accent-color: #FF6B35;
            --dark-bg: #1D2B36;
            --light-bg: #F5F5F5;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        .text-gradient {
            background: linear-gradient(90deg, var(--primary-color), #1D7CAE);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .bg-gradient {
            background: linear-gradient(135deg, var(--primary-color), #1D7CAE);
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .news-card {
            transition: all 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .news-image {
            height: 200px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .news-image img {
            transform: scale(1.1);
        }
        
        .category-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .category-company {
            background: #E8F4FD;
            color: #1D7CAE;
        }
        
        .category-industry {
            background: #F0F4F8;
            color: var(--primary-color);
        }
        
        .category-tech {
            background: #FFF5F5;
            color: #E53E3E;
        }
        
        .category-event {
            background: #F0FFF4;
            color: #38A169;
        }
        
        .pagination-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pagination-item:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .pagination-item.active {
            background: var(--primary-color);
            color: white;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 加载动画 */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-circle {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.1);
            border-top: 5px solid var(--accent-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .news-card {
                margin-bottom: 20px;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .desktop-menu {
                display: none;
            }
        }


		/* 分页容器 */
        .pagination {
            display: flex;
            align-items: center;
            justify-content: center; /* 水平居中 */
            gap: 0.5rem;
            padding: 1rem;
            font-family: Arial, sans-serif;
            flex-wrap: wrap;
            margin: 30px auto 0; /* 距顶部200px + 水平居中 */
            max-width: 100%;
        }

        /* 当前页码样式 */
        .current {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: #0B3C5D;
            color: white;
            border-radius: 4px;margin-right: 2px;margin-left: 2px;
            font-weight: bold;
        }

        /* 页码链接样式 */
        .num {
            display: inline-block;
            padding: 0.5rem 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;margin-right: 2px;margin-left: 2px;
            color: #0B3C5D;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .num:hover {
            background-color: #E5E7EB5f5;
            border-color: #ccc;color: #333;
        }

        /* 下一页样式 */
        .next {
            display: inline-block;
            padding: 0.5rem 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            color: #0B3C5D;background-color: #E5E7EB;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .next:hover {
            background-color: #E5E7EB;
            border-color: #ccc;color: #333;
        }

		/* 下一页样式 */
        .prev {
            display: inline-block;
            padding: 0.5rem 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;background-color: #E5E7EB;
            color: #0B3C5D;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .prev:hover {
            background-color: #E5E7EB;
            border-color: #ccc;color: #333;
        }


        /* 最后一页样式 */
        .end {
            display: inline-block;
            padding: 0.5rem 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            color: #333;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .end:hover {
            background-color: #f5f5f5;
            border-color: #ccc;color: #333;
        }

        /* 响应式适配 */
        @media (max-width: 600px) {
            .pagination {
                gap: 0.3rem;
                padding: 0.8rem;
            }
            
            .current, .num, .next, .end {
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 400px) {
            .current, .num, .next, .end {
                padding: 0.3rem 0.6rem;
                font-size: 0.8rem;
            }
        }