     
		      /* 轮播图样式 */
        .hero-slider {
            position: relative;
            height: 500px;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-1 {
            background-image: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7)), url('/template/jia/images/1.jpg');
        }
        
        .slide-2 {
            background-image: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7)), url('/template/jia/images/28.jpg');
        }
        
        .slide-3 {
            background-image: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7)), url('/template/jia/images/24.jpg');
        }
        
        .slide-content {
            max-width: 600px;
            padding: 0 50px;
            position: relative;
        }
        
        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.5s;
        }
        
        .slide.active .slide-content h2 {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.8s;
        }
        
        .slide.active .slide-content p {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-content .btn {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 1.1s;
        }
        
        .slide.active .slide-content .btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .slider-dot.active {
            background-color: var(--secondary);
            transform: scale(1.3);
        }
        
        
        /* 业务展示区样式 - 优化版 */
        .services {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        .services-vertical {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .service-row {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        
        .service-row:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .service-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 100%);
            color: white;
            padding: 25px;
            display: flex;
            align-items: center;
            cursor: pointer;
            position: relative;
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-right: 20px;
            color: var(--secondary);
            display: inline-block;
            width: 70px;
            height: 70px;
            line-height: 70px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            text-align: center;
            flex-shrink: 0;
        }
        
        .service-title {
            flex-grow: 1;
        }
        
        .service-header h3 {
            font-size: 1.6rem;
            margin-bottom: 8px;
        }
        
        .service-header p {
            opacity: 0.9;
            font-size: 1rem;
        }
        
        .service-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;

        }
        
        .service-row.expanded .service-content {
            max-height: none; /* 修改为自适应高度 */
            padding: 25px;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        
        .sub-services {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .sub-service {
            background: rgba(10, 36, 99, 0.05);
            border-radius: 10px;
            padding: 20px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        
        .sub-service:hover {
            background: rgba(10, 36, 99, 0.1);
            transform: translateY(-3px);
        }
        
        .sub-service-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .sub-service-name {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .sub-service-name i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 1rem;
        }
        
        .sub-service-price {
            background: var(--secondary);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 700;
        }
        
        .sub-service-desc {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .sub-service-action {
            margin-top: auto;
            text-align: right;
        }
        
        .detail-btn {
            display: inline-block;
            color: var(--primary);
            font-size: 0.95rem;
            font-weight: 600;
            padding: 5px 0;
            transition: var(--transition);
            border-bottom: 1px dashed var(--primary);
        }
        
        .detail-btn:hover {
            color: var(--secondary);
            border-bottom: 1px dashed var(--secondary);
        }
        
        .service-info {
            background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1), transparent);
            border-radius: 10px;
            padding: 25px;
            border-left: 4px solid var(--secondary);
        }
        
        .service-info h4 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(10, 36, 99, 0.1);
        }
        
        /* 流程时间轴样式 */
        .process-timeline {
            margin-top: 20px;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 20px;
            position: relative;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 30px;
            bottom: -20px;
            width: 2px;
            background: var(--secondary);
        }
        
        .process-step:last-child::before {
            display: none;
        }
        
        .step-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--secondary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            z-index: 1;
            font-weight: bold;
        }
        
        .step-content {
            flex-grow: 1;
        }
        
        .step-content h5 {
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .step-content p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        /* 服务流程区域 */
        .service-process {
            padding: 80px 0;
            background-color: white;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 20px;
            position: relative;
            margin-bottom: 30px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }
        
        .step-number::before {
            content: '';
            position: absolute;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(10, 36, 99, 0.2);
            z-index: -1;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        .step h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* 优势区域样式 */
        .advantages {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .advantage-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .advantage-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* 关于我们样式 */
        .about {
            padding: 80px 0;
            background: linear-gradient(to right, var(--primary) 50%, white 50%);
        }
        
        .about-container {
            display: flex;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .about-content {
            flex: 1;
            padding: 50px;
        }
        
        .about-content h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .about-content p {
            margin-bottom: 15px;
            color: #555;
        }
        
        .about-image {
            flex: 1;
            background-image: url('/template/jia/images/28.jpg');
            background-size: cover;
            background-position: center;
        }
        
        /* 知识库样式 */
        .knowledge {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .article-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .article-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
		
		.article-image img{
            height: 100%;
			width: 100%;
        }
        
        .article-content {
            padding: 20px;
        }
        
        .article-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .article-content p {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .read-more {
            color: var(--secondary);
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
   
       /* 动画效果 */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .service-row {
            animation: fadeIn 0.5s ease-out forwards;
        }
        
        .service-row:nth-child(1) { animation-delay: 0.1s; }
        .service-row:nth-child(2) { animation-delay: 0.2s; }
        .service-row:nth-child(3) { animation-delay: 0.3s; }
        .service-row:nth-child(4) { animation-delay: 0.4s; }
        /* 响应式设计 */
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .service-info {
                order: -1;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .about-image {
                min-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            nav {
                margin-top: 20px;
                width: 100%;
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 15px;
                top: 15px;
            }
            
            .sub-services {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .process-steps {
                flex-direction: column;
            }
            
            .step {
                margin-bottom: 40px;
            }
			
        }
        
        @media (max-width: 576px) {
            .btn {
                padding: 10px 20px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .service-header h3 {
                font-size: 1.4rem;
            }
            
            .service-header {
                padding: 20px;
            }
            
            .service-content {
                padding: 20px;
            }
            
            .sub-service {
                padding: 15px;
            }
        }
		
		