     
        /* 独享CSS - 首页各板块 */
        
        /* 轮播图 */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .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-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease 0.5s forwards;
        }
        
        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease 0.7s forwards;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary-color);
            color: var(--dark-color);
            font-weight: 600;
            border-radius: 5px;
            transition: var(--transition);
            animation: fadeInUp 1s ease 0.9s forwards;
        }
        
        .btn:hover {
            background: #c19d27;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .slider-controls {
            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: white;
            transform: scale(1.2);
        }
        
        /* 服务板块 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .service-card.animate {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            height: 80px;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-price {
            font-size: 1.3rem;
            color: var(--secondary-color);
            font-weight: 700;
            margin: 15px 0;
        }
        
        .service-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--secondary-color);
            color: var(--dark-color);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* 关于我们 */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .about-features {
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .feature-item i {
            color: var(--secondary-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .about-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 优势板块 */
        .advantages {
            background: #f8f9fa;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .advantage-card.animate {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .advantage-card:hover::before {
            transform: scaleX(1);
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            position: relative;
        }
        
        .advantage-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--secondary-color);
            border-radius: 50%;

            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        .advantage-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* 服务流程 */
        .process-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .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: 180px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .process-step.animate {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: white;
            border: 2px solid var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary-color);
            position: relative;
            z-index: 3;
            transition: var(--transition);
        }
        
        .process-step:hover .step-icon {
            background: var(--secondary-color);
            color: white;
            transform: scale(1.1);
        }
        
        .step-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: 0;
            width: 30px;
            height: 30px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        
        /* 知识库 */
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .knowledge-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .knowledge-card.animate {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .knowledge-image {
            height: 200px;
            overflow: hidden;
        }
        
        .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: 20px;
        }
        
        .knowledge-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .knowledge-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .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);
        }