
        
        /* 独享CSS - 服务页面 */
        
        /* 页面横幅 */
        .page-banner {
            background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.7)), url('/template/jia/images/13.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }
        
        .banner-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .banner-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }
        
        /* 服务分类导航 */
        .service-nav {
            background: var(--light-color);
            padding: 20px 0;
            position: sticky;
            top: 70px;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .service-nav-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .service-nav-item {
            padding: 10px 20px;
            background: white;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .service-nav-item:hover, .service-nav-item.active {
            background: var(--secondary-color);
            color: var(--dark-color);
            transform: translateY(-3px);
        }
        
        /* 服务详情 */
        .service-details {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition);
        }
        
        .service-details.animate {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .service-header {
            background: var(--primary-color);
            color: white;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .service-title {
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }
        
        .service-title i {
            margin-right: 15px;
            font-size: 2rem;
            color: var(--secondary-color);
        }
        
        .service-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .info-box {
            background: var(--light-color);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
        }
        
        .info-box h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .info-box h3 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .info-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .info-list li::before {
            content: '•';
            color: var(--secondary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 20px;
            background: var(--light-color);
            border-radius: 8px;
            position: relative;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            color: var(--dark-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 15px;
        }
        
        .process-step h4 {
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .service-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary-color);
            color: var(--dark-color);
            padding: 5px 15px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .service-feature {
            background: var(--light-color);
            padding: 30px;
            border-radius: 8px;
            margin-top: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .feature-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        /* 服务咨询 */
        .service-consult {
            background: var(--primary-color);
            color: white;
            padding: 50px 0;
            text-align: center;
        }
        
        .consult-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .consult-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .consult-phone {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        
        .consult-phone i {
            font-size: 1.8rem;
        }
        
        .consult-note {
            font-size: 0.9rem;
            opacity: 0.8;
        }