        /* 基础样式重置 */
        * {
            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);
        }
        
        /* 资讯详情页样式 */
        .news-detail-banner {
            padding: 80px 0;
            background: linear-gradient(135deg, #e5F8FF 0%, #6c6c6c 100%); 
            text-align: center;
        }
        
        .news-detail-banner h1 {
            font-size: 48px;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 24px;
        }
        
        .news-detail-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px;
            color: var(--text-color);
            font-size: 18px;
        }
        
        .news-detail-meta i {
            margin-right: 8px;
        }
        
        .news-detail-container {
            padding: 80px 0;
        }
        
        .news-detail-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .news-detail-image {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 48px;
        }
        
        .news-detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .news-detail-text {
            line-height: 1.8;
            color: var(--text-color);
            font-size: 18px;
        }
        
        .news-detail-text h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--dark-color);
            margin: 48px 0 24px 0;
        }
        
        .news-detail-text p {
            margin-bottom: 24px;
        }
        
        .news-detail-text ul {
            margin-bottom: 24px;
            padding-left: 24px;
        }
        
        .news-detail-text li {
            margin-bottom: 12px;
        }
        
        .news-detail-text blockquote {
            border-left: 4px solid var(--primary-color);
            padding-left: 24px;
            margin: 32px 0;
            font-style: italic;
            color: var(--dark-color);
        }
        
        .news-related {
            margin-top: 80px;
        }
        
        .news-related h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 32px;
        }
        
        .news-related-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .news-related-item {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .news-related-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .news-related-image {
            height: 150px;
            overflow: hidden;
        }
        
        .news-related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-related-item:hover .news-related-image img {
            transform: scale(1.05);
        }
        
        .news-related-content {
            padding: 16px;
        }
        
        .news-related-date {
            color: var(--text-color);
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .news-related-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-color);
            transition: color 0.3s ease;
        }
        
        .news-related-item:hover .news-related-title {
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .news-detail-banner h1 {
                font-size: 36px;
            }
            
            .news-detail-meta {
                flex-direction: column;
                gap: 16px;
            }
            
            .news-detail-image {
                height: 250px;
            }
            
            .news-related-list {
                grid-template-columns: 1fr;
            }
        }
    