 :root {
            --primary-color: #4a6cf7;
            --primary-hover: #3a5ad1;
            --secondary-color: #00c2b8;
            --accent-color: #ff6b35;
            --text-color: #333;
            --text-light: #666;
            --text-lighter: #999;
            --background-color: #f8f9fa;
            --card-background: #ffffff;
            --border-color: #e0e0e0;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航栏样式 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: var(--transition);
        }

        header.scrolled .header-container {
            padding: 10px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 16px;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 8px 0;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(74, 108, 247, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
        }

        /* 面包屑导航 */
        .breadcrumb {
            padding: 120px 0 20px;
            background-color: white;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

        .breadcrumb span {
            color: var(--primary-color);
            font-size: 14px;
            font-weight: 500;
        }

        .breadcrumb i {
            color: var(--text-lighter);
            font-size: 12px;
        }

        /* 页面标题 */
        .page-title {
            padding: 40px 0;
            background-color: white;
            text-align: center;
            position: relative;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background-color: var(--border-color);
        }

        .page-title h1 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .page-title p {
            font-size: 16px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* 新闻内容区域 */
        .news-content {
            padding: 60px 0;
        }

        .news-layout {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
        }

        /* 主内容区 */
        .main-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* 置顶新闻 */
        .featured-news {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
         
        }

        .featured-news:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .featured-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .featured-news:hover .featured-image img {
            transform: scale(1.05);
        }

        .featured-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-badge {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
            width: fit-content;
        }

        .featured-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .featured-news:hover .featured-title {
            color: var(--primary-color);
        }

        .featured-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--text-light);
        }

        .featured-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .featured-excerpt {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 25px;
            flex: 1;
        }

        .featured-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .featured-link:hover {
            transform: translateX(5px);
        }

        /* 新闻列表 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .news-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 20px;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .news-thumbnail {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .news-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .news-card:hover .news-thumbnail img {
            transform: scale(1.05);
        }

        .news-info {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .news-category {
            display: inline-block;
            background-color: #f0f5ff;
            color: var(--primary-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
            width: fit-content;
        }

        .news-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 10px;
            line-height: 1.4;
            transition: var(--transition);
        }

        .news-card:hover .news-title {
            color: var(--primary-color);
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 13px;
            color: var(--text-light);
        }

        .news-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .news-excerpt {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            flex: 1;
        }

        .news-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .news-read-more {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 14px;
        }

        .news-read-more:hover {
            transform: translateX(3px);
        }

        .news-comments {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--text-light);
            font-size: 13px;
        }

        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
            padding: 20px 0;
        }

        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }

        .pagination a:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .pagination a.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .pagination .prev,
        .pagination .next {
            width: auto;
            padding: 0 15px;
            border-radius: 20px;
        }

        /* 侧边栏 */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* 搜索框 */
        .search-box {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
        }

        .search-box h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .search-input {
            display: flex;
            gap: 10px;
        }

        .search-input input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--border-color);
            border-radius: 30px;
            font-size: 14px;
            transition: var(--transition);
        }

        .search-input input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
        }

        .search-input button {
            padding: 12px 20px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
            font-weight: 600;
        }

        .search-input button:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(74, 108, 247, 0.3);
        }

        /* 新闻分类 */
        .news-categories {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
        }

        .news-categories h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .category-list {
            list-style: none;
        }

        .category-item {
            margin-bottom: 10px;
        }

        .category-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            background-color: var(--background-color);
            color: var(--text-color);
            text-decoration: none;
            border-radius: 8px;
            transition: var(--transition);
            font-size: 14px;
        }

        .category-link:hover {
            background-color: #e6f0ff;
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .category-count {
            background-color: var(--primary-color);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
        }

        /* 热门新闻 */
        .popular-news {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
        }

        .popular-news h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .popular-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .popular-item {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 15px;
            align-items: center;
        }

        .popular-thumbnail {
            width: 100%;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
        }

        .popular-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .popular-item:hover .popular-thumbnail img {
            transform: scale(1.05);
        }

        .popular-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 5px;
            line-height: 1.4;
            transition: var(--transition);
        }

        .popular-item:hover h4 {
            color: var(--primary-color);
        }

        .popular-date {
            font-size: 12px;
            color: var(--text-light);
        }

        /* 标签云 */
        .tag-cloud {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
        }

        .tag-cloud h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            display: inline-block;
            padding: 8px 15px;
            background-color: var(--background-color);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 20px;
            font-size: 13px;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }

        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            border-color: var(--primary-color);
        }

        /* CTA 部分 */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .cta-button {
            background-color: white;
            color: var(--primary-color);
            padding: 14px 35px;
            font-size: 16px;
            font-weight: 700;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-shape {
            position: absolute;
            z-index: 1;
            opacity: 0.1;
        }

        .cta-shape-1 {
            top: 10%;
            right: 10%;
            width: 300px;
            height: 300px;
            background-color: white;
            border-radius: 50%;
        }

        .cta-shape-2 {
            bottom: 10%;
            left: 10%;
            width: 200px;
            height: 200px;
            background-color: white;
            border-radius: 50%;
        }

        /* 页脚 */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 80px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            font-weight: bold;
        }

        .footer-logo-text {
            font-size: 24px;
            font-weight: 700;
            color: white;
        }

        .footer-about {
            font-size: 15px;
            color: #bdc3c7;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-column h3 {
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 15px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-contact-item i {
            color: var(--secondary-color);
            margin-top: 4px;
        }

        .footer-contact-item p {
            color: #bdc3c7;
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: #95a5a6;
            font-size: 14px;
        }

        .footer-links-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-links-container a {
            color: #95a5a6;
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-links-container a:hover {
            color: white;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .news-layout {
                grid-template-columns: 1fr;
            }

            .sidebar {
                order: 1;
            }

            .main-content {
                order: 2;
            }

            .featured-news {
                grid-template-columns: 1fr;
            }

            .featured-image {
                height: 250px;
            }

            .news-card {
                grid-template-columns: 1fr;
            }

            .news-thumbnail {
                height: 250px;
            }

            .cta-title {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .breadcrumb {
                padding: 100px 0 20px;
            }

            .page-title h1 {
                font-size: 32px;
            }

            .featured-content {
                padding: 25px;
            }

            .featured-title {
                font-size: 24px;
            }

            .news-info {
                padding: 20px 25px;
            }

            .footer-content {
                gap: 30px;
            }

            .footer-links-container {
                flex-wrap: wrap;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .breadcrumb-container {
                flex-wrap: wrap;
            }

            .page-title h1 {
                font-size: 28px;
            }

            .page-title p {
                font-size: 15px;
            }

            .featured-content {
                padding: 20px;
            }

            .featured-title {
                font-size: 22px;
            }

            .featured-meta {
                flex-wrap: wrap;
                gap: 10px;
            }

            .news-info {
                padding: 15px 20px;
            }

            .news-title {
                font-size: 18px;
            }

            .news-meta {
                flex-wrap: wrap;
                gap: 10px;
            }

            .cta-title {
                font-size: 24px;
            }

            .cta-description {
                font-size: 15px;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 15px;
            }

            .pagination a {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .pagination .prev,
            .pagination .next {
                padding: 0 10px;
            }
        }

        /* 动画效果 */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }