       
        /* 独享CSS - 页面主体部分 */
        
        /* 创意轮播图样式 */
        .hero-slider {
            position: relative;
            height: 700px;
            overflow: hidden;
            margin-top: 70px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            color: white;
            max-width: 50%;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .slide.active .slide-content {
            transform: translateX(0);
            opacity: 1;
        }
        
        .slide h2 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .slide p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gradient-accent);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .slide-image {
            width: 40%;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease 0.3s;
        }
        
        .slide.active .slide-image {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow-heavy);
        }
        
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .slider-dot::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: white;
            transform: scale(1.2);
        }
        
        .slider-dot.active::before {
            opacity: 1;
        }
        
        /* 创意开发区展示区 */
        .services-showcase {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }
        
        .services-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231a3a5f" fill-opacity="0.05" d="M0,128L48,117.3C96,107,192,85,288,101.3C384,117,480,171,576,170.7C672,171,768,117,864,101.3C960,85,1056,107,1152,122.7C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-accent);
        }
        
        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            color: white;
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .service-card:hover .service-content h3,
        .service-card:hover .service-content p {
            color: white;
        }
        
        .service-icon {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light-color);
            color: var(--accent-color);
            font-size: 48px;
            transition: all 0.3s ease;
        }
        
        .service-content {
            padding: 25px;
            position: relative;
            z-index: 2;
        }
        
        .service-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .service-content p {
            color: #666;
            transition: color 0.3s ease;
        }
        
        /* 创意核心优势 */
        .core-advantages {
            padding: 100px 0;
            position: relative;
        }
        
        .core-advantages::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: var(--light-color);
            z-index: -1;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .advantage-item {
            display: flex;
            align-items: flex-start;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.5s ease;
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .advantage-item:hover {
            background: var(--light-color);
            transform: translateX(-40px);
        }
        
        .advantage-item.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .advantage-item.animate:hover {
            transform: translateX(10px);
        }
        
        .advantage-icon {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            margin-right: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .advantage-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .advantage-item:hover .advantage-icon::before {
            opacity: 1;
        }
        
        .advantage-icon i {
            position: relative;
            z-index: 1;
        }
        
        .advantage-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        /* 创意关于我们 */
        .about-us {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #555;
        }
        
        .about-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            background: white;
            box-shadow: var(--shadow);
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--secondary-color);
            display: block;
        }
        
        .stat-label {
            color: #666;
            font-size: 16px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
            position: relative;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .about-image:hover::before {
            opacity: 0.2;
        }
        
        .about-image.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* 创意服务流程 */
        .service-process {
            padding: 100px 0;
            position: relative;
        }
        
        .service-process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%234a9fe3" fill-opacity="0.05" d="M0,128L48,117.3C96,107,192,85,288,101.3C384,117,480,171,576,170.7C672,171,768,117,864,101.3C960,85,1056,107,1152,122.7C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: var(--gradient);
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
            flex: 1;
        }
        
        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: var(--accent-color);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .step-icon {
            background: var(--gradient);
            color: white;
            border-color: transparent;
            transform: scale(1.1);
        }
        
        .step-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        /* 创意创业知识库 */
        .knowledge-base {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .article-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .article-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .article-card:hover::before {
            transform: scaleX(1);
        }
        
        .article-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .article-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .article-card:hover .article-image::before {
            opacity: 0.2;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.1);
        }
        
        .article-content {
            padding: 20px;
        }
        
        .article-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .article-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .article-content h3 a:hover {
            color: var(--secondary-color);
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 14px;
            margin-top: 15px;
        }
        
        .view-all {
            text-align: center;
            margin-top: 40px;
        }
        
        /* 响应式设计 - 独享部分 */
        @media (max-width: 992px) {
            .services-grid, .advantages-grid, .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                width: 50%;
                margin-bottom: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .slide {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }
            
            .slide-content {
                max-width: 100%;
                margin-bottom: 30px;
            }
            
            .slide-image {
                width: 70%;
            }
        }
        
        @media (max-width: 768px) {
            .hero-slider {
                height: 600px;
            }
            
            .slide h2 {
                font-size: 32px;
            }
            
            .services-grid, .advantages-grid, .articles-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
            
            .about-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .slide-image {
                width: 90%;
            }
        }