      /* ====== 英雄区域独享样式 ====== */
        .hero-section {
            padding: 180px 0 120px;
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.95), rgba(62, 146, 204, 0.9)), url('/template/jia/images/2.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.2) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 80px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* ====== 服务区域独享样式 ====== */
        .services-section {
            background-color: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent-gradient);
        }

        .service-icon {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 2.8rem;
            margin: 30px 0 20px;
        }

        .service-content {
            padding: 0 30px 30px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .service-content p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            min-height: 80px;
        }

        .service-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        /* ====== 关于我们独享样式 ====== */
        .about-section {
            background-color: white;
            position: relative;
        }

        .about-section::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" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,25 50,50 T100,50" stroke="%23F0F0F0" fill="none" stroke-width="1"/></svg>');
            opacity: 0.5;
            z-index: 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-text h3 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-item i {
            color: var(--accent-color);
            font-size: 1.2rem;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--secondary-color);
            border-radius: var(--radius-lg);
            z-index: -1;
        }

        /* ====== 流程区域独享样式 ====== */
        .process-section {
            background: linear-gradient(135deg, var(--primary-color), #1a3a8f);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .process-section::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" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            background-size: 50px;
        }

        .process-section .section-title h2 {
            color: white;
        }

        .process-section .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }

        .process-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-line {
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            z-index: 1;
        }

        .process-steps {

            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        .process-step {
            text-align: center;
            flex: 1;
            position: relative;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: var(--accent-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
            font-weight: 700;
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 3;
            transition: var(--transition);
            animation: pulse 3s infinite ease-in-out;
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
            50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
        }

        .process-step:hover .step-number {
            animation: pulseFast 1.5s infinite ease-in-out;
        }

        @keyframes pulseFast {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
            50% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(255, 107, 107, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
        }

        .step-content {
            padding: 0 15px;
        }

        .step-content h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .step-content p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        /* ====== 优势区域独享样式 ====== */
        .advantages-section {
            background-color: var(--light-bg);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .advantage-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .advantage-card:hover::before {
            transform: scaleX(1);
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(62, 146, 204, 0.1), rgba(10, 36, 99, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--secondary-color);
            font-size: 2rem;
        }

        .advantage-card h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* ====== 知识库区域独享样式 ====== */
        .knowledge-section {
            background-color: white;
        }

        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }

        .knowledge-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .knowledge-image {
            height: 200px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .knowledge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .knowledge-card:hover .knowledge-image img {
            transform: scale(1.05);
        }

        .knowledge-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .knowledge-content h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            line-height: 1.4;
            transition: var(--transition);
            cursor: pointer;
        }

        .knowledge-content h4:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .knowledge-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .knowledge-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .knowledge-content p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .knowledge-link {
            color: var(--secondary-color);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            margin-top: auto;
        }

        .knowledge-link:hover {
            color: var(--accent-color);
            gap: 12px;
        }

        /* ====== 独享部分响应式设计 ====== */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 50px;
            }
            
            .process-line {
                display: none;
            }
            
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 150px 0 100px;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .services-grid, .advantages-grid, .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-stats {
                justify-content: center;
            }
        }