 
        
        /* 页面标题横幅 */
        .page-banner {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: 100% 100%;
        }
        
        .page-banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            animation: fadeInUp 1s ease;
        }
        
        .page-banner p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            background-color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .breadcrumb-content {
            display: flex;
            align-items: center;
        }
        
        .breadcrumb-content a {
            color: var(--primary);
            transition: var(--transition);
        }
        
        .breadcrumb-content a:hover {
            color: var(--secondary);
        }
        
        .breadcrumb-content span {
            margin: 0 10px;
            color: #6c757d;
        }
        
        /* 服务分类导航 */
        .services-nav {
            background-color: white;
            padding: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 80px;
            z-index: 999;
        }
        
        .services-nav-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .service-nav-item {
            padding: 12px 25px;
            background-color: var(--light);
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .service-nav-item:hover, .service-nav-item.active {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(10, 36, 99, 0.2);
        }
        
        /* 服务内容区 */
        .services-content {
            padding: 80px 0;
        }
        
        .service-category {
            margin-bottom: 80px;
            background: white;
            border-radius: 15px;
			display: none;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

        }
        
        .service-category.visible {
		display: block; 
            opacity: 1;
            transform: translateY(0);
        }
        
        .category-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 100%);
            color: white;
            padding: 25px 30px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .category-header::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .category-header-icon {
            font-size: 2.5rem;
            margin-right: 20px;
            color: var(--secondary);
            position: relative;
            z-index: 1;
        }
        
        .category-header-content {
            position: relative;
            z-index: 1;
        }
        
        .category-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .category-header p {
            opacity: 0.9;
            max-width: 600px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            padding: 40px 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid #eee;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card-header {
            padding: 25px 25px 20px;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
        }
        
        .service-card-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .service-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
            margin: 15px 0;
        }
        
        .service-features {
            list-style: none;
            margin: 20px 0;
        }
        
        .service-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            border-bottom: 1px dashed #f0f0f0;
        }
        
        .service-features li:last-child {
            border-bottom: none;
        }
        
        .service-features li i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 0.8rem;
        }
        
        .service-card-body {
            padding: 0 25px 20px;
        }
        
        .service-card-footer {
            padding: 20px 25px;
            background: #f9fafb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            font-size: 0.9rem;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* 资料和流程部分 */
        .info-process-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }
        
        .info-process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
        }
        
        .info-box {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .info-box h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--secondary);
            display: flex;
            align-items: center;
        }
        
        .info-box h3 i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .info-list {
            list-style: none;
        }
        
        .info-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: flex-start;
        }
        
        .info-list li:last-child {
            border-bottom: none;
        }
        
        .info-list li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 25px;
            position: relative;
            margin-left: 20px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20px;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            position: relative;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }
        
        .step-content {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            flex: 1;
        }
        
        .step-content h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* 营销标语部分 */
        .marketing-section {
            padding: 80px 0;
            background: url('/jia/images/1.jpg') center/cover no-repeat;
            position: relative;
            color: white;
            text-align: center;
        }
        
        .marketing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.9) 0%, rgba(62, 146, 204, 0.8) 100%);
        }
        
        .marketing-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .marketing-content h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .marketing-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .marketing-point {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }
        
        .marketing-point:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .marketing-point i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .marketing-point h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        /* CTA区域 */
        .cta-section {
            text-align: center;
            padding: 80px 0;
            background-color: var(--primary);
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .btn-large {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            font-size: 1.1rem;
        }
        
        .btn-large:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .info-process-grid {
                grid-template-columns: 1fr;
            }
            
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .page-banner h1 {
                font-size: 2.2rem;
            }
            
            .page-banner p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .services-nav-container {
                flex-direction: column;
                align-items: center;
            }
            
            .service-nav-item {
                width: 100%;
                text-align: center;
            }
            
            .category-header {
                flex-direction: column;
                text-align: center;
            }
            
            .category-header-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                padding: 20px 15px;
            }
            
            .marketing-content h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .page-banner {
                padding: 80px 0;
            }
            
            .page-banner h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 8px 20px;
            }
            
            .info-box {
                padding: 20px 15px;
            }
            
            .process-steps {
                margin-left: 10px;
            }
            
            .step-number {
                width: 30px;
                height: 30px;
                margin-right: 15px;
            }
        }