     
        /* ===== 独享CSS ===== */
        
        /* 页面头部样式 */
        .page-header {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('/template/jia/images/1.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 0 80px;
            margin-top: 80px;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
        }
        
        /* 服务导航 */
        .service-nav {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 80px;
            z-index: 999;
        }
        
        .service-nav-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
            gap: 15px;
        }
        
        .service-nav-list a {
            color: var(--dark-color);
            text-decoration: none;
            padding: 8px 20px;
            border-radius: 30px;
            transition: var(--transition);
            font-weight: 500;
            border: 1px solid transparent;
        }
        
        .service-nav-list a:hover,
        .service-nav-list a.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        /* 服务详情样式 */
        .service-details {
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .service-details.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin-right: 25px;
            flex-shrink: 0;
            animation: rotate 10s linear infinite;
        }
        
        @keyframes rotate {
            0% {
                transform: rotate(0);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .service-title {
            flex: 1;
        }
        
        .service-title h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .service-title p {
            color: var(--dark-color);
            margin-bottom: 15px;
        }
        
        .service-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
        }
        
        .service-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .info-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .info-card h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gold-color);
            display: flex;
            align-items: center;
        }
        
        .info-card h3 i {
            margin-right: 10px;
            color: var(--gold-color);
        }
        
        .info-card ul {
            list-style: none;
        }
        
        .info-card ul li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .info-card ul li::before {
            content: '•';
            color: var(--gold-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 20px;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 25px;
            top: 50px;
            width: 2px;
            height: calc(100% - 40px);
            background: var(--secondary-color);
            z-index: -1;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            margin-right: 20px;
            flex-shrink: 0;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(26, 54, 93, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(26, 54, 93, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(26, 54, 93, 0);
            }
        }
        
        .step-content {
            flex: 1;
            padding-bottom: 20px;
        }
        
        .step-content h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .service-tag {
            display: inline-block;
            background: var(--gold-color);
            color: white;
            padding: 5px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gold-color);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--gold-color);
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            background: transparent;
            color: var(--gold-color);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .service-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .contact-phone {
                display: none;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .page-header {
                padding: 120px 0 60px;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .service-nav-list {
                gap: 10px;
            }
            
            .service-nav-list a {
                padding: 6px 15px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .service-title h2 {
                font-size: 1.5rem;
            }
            
            .service-nav-list {
                flex-direction: column;
                align-items: center;
            }
        }