   /* 独享CSS - 页面主体内容 */
        
        /* 轮播图样式 */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.slides {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    width: 20%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-size: cover; /* 使用cover而不是100% 100% - 保持图片比例 */
    background-position: center;
    background-repeat: no-repeat;
}
        
.slide:nth-child(1) {
    background: linear-gradient(rgba(26, 58, 95, 0.8), rgba(26, 58, 95, 0.8)), url('/template/jia/images/2.jpg');
    background-size: cover; /* 为每个背景单独设置 */
    background-position: center;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.8)), url('/template/jia/images/6.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(255, 107, 53, 0.8), rgba(255, 107, 53, 0.8)), url('/template/jia/images/10.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(4) {
    background: linear-gradient(rgba(26, 58, 95, 0.8), rgba(26, 58, 95, 0.8)), url('/template/jia/images/13.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(5) {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.8)), url('/template/jia/images/15.jpg');
    background-size: cover;
    background-position: center;
}
        
        .slide-content {
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.3s;
        }
        
        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide h2 {
            font-size: 42px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .slide p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent-color);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--accent-color);
        }
        
        .btn:hover {
            background-color: transparent;
            color: white;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            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: white;
            transform: scale(1.2);
        }
        
        /* 开发区展示区样式 */
        .services-showcase {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
            padding: 30px 20px;
            position: relative;
            animation: float 6s ease-in-out infinite;
            animation-delay: calc(var(--delay) * 0.2s);
        }
        
        .service-card:nth-child(1) { --delay: 1; }
        .service-card:nth-child(2) { --delay: 2; }
        .service-card:nth-child(3) { --delay: 3; }
        .service-card:nth-child(4) { --delay: 4; }
        .service-card:nth-child(5) { --delay: 5; }
        .service-card:nth-child(6) { --delay: 6; }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .service-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--accent-color);
            font-size: 32px;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            background-color: var(--accent-color);
            color: white;
            animation: pulse 1.5s infinite;
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .price-tag {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b35, #ff8e53);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 18px;
            margin-top: 10px;
            animation: priceGlow 3s infinite;
        }
        
        @keyframes priceGlow {
            0% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.5); }
            50% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
            100% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.5); }
        }
        
        /* 核心优势样式 */
        .core-advantages {
            padding: 80px 0;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .advantage-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            padding: 30px;
            text-align: center;
            border-top: 4px solid var(--secondary-color);
            animation: advantagePulse 4s ease-in-out infinite;
            animation-delay: calc(var(--delay) * 0.3s);
        }
        
        .advantage-card:nth-child(1) { --delay: 1; }
        .advantage-card:nth-child(2) { --delay: 2; }
        .advantage-card:nth-child(3) { --delay: 3; }
        .advantage-card:nth-child(4) { --delay: 4; }
        .advantage-card:nth-child(5) { --delay: 5; }
        .advantage-card:nth-child(6) { --delay: 6; }
        
        @keyframes advantagePulse {
            0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
            50% { transform: scale(1.03); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
            100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
        }
        
        .advantage-card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-icon {
            font-size: 40px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            animation: iconRotate 8s linear infinite;
        }
        
        @keyframes iconRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .advantage-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* 关于我们样式 */
        .about-us {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .highlight {
            color: var(--accent-color);
            font-weight: 600;
        }
        
        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 服务流程样式 */
        .service-process {
            padding: 80px 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #e0e0e0;
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background-color: white;
            border: 3px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--text-color);
            transition: var(--transition);
            position: relative;
        }
        
        .process-step.active .step-icon {
            border-color: var(--accent-color);
            background-color: var(--accent-color);
            color: white;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
        }
        
        .process-step h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        /* 知识库样式 */
        .knowledge-base {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .article-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .article-image {
            height: 200px;
            overflow: hidden;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.1);
        }
        
        .article-content {
            padding: 20px;
        }
        
        .article-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .article-content h3 a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .article-content h3 a:hover {
            color: var(--accent-color);
        }
        
        .article-meta {
            display: flex;
            color: #777;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .article-date {
            margin-right: 15px;
        }
        
        .read-more {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .services-grid, .advantages-grid, .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .process-steps {
                flex-wrap: wrap;
            }
            
            .process-step {
                flex: 0 0 50%;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-slider {
                height: 500px;
            }
            
            .slide h2 {
                font-size: 32px;
            }
            
            .slide p {
                font-size: 18px;
            }
            
            .services-grid, .advantages-grid, .articles-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                flex: 0 0 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero-slider {
                height: 400px;
            }
            
            .slide h2 {
                font-size: 26px;
            }
            
            .slide p {
                font-size: 16px;
            }
        }