    /* ===== 独享CSS部分 ===== */
        /* 创意极简轮播图样式 */
        .hero-slider {
            height: 100vh;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            display: flex;
            align-items: center;
        }

        .slides {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            max-width: 800px;
            padding: 60px;
            margin-left: 10%;
            position: relative;
            z-index: 2;
        }

        .slide-content h1 {
            font-size: 5rem;
            margin-bottom: 30px;
            animation: slideInLeft 1.5s ease;
            line-height: 1.1;
        }

        .slide-content p {
            font-size: 1.5rem;
            margin-bottom: 45px;
            color: rgba(255, 255, 255, 0.9);
            animation: slideInLeft 1.5s ease 0.4s both;
            font-weight: 400;
        }

        .slider-dots {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }

        .dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 10px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .dot::after {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            border: 2px solid transparent;
            border-radius: 50%;
            transition: var(--transition);
        }

        .dot.active {
            background: white;
            transform: scale(1.3);
        }

        .dot.active::after {
            border-color: rgba(255, 255, 255, 0.5);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* 创意服务展示区样式 */
        .development-zones {
            background: white;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 100px;
        }

        .section-title h2 {
            color: var(--primary-color);
            display: inline-block;
        }

        .zones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .zone-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            padding: 50px 30px;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .zone-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            transition: var(--transition);
            z-index: -1;
        }

        .zone-card:hover::before {
            height: 100%;
        }

        .zone-card:hover {
            transform: translateY(-20px) rotate(2deg);
            color: white;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .zone-card:hover h3,
        .zone-card:hover .zone-icon {
            color: white;
        }

        .zone-icon {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .zone-card h3 {
            margin-bottom: 20px;
            transition: var(--transition);
            font-size: 1.8rem;
        }

        /* 核心优势样式 */
        .advantages-section {
            background: linear-gradient(135deg, var(--light-color) 0%, #eef2ff 100%);
            position: relative;
            overflow: hidden;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
        }

        .advantage-card {
            background: white;
            border-radius: 25px;
            padding: 50px 35px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 10px;
            height: 100%;
            background: var(--secondary-color);
            transition: var(--transition);
        }

        .advantage-card:hover::before {
            width: 100%;
            opacity: 0.08;
        }

        .advantage-card:hover {
            transform: translateY(-20px) scale(1.02);
        }

        .advantage-icon {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .advantage-card:hover .advantage-icon {
            transform: scale(1.3) rotate(15deg);
            color: var(--secondary-color);
        }

        .advantage-card h3 {
            margin-bottom: 25px;
            z-index: 1;
            font-size: 1.8rem;
        }

        .advantage-card p {
            z-index: 1;
            font-size: 1.2rem;
        }

        /* 关于我们样式 */
        .about-us {
            background: white;
            position: relative;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h2 {
            text-align: left;
            color: var(--primary-color);
        }

        .experience-badge {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 800;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        .experience-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            transition: var(--transition);
            z-index: -1;
        }

        .experience-badge:hover::before {
            left: 0;
        }

        .about-image {
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 30px 30px 0 var(--accent-color);
            transform: rotate(-5deg);
            transition: var(--transition);
            position: relative;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(10, 36, 99, 0.2), rgba(78, 205, 196, 0.2));
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }

        .about-image:hover::before {
            opacity: 1;
        }

        .about-image:hover {
            transform: rotate(0deg) scale(1.05);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.1);
        }

        /* 创意服务流程样式 */
        .process-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .process-section h2 {
            color: white;
        }

        .process-section h2::before {
            background: var(--secondary-color);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 80px;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .step-icon {
            width: 150px;
            height: 150px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 40px;
            font-size: 3rem;
            color: var(--primary-color);
            position: relative;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }

        .step:hover .step-icon {
            transform: scale(1.2) rotate(15deg);
            background: var(--secondary-color);
            color: white;
        }

        .step-number {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.5rem;
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.5);
        }

        .step h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .step p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
        }

        /* 知识库样式 */
        .knowledge-base {
            background: white;
            position: relative;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
        }

        .article-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .article-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
        }

        .article-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .article-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
            opacity: 0;
            transition: var(--transition);
        }

        .article-card:hover .article-image::after {
            opacity: 1;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .article-card:hover .article-image img {
            transform: scale(1.15);
        }

        .article-content {
            padding: 35px;
            position: relative;
        }

        .article-content h3 {
            margin-bottom: 20px;
            transition: var(--transition);
            font-size: 1.8rem;
        }

        .article-card:hover .article-content h3 {
            color: var(--secondary-color);
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 1rem;
            color: #777;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #eee;
        }

        .read-more {
            color: var(--secondary-color);
            font-weight: 700;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .read-more:hover {
            color: var(--primary-color);
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            h1 {
                font-size: 4rem;
            }
            
            h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .slide-content {
                margin-left: 5%;
            }
            
            .process-steps {
                flex-wrap: wrap;
                gap: 50px;
            }
            
            .step {
                flex: 0 0 calc(50% - 25px);
            }
            
            .process-steps::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 20px 0;
            }
            
            .nav-links {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background: white;
                flex-direction: column;
                align-items: center;
                padding-top: 80px;
                transition: var(--transition);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 25px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 100px 0;
            }
            
            .advantages-grid,
            .articles-grid {
                grid-template-columns: 1fr;
            }
            
            .slide-content h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero-slider {
                height: 85vh;
            }
            
            .slide-content {
                padding: 40px;
            }
            
            .slide-content h1 {
                font-size: 2.5rem;
            }
            
            .step {
                flex: 0 0 100%;
            }
            
            .zone-card,
            .advantage-card {
                padding: 40px 25px;
            }
            
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
        }