  /* ====== 独享CSS部分 ====== */
        
        /* 背景动画元素 */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-secondary);
            opacity: 0.05;
            z-index: -1;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            top: 10%;
            right: -200px;
            animation: float-1 25s infinite ease-in-out;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            bottom: 10%;
            left: -150px;
            animation: float-2 30s infinite ease-in-out;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            right: 10%;
            animation: float-3 20s infinite ease-in-out;
        }

        @keyframes float-1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, 50px) rotate(120deg); }
            66% { transform: translate(-20px, 30px) rotate(240deg); }
        }

        @keyframes float-2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-40px, 30px) rotate(120deg); }
            66% { transform: translate(20px, -20px) rotate(240deg); }
        }

        @keyframes float-3 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(20px, -30px) rotate(120deg); }
            66% { transform: translate(-30px, 20px) rotate(240deg); }
        }

        /* 轮播图样式 - 国际现代化版本 */
        .hero-slider {
            position: relative;
            height: 100vh;
            min-height: 800px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            opacity: 0;
            transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            max-width: 850px;
            color: var(--dark-color);
            padding: 0 30px;
            transform: translateY(60px) scale(0.95);
            opacity: 0;
            transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
        }

        .slide.active .slide-content {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .slide-content h1 {
            color: var(--dark-color);
            font-size: 5rem;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .slide-content p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: var(--gray-color);
        }

        .slide-1 {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%), url('/template/giaxi/images/3.jpg');
        }

        .slide-2 {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%), url('/template/giaxi/images/6.jpg');
        }

        .slide-3 {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%), url('/template/giaxi/images/10.jpg');
        }

        .slider-nav {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
        }

        .slider-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(0, 102, 204, 0.2);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            border: 2px solid transparent;
        }

        .slider-dot:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--secondary-color);
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(0, 160, 233, 0.5);
        }

        .slider-dot.active:before {
            border-color: var(--secondary-color);
        }

        .slider-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: rgba(0, 102, 204, 0.1);
        }

        .slider-progress-bar {
            height: 100%;
            width: 0%;
            background: var(--gradient-primary);
            transition: width 5s linear;
        }

        .slide.active ~ .slider-progress .slider-progress-bar {
            width: 100%;
        }

        /* 服务板块样式 */
        .services {
            position: relative;
            overflow: hidden;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px 40px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(0, 102, 204, 0.1);
            position: relative;
            overflow: hidden;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .service-card:hover:before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 25px 60px rgba(0, 102, 204, 0.15);
            border-color: rgba(0, 102, 204, 0.2);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .service-icon:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(0, 160, 233, 0.1);
            border-radius: 50%;
            z-index: -1;
        }

        .service-card h3 {
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .service-price {
            font-size: 2.2rem;
            color: var(--secondary-color);
            font-weight: 800;
            margin: 25px 0;
            position: relative;
            display: inline-block;
        }

        .service-price:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

        .service-desc {
            color: var(--gray-color);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        /* 为什么选择上海板块 */
        .why-shanghai {
            position: relative;
            overflow: hidden;
            background: var(--light-bg);
        }

        .shanghai-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .shanghai-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            position: relative;
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        .shanghai-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
            mix-blend-mode: overlay;
        }

        .shanghai-image:hover:before {
            opacity: 0.1;
        }

        .shanghai-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .shanghai-image:hover img {
            transform: scale(1.1);
        }

        .shanghai-benefits {
            list-style: none;
        }

        .shanghai-benefits li {
            margin-bottom: 35px;
            padding-left: 50px;
            position: relative;
        }

        .shanghai-benefits i {
            position: absolute;
            left: 0;
            top: 0;
            color: var(--secondary-color);
            font-size: 1.8rem;
            width: 40px;
            height: 40px;
            background: rgba(0, 160, 233, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 160, 233, 0.2);
        }

        .shanghai-benefits h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        /* 关于我们板块 */
        .about {
            position: relative;
            overflow: hidden;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            margin-top: 50px;
        }

        .stat-item {
            text-align: center;
            padding: 40px 25px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        .stat-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .stat-item:hover:before {
            transform: scaleX(1);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 102, 204, 0.2);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1;
            margin-bottom: 15px;
            display: block;
        }

        .stat-label {
            color: var(--dark-color);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .team-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 40px;
        }

        .team-badge {
            background: rgba(0, 160, 233, 0.1);
            color: var(--secondary-color);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 700;
            border: 1px solid rgba(0, 160, 233, 0.2);
            transition: var(--transition);
        }

        .team-badge:hover {
            background: var(--secondary-color);
            color: white;
            border-color: var(--secondary-color);
            transform: translateY(-5px);
        }

        /* 我们的优势板块 */
        .advantages {
            position: relative;
            overflow: hidden;
            background: var(--light-bg);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 50px;
        }

        .advantage-card {
            text-align: center;
            padding: 50px 35px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            background: white;
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(0, 102, 204, 0.1);
            position: relative;
            overflow: hidden;
        }

        .advantage-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .advantage-card:hover:before {
            opacity: 0.03;
        }

        .advantage-card > * {
            position: relative;
            z-index: 1;
        }

        .advantage-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 102, 204, 0.1);
            border-color: rgba(0, 102, 204, 0.2);
        }

        .advantage-icon {
            width: 100px;
            height: 100px;
            background: rgba(0, 102, 204, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 35px;
            font-size: 2.8rem;
            color: var(--primary-color);
            transition: var(--transition);
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        .advantage-card:hover .advantage-icon {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.1);
            border-color: var(--primary-color);
        }

        /* 服务流程板块 */
        .process {
            position: relative;
            overflow: hidden;
            background: white;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 80px;
            position: relative;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(0, 102, 204, 0.1);
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 20px;
        }

        .step-number {
            width: 120px;
            height: 120px;
            background: white;
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            font-weight: 800;
            margin: 0 auto 35px;
            position: relative;
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
            transition: var(--transition);
            border: 5px solid white;
        }

        .process-step:hover .step-number {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.1) rotate(10deg);
            border-color: rgba(0, 102, 204, 0.2);
        }

        .step-content h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        /* 知识库板块 */
        .knowledge {
            position: relative;
            overflow: hidden;
            background: var(--light-bg);
        }

        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 50px;
        }

        .article-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        .article-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 102, 204, 0.12);
            border-color: rgba(0, 102, 204, 0.2);
        }

        .article-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .article-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
            mix-blend-mode: overlay;
        }

        .article-card:hover .article-image:before {
            opacity: 0.2;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .article-card:hover .article-image img {
            transform: scale(1.1);
        }

        .article-content {
            padding: 35px;
        }

        .article-content h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .article-content a {
            color: var(--dark-color);
            font-weight: 700;
        }

        .article-content a:hover {
            color: var(--secondary-color);
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray-color);
            font-size: 0.95rem;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 102, 204, 0.05);
        }

        /* 动画效果 */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(0, 160, 233, 0.5);
            }
            50% {
                box-shadow: 0 0 40px rgba(0, 160, 233, 0.8);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .float-animation {
            animation: float 5s ease-in-out infinite;
        }

        .pulse-glow-animation {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .rotate-animation {
            animation: rotate 20s linear infinite;
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-on-scroll-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .animate-on-scroll-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-on-scroll-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .animate-on-scroll-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* 响应式调整 */
        @media (max-width: 1200px) {
            .services-grid, .advantages-grid, .knowledge-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .shanghai-content, .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                flex: 0 0 calc(50% - 40px);
                margin-bottom: 60px;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .slide-content h1 {
                font-size: 4rem;
            }
        }

        @media (max-width: 768px) {
            .services-grid, .advantages-grid, .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                flex: 0 0 100%;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .slide-content h1 {
                font-size: 3rem;
            }
            
            .slide-content p {
                font-size: 1.3rem;
            }
            
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .service-card, .advantage-card {
                padding: 40px 30px;
            }
        }