 
        /* 英雄区域和轮播图 */
        .hero {
            position: relative;
            height: 600px;
            overflow: hidden;
            margin-bottom: 80px;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(10, 35, 66, 0.8) 0%, rgba(10, 35, 66, 0.4) 100%);
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .slide-content {
            position: relative;
            max-width: 650px;
            padding: 40px;
            color: var(--light);
            animation: fadeInUp 1s ease;
        }
        
        .slide-content h2 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 500px;
        }
        
        .slide-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }
        
        .slide-indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slide-indicator.active {
            background-color: var(--accent);
            transform: scale(1.2);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 园区介绍 */
        .intro {
            padding: 100px 0;
            background: var(--light);
            position: relative;
        }
        
        .intro::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--light);
            transform: skewY(-2deg);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
            font-weight: 700;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
        }
        
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .intro-text {
            padding-right: 30px;
        }
        
        .intro-text p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            line-height: 1.8;
            color: #444;
        }
        
        .intro-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-dark);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }
        
        .intro-image:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 园区服务 */
        .services {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--light);
            position: relative;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--primary);
            transform: skewY(-2deg);
        }
        
        .services .section-title h2 {
            color: var(--light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-dark);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2.2rem;
            color: var(--primary-dark);
        }
        
        .service-content h3 {
            color: var(--light);
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .service-content p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }
        
        /* 知识库 */
        .knowledge {
            padding: 100px 0;
            background: var(--light);
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
        }
        
        .article-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
        }
        
        .article-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .article-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.1);
        }
        
        .article-content {
            padding: 25px;
        }
        
        .article-content h3 {
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .article-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .read-more {
            color: var(--accent);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            position: relative;
        }
        
        .read-more::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .read-more:hover::after {
            width: 100%;
        }
        
        .read-more i {
            margin-left: 8px;
            transition: transform 0.3s;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
   
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .slide-content h2 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 992px) {
            .intro-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .intro-text {
                padding-right: 0;
            }
            
            .slide-content h2 {
                font-size: 2.5rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--primary-dark);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.4s ease;
                gap: 30px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                height: 500px;
            }
        }
        
        @media (max-width: 768px) {
            .logo h1 {
                font-size: 1.6rem;
            }
            
            .slide-content h2 {
                font-size: 2.2rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .services-grid,
            .articles-grid {
                grid-template-columns: 1fr;
            }
            
            .hero {
                height: 450px;
            }
        }
        
        @media (max-width: 576px) {
            .logo h1 {
                font-size: 1.4rem;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .slide-content h2 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .hero {
                height: 400px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }