     
        /* 页面标题样式 */
        .page-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 150px 0 100px;
            margin-top: 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/4.jpg') center/cover no-repeat;
            opacity: 0.1;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
        }
        
        .page-header p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            position: relative;
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            color: white;
        }
        
        .breadcrumb span {
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* 服务概览样式 */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title h2 {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        /* 服务概览样式 */
        .services-overview {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .services-overview::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 109, 252, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(40px);
            position: relative;
            text-align: center;
            padding: 40px 25px;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .service-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: scale(0);
            border-radius: 50%;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-icon {
            transform: rotateY(180deg);
        }
        
        .service-card:hover .service-icon::before {
            transform: scale(1);
        }
        
        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary);
            font-weight: 600;
        }
        
        .service-content p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 15px;
            line-height: 1.6;
        }
        
        .service-price {
            color: var(--primary);
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        /* 服务详情样式 */
        .services-details {
            position: relative;
            overflow: hidden;
        }
        
        .services-details::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 109, 252, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
        }
        
        .service-tabs {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
            justify-content: center;
        }
        
        .service-tab {
            padding: 15px 30px;
            margin: 0 10px 10px;
            background-color: var(--light-gray);
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .service-tab.active {
            background-color: var(--primary);
            color: white;
        }
        
        .service-tab:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        .service-detail {
            display: none;
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .service-detail.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-detail-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .service-detail-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            margin-right: 25px;
            flex-shrink: 0;
        }
        
        .service-detail-title h3 {
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .service-detail-title p {
            color: var(--gray);
            font-size: 16px;
        }
        
        .service-detail-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .service-info-box {
            background-color: var(--light);
            border-radius: 10px;
            padding: 25px;
            transition: var(--transition);
        }
        
        .service-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-info-box h4 {
            font-size: 20px;
            color: var(--secondary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
            font-weight: 600;
        }
        
        .service-info-box ul {
            list-style-type: disc;
            padding-left: 20px;
        }
        
        .service-info-box li {
            margin-bottom: 10px;
            color: var(--gray);
            line-height: 1.5;
        }
        
        .service-highlight {
            background: linear-gradient(135deg, #e6f0ff 0%, #f0f9ff 100%);
            border-left: 5px solid var(--primary);
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
            display: flex;
            align-items: center;
        }
        
        .service-highlight i {
            font-size: 32px;
            color: var(--primary);
            margin-right: 20px;
        }
        
        .service-highlight p {
            color: var(--secondary);
            font-weight: 500;
            margin: 0;
            font-size: 18px;
        }
        
        /* 扶持政策样式 */
        .policy-section {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .policy-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 109, 252, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
        }
        
        .policy-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .policy-text {
            flex: 1;
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .policy-text.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .policy-text h3 {
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .policy-text p {
            margin-bottom: 20px;
            color: var(--gray);
            line-height: 1.7;
        }
        
        .policy-list {
            margin: 30px 0;
        }
        
        .policy-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .policy-item i {
            color: var(--accent);
            margin-right: 15px;
            font-size: 20px;
            margin-top: 3px;
        }
        
        .policy-item p {
            margin: 0;
        }
        
        .policy-image {
            flex: 1;
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
            position: relative;
        }
        
        .policy-image.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .policy-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary);
            border-radius: 12px;
            z-index: -1;
            transition: var(--transition);
        }
        
        .policy-image:hover::before {
            top: -10px;
            right: -10px;
        }
        
        .policy-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .policy-image:hover img {
            transform: scale(1.02);
        }
        
        /* 服务流程样式 */
        .process-section {
            position: relative;
            overflow: hidden;
        }
        
        .process-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 109, 252, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
        }
        
        .process-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .process-line {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 1;
            border-radius: 2px;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
            width: 18%;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation: pulse 3s infinite;
            animation-delay: calc(var(--animation-order) * 0.5s);
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-10px) scale(1.05);
            }
        }
        
        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 36px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            z-index: 3;
        }
        
        .process-step:hover .step-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: 0 10px 25px rgba(26, 109, 252, 0.3);
        }
        
        .process-step h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--secondary);
            font-weight: 600;
        }
        
        .process-step p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.5;
        }
        
        /* CTA样式 */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/26.jpg') center/cover no-repeat;
            opacity: 0.1;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: 40px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .cta-content p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: var(--primary);
            color: white;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(26, 109, 252, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .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: left 0.7s;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(26, 109, 252, 0.4);
            background-color: var(--primary-dark);
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-light {
            display: inline-block;
            padding: 14px 32px;
            background-color: white;
            color: var(--primary);
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }
        
        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
            background-color: #f8f9fa;
        }
        
    
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .policy-content {
                flex-direction: column;
            }
            
            .page-header h1 {
                font-size: 40px;
            }
            
            .process-steps {
                flex-wrap: wrap;
            }
            
            .process-step {
                width: 48%;
                margin-bottom: 40px;
            }
            
            .process-line {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin: 15px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px 10px;
            }
            
            .phone-number {
                margin-top: 10px;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .page-header h1 {
                font-size: 36px;
            }
            
            .page-header p {
                font-size: 18px;
            }
            
            .service-detail-header {
                flex-direction: column;
                text-align: center;
            }
            
            .service-detail-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .cta-content h2 {
                font-size: 32px;
            }
        }
        
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 30px;
            }
            
            .btn, .btn-light {
                padding: 12px 25px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
        }