      /* ====== 服务页面独享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); }
        }

        /* 页面顶部横幅 */
        .services-hero {
            position: relative;
            height: 400px;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 160, 233, 0.8) 100%), url('/template/giaxi/images/13.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            margin-top: 100px;
            overflow: hidden;
        }

        .services-hero-content {
            max-width: 800px;
            z-index: 2;
        }

        .services-hero h1 {
            color: white;
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .services-hero p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }

        /* 服务导航 */
        .services-nav {
            background: white;
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.08);
            position: sticky;
            top: 100px;
            z-index: 9999;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        }

        .services-nav-container {
            display: flex;
            justify-content: center;
            padding: 20px 0;
            flex-wrap: wrap;
            gap: 15px;
        }

        .service-nav-item {
            padding: 12px 25px;
            border-radius: 50px;
            background: rgba(0, 102, 204, 0.05);
            color: var(--primary-color);
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid transparent;
            cursor: pointer;
            font-size: 1rem;
        }

        .service-nav-item:hover, .service-nav-item.active {
            background: var(--gradient-primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
        }

        /* 服务详情部分 */
        .service-detail-section {
            padding: 80px 0;
            position: relative;
        }

        .service-detail-section:nth-child(even) {
            background: white;
        }

        .service-detail-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .service-info {
            position: sticky;
            top: 200px;
        }

        .service-icon-large {
            font-size: 4rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
            display: inline-block;
            position: relative;
        }

        .service-icon-large:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: rgba(0, 160, 233, 0.1);
            border-radius: 50%;
            z-index: -1;
        }

        .service-price-tag {
            display: inline-block;
            background: var(--gradient-accent);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.5rem;
            margin: 20px 0;
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        .service-highlight {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .service-content {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        .service-subcategories {
            margin-top: 40px;
        }

        .subcategory-item {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        }

        .subcategory-item:last-child {
            border-bottom: none;
        }

        .subcategory-title {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: var(--dark-color);
            font-size: 1.3rem;
        }

        .subcategory-title i {
            color: var(--secondary-color);
            margin-right: 15px;
            font-size: 1.5rem;
        }

        .info-box {
            background: rgba(0, 102, 204, 0.03);
            border-left: 4px solid var(--secondary-color);
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .info-box-title {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }

        .info-box-title i {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        .info-list {
            list-style: none;
            margin-left: 10px;
        }

        .info-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }

        .info-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
        }

        .process-steps-small {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }

        .process-step-small {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .step-number-small {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);

            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            flex-shrink: 0;
        }

        /* 价格对比表 */
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .price-table th {
            background: var(--gradient-primary);
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 700;
        }

        .price-table td {
            padding: 20px;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        }

        .price-table tr:nth-child(even) {
            background: rgba(0, 102, 204, 0.02);
        }

        .price-table tr:hover {
            background: rgba(0, 102, 204, 0.05);
        }

        .price-table .price {
            color: var(--secondary-color);
            font-weight: 800;
            font-size: 1.2rem;
        }

        /* 服务比较部分 */
        .services-comparison {
            background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
            padding: 100px 0;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 50px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 102, 204, 0.1);
            background: white;
        }

        .comparison-table th {
            background: var(--gradient-primary);
            color: white;
            padding: 25px;
            text-align: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .comparison-table td {
            padding: 25px;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
            text-align: center;
        }

        .comparison-table .service-name {
            text-align: left;
            font-weight: 700;
            color: var(--dark-color);
        }

        .comparison-table tr:nth-child(even) {
            background: rgba(0, 102, 204, 0.02);
        }

        .comparison-table i.fa-check {
            color: #00c853;
            font-size: 1.5rem;
        }

        .comparison-table i.fa-times {
            color: #ff5252;
            font-size: 1.5rem;
        }

        /* CTA部分 */
        .services-cta {
            background: var(--gradient-primary);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .services-cta h2 {
            color: white;
        }

        .services-cta h2:after {
            background: white;
        }

        .services-cta p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .services-cta .btn {
            background: white;
            color: var(--primary-color);
            font-size: 1.2rem;
            padding: 20px 50px;
        }

        .services-cta .btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

.cta-email-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid white !important;
    color: white !important;
}

.cta-email-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-5px);
}

        /* 动画效果 */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .float-animation {
            animation: float 5s ease-in-out 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);
        }

        /* 响应式调整 */
        @media (max-width: 1200px) {
            .service-detail-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .service-info {
                position: static;
            }
            
            .comparison-table {
                font-size: 0.9rem;
            }
            
            .comparison-table th, .comparison-table td {
                padding: 15px;
            }
        }

        @media (max-width: 992px) {
            .services-nav-container {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .service-nav-item {
                white-space: nowrap;
            }
            
            .service-content {
                padding: 30px;
            }
            
            .price-table th, .price-table td {
                padding: 15px;
            }
        }

        @media (max-width: 768px) {
            .services-hero {
                height: 400px;
                margin-top: 80px;
            }
            
            .services-hero h1 {
                font-size: 2.8rem;
            }
            
            .services-hero p {
                font-size: 1.2rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .service-icon-large {
                font-size: 3rem;
            }
            
            .service-price-tag {
                font-size: 1.2rem;
                padding: 10px 20px;
            }
        }

        @media (max-width: 576px) {
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
            
            .price-table {
                font-size: 0.85rem;
            }
            
            .price-table th, .price-table td {
                padding: 10px;
            }
        }