
        /* ===== 独享CSS ===== */
        
        /* 轮播图样式 */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 80px;
        }

        .slides {
            position: relative;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide:nth-child(1) {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/template/jia/images/2.jpg') center/cover no-repeat;
        }

        .slide:nth-child(2) {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/template/jia/images/5.jpg') center/cover no-repeat;
        }

        .slide:nth-child(3) {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/template/jia/images/13.jpg') center/cover no-repeat;
        }

        .slide-content {
            text-align: center;
            color: #fff;
            max-width: 800px;
            padding: 0 20px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-content h2 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            font-weight: 700;
            letter-spacing: 1px;
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: #fff;
            transform: scale(1.3);
        }

        /* 服务板块样式 */
        .services-section {
            background: var(--light-color);
            position: relative;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/12.jpg') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            height: 200px;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .service-content p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .service-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .service-features {
            margin-top: 15px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .service-features i {
            color: var(--secondary-color);
            margin-right: 8px;
        }

        /* 关于我们样式 */
        .about-section {
            background: #fff;
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/15.jpg') center/cover no-repeat;
            opacity: 0.03;
            z-index: 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .highlight {
            background: rgba(201, 163, 94, 0.1);
            padding: 25px;
            border-left: 4px solid var(--secondary-color);
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--secondary-color);
            animation: highlightPulse 2s infinite;
        }

        @keyframes highlightPulse {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }

        .highlight p {
            margin: 0;
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .about-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .about-image.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 优势板块样式 */
        .advantages-section {
            background: var(--light-color);
            position: relative;
        }

        .advantages-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/10.jpg') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .advantage-card {
            text-align: center;
            padding: 40px 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }

        .advantage-card:hover::before {
            opacity: 1;
        }

        .advantage-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            color: #fff;
        }

        .advantage-card:hover .advantage-icon {
            background: #fff;
            color: var(--primary-color);
            transform: scale(1.1) rotate(5deg);
        }

        .advantage-card:hover h3,
        .advantage-card:hover p {
            color: #fff;
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: #fff;
            font-size: 2rem;
            position: relative;
            z-index: 1;
            transition: var(--transition);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        .advantage-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .advantage-card p {
            color: var(--text-light);
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        /* 服务流程样式 */
        .process-section {
            background: #fff;
            position: relative;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/3.jpg') center/cover no-repeat;
            opacity: 0.03;
            z-index: 0;
        }

        .process-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            z-index: 1;
        }

        .process-line {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            transform: translateY(-50%);
            z-index: 1;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        .process-step {
            text-align: center;
            width: 20%;
            opacity: 0;
            transform: translateY(20px);
        }

        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #fff;
            font-size: 1.8rem;
            position: relative;
            z-index: 3;
            transition: var(--transition);
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0); }
            100% { transform: rotate(360deg); }
        }

        .process-step:hover .step-icon {
            background: var(--secondary-color);
            transform: scale(1.1);
            animation: none;
        }

        .step-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .step-content p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* 知识库样式 */
        .knowledge-section {
            background: var(--light-color);
            position: relative;
        }

        .knowledge-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/8.jpg') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .knowledge-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .knowledge-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .knowledge-card:hover {
            transform: translateY(-10px);
        }

        .knowledge-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .knowledge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .knowledge-card:hover .knowledge-image img {
            transform: scale(1.1);
        }

        .knowledge-content {
            padding: 25px;
        }

        .knowledge-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .knowledge-content p {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .read-more {
            color: var(--secondary-color);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }

        .read-more i {
            margin-left: 5px;
            transition: var(--transition);
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                flex-wrap: wrap;
            }
            
            .process-step {
                width: 50%;
                margin-bottom: 40px;
            }
            
            .process-line {
                display: none;
            }
            
            .slide-content h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: #fff;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .contact-info {
                display: none;
            }
            
            .slide-content h2 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .services-grid,
            .advantages-grid,
            .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .friend-links ul {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .process-step {
                width: 100%;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }