
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            color: #333;
            background-color: #fff;
        }
        
        /* 颜色变量 */
        :root {
            --primary-color: #165DFF;
            --secondary-color: #36BFFA;
            --accent-color: #722ED1;
            --dark-color: #1D2129;
            --light-color: #F2F3F5;
            --text-color: #4E5969;
        }
        
        /* 工具类 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #0E42D2;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(22, 93, 255, 0.2);
        }
        
        .btn-secondary {
            background-color: white;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
        }
        
        .btn-secondary:hover {
            background-color: #F5F8FF;
            transform: translateY(-2px);
        }
        
        .text-center {
            text-align: center;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--dark-color);
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto 64px auto;
        }
        
        .card {
            background-color: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        /* 导航栏 */
        header {
            position: sticky;
            top: 0;
            background-color: white;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .logo-icon {
            width: 36px;
            height: 36px;
            background-color: var(--primary-color);
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
        }
        
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .nav-actions {
            display: flex;
            gap: 16px;
        }
        
        .mobile-menu-button {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        .mobile-menu {
            display: none;
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: white;
            padding: 16px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.3s ease forwards;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .mobile-menu ul {
            list-style: none;
        }
        
        .mobile-menu li {
            margin-bottom: 16px;
        }
        
        .mobile-menu a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
        }
        
        /* 页脚 */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 80px 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 3fr 1fr 1fr 1fr;
            gap: 64px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
        }
        
        .footer-logo-icon {
            width: 36px;
            height: 36px;
            background-color: var(--primary-color);
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 24px;
        }
        
        .social-links {
            display: flex;
            gap: 16px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .footer-section h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 16px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            margin-top: 64px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: var(--primary-color);
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links, .nav-actions {
                display: none;
            }
            
            .mobile-menu-button {
                display: block;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 24px;
            }
        }
        
        /* 资讯列表页样式 */
        .news-banner {
            padding: 80px 0;
            background: linear-gradient(135deg, #e5F8FF 0%, #6c6c6c 100%);
            text-align: center;
        }
        
        .news-banner h1 {
            font-size: 48px;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 16px;
        }
        
        .news-banner p {
            font-size: 20px;
            color: var(--text-color);
        }
        
        .news-container {
            padding: 80px 0;
        }
        
        .news-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 48px;
        }
        
        .news-filter {
            padding: 10px 20px;
            border-radius: 24px;
            background-color: #F5F8FF;
            color: var(--text-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .news-filter:hover, .news-filter.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .news-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }
        
        .news-item {
            display: flex;
            gap: 32px;
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .news-item-image {
            width: 300px;
            height: 200px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .news-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-item:hover .news-item-image img {
            transform: scale(1.05);
        }
        
        .news-item-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .news-item-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }
        
        .news-item-date, .news-item-category {
            color: var(--text-color);
            font-size: 14px;
        }
        
        .news-item-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--dark-color);
            transition: color 0.3s ease;
        }
        
        .news-item:hover .news-item-title {
            color: var(--primary-color);
        }
        
        .news-item-description {
            color: var(--text-color);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        .news-item-link {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: transform 0.3s ease;
        }
        
        .news-item-link:hover {
            transform: translateX(5px);
        }
        
        .news-item-link i {
            margin-left: 8px;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 64px;
        }
        
        .page-item {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #F5F8FF;
            color: var(--text-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .page-item:hover, .page-item.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        @media (max-width: 768px) {
            .news-item {
                flex-direction: column;
            }
            
            .news-item-image {
                width: 100%;
                height: 200px;
            }
        }
 