       /* 独享CSS部分 - 服务页面内容 */
        .page-hero {
            height: 60vh;
            background: linear-gradient(135deg, rgba(255,107,53,0.9), rgba(0,168,232,0.8)), url('/template/jia/images/13.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .page-hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.5s;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .page-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .free-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(255, 209, 102, 0.5);
            animation: badgeBounce 2s infinite;
        }
        
        @keyframes badgeBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 服务详情样式 */
        .services-detail {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .service-detail-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .service-detail-card.animate {
            animation: fadeInUp 0.8s forwards;
        }
        
        .service-detail-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-detail-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .service-header {
            padding: 25px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
        }
        
        .service-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }
        
        .service-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .service-price {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .service-time {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-info {
            margin-bottom: 25px;
        }
        
        .service-info h4 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }
        
        .service-info ul {
            list-style: none;
            padding-left: 0;
        }
        
        .service-info li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .service-info li::before {
            content: '•';
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }
        
        .process-step {
            background: var(--light);
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            flex: 1;
            min-width: 120px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .process-step::after {
            content: '→';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            font-weight: bold;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .service-cta {
            text-align: center;
            margin-top: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 168, 232, 0.4);
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }
        
        .btn:hover::after {
            left: 100%;
        }
        
        /* 动画关键帧 */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 延迟动画 */
        .service-detail-card:nth-child(1) { animation-delay: 0.1s; }
        .service-detail-card:nth-child(2) { animation-delay: 0.2s; }
        .service-detail-card:nth-child(3) { animation-delay: 0.3s; }
        .service-detail-card:nth-child(4) { animation-delay: 0.4s; }
        .service-detail-card:nth-child(5) { animation-delay: 0.5s; }
        .service-detail-card:nth-child(6) { animation-delay: 0.6s; }
        .service-detail-card:nth-child(7) { animation-delay: 0.7s; }
        .service-detail-card:nth-child(8) { animation-delay: 0.8s; }
        .service-detail-card:nth-child(9) { animation-delay: 0.9s; }
        
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .process-steps {
                flex-direction: column;
            }
            
            .process-step::after {
                display: none;
            }
        }