    /* 独享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 1.5s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            max-width: 800px;
            padding: 0 50px;
            color: var(--text-light);
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease 0.5s;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        
        .slide-content p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary-color);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary-color);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--secondary-color);
        }
        
        .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 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--secondary-color);
            transform: scale(1.2);
        }
        
        /* 服务板块样式 */
        .services-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .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;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 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: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            height: 200px;
            background-color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .service-icon::before {
            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);
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-icon::before {
            transform: rotate(45deg) translate(50%, 50%);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .service-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .service-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .free-tag {
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
        }
        
        /* 关于我们样式 */
        .about-section {
            padding: 100px 0;
            background-color: var(--primary-color);
            color: var(--text-light);
        }
        
        .about-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .about-content {
            flex: 1;
            min-width: 300px;
            padding-right: 50px;
        }
        
        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--text-light);
        }
        
        .about-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: var(--accent-color);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(201, 169, 110, 0.2), transparent);
        }
        
        /* 优势板块样式 */
        .advantages-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .advantages-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .advantage-card {
            flex: 0 0 calc(33.333% - 20px);
            min-width: 250px;
            margin-bottom: 30px;
            text-align: center;
            padding: 40px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .advantage-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .advantage-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--text-light);
            font-size: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .advantage-icon::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, var(--secondary-color), transparent, var(--secondary-color));
            border-radius: 50%;
            opacity: 0.3;
            animation: rotate 3s linear infinite;
        }
        
        .advantage-card h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .advantage-card p {
            color: #666;
        }
        
        /* 服务流程样式 */
        .process-section {
            padding: 100px 0;
            background-color: var(--primary-color);
            color: var(--text-light);
        }
        
        .process-section .section-title h2 {
            color: var(--text-light) !important;
        }
        
        .process-section .section-title p {
            color: rgba(255,255,255,0.8);
        }
        
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: rgba(255,255,255,0.2);
        }
        
        .process-step {
            flex: 0 0 calc(20% - 20px);
            min-width: 150px;
            text-align: center;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            font-weight: 700;
            color: var(--text-light);
            position: relative;
            overflow: hidden;
        }
        
        .step-number::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            border-radius: 50%;
            opacity: 0.5;
            animation: rotate 3s linear infinite;
        }
        
        .process-step h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .process-step p {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
        }
        
        /* 知识库样式 */
        .knowledge-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .knowledge-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .knowledge-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .knowledge-image {
            height: 200px;
            background-color: #ddd;
            overflow: hidden;
        }
        
        .knowledge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .knowledge-card:hover .knowledge-image img {
            transform: scale(1.1);
        }
        
        .knowledge-content {
            padding: 25px;
        }
        
        .knowledge-content h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .knowledge-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .knowledge-content h3 a:hover {
            color: var(--secondary-color);
        }
        
        .knowledge-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .read-more {
            display: inline-block;
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            padding-left: 10px;
        }
        
        /* 动画定义 */
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @keyframes gradientShift {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .slide-content h1 {
                font-size: 36px;
            }
            
            .slide-content p {
                font-size: 18px;
            }
            
            .advantage-card {
                flex: 0 0 calc(50% - 15px);
            }
            
            .process-step {
                flex: 0 0 calc(33.333% - 20px);
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .slide-content {
                padding: 0 20px;
            }
            
            .slide-content h1 {
                font-size: 28px;
            }
            
            .slide-content p {
                font-size: 16px;
            }
            
            .about-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .advantage-card {
                flex: 0 0 100%;
            }
            
            .process-step {
                flex: 0 0 calc(50% - 15px);
            }
        }