   
        /* 独享CSS - 各板块样式与动画 */
        
        /* 轮播图样式 */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .slides {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        }
        
        .slide {
            width: 33.333%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 26, 53, 0.7), rgba(30, 58, 95, 0.7));
        }
        
        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease 0.5s;
        }
        
        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide h1 {
            font-size: 52px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 800;
            background: linear-gradient(45deg, #fff, #d4af37, #fff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textGradient 5s ease infinite;
        }
        
        @keyframes textGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .slide p {
            font-size: 22px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 700;
            border-radius: 30px;
            transition: var(--transition);
            border: 2px solid var(--secondary-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: var(--transition);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--secondary-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }
        
        .slider-dot::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .slider-dot.active {
            background-color: var(--secondary-color);
            transform: scale(1.2);
        }
        
        .slider-dot.active::before {
            border-color: var(--secondary-color);
            animation: dotPulse 2s infinite;
        }
        
        @keyframes dotPulse {
            0% { transform: scale(0.8); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }
        
        /* 我们的服务样式 */
        .services {
            padding: 120px 0;
            background-color: rgba(247, 250, 252, 0.9);
            position: relative;
        }
        
        .services::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" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(10,26,53,0.03)"/></svg>');
            background-size: cover;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-weight: 800;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
            border-radius: 2px;
            animation: titleLine 3s infinite;
        }
        
        @keyframes titleLine {
            0% { width: 0; }
            50% { width: 100px; }
            100% { width: 0; }
        }
        
        .section-title p {
            color: var(--dark-color);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px) rotateY(10deg);
            position: relative;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
            background-size: 200% 100%;
            animation: cardLine 3s linear infinite;
        }
        
        @keyframes cardLine {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0) rotateY(0);
            transition: all 0.6s ease;
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            font-size: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .service-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: iconShine 5s linear infinite;
        }
        
        @keyframes iconShine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .service-content p {
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 22px;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 15px;
            display: inline-block;
            padding: 5px 15px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 30px;
        }
        
        /* 关于我们样式 */
        .about {
            padding: 120px 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(30, 58, 95, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateX(-50px) rotate(-5deg);
            position: relative;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent);
            z-index: 1;
            transition: var(--transition);
        }
        
        .about-image.animate {
            opacity: 1;
            transform: translateX(0) rotate(0);
            transition: all 0.8s ease;
        }
        
        .about-image:hover::before {
            background: linear-gradient(45deg, rgba(212, 175, 55, 0.4), transparent);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-content {
            flex: 1;
            opacity: 0;
            transform: translateX(50px);
        }
        
        .about-content.animate {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s ease 0.3s;
        }
        
        .about-content h2 {
            font-size: 42px;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
        }
        
        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: var(--dark-color);
            font-size: 17px;
            line-height: 1.8;
        }
        
        .highlight {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 58, 95, 0.1));
            padding: 25px;
            border-left: 4px solid var(--secondary-color);
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            position: relative;
            overflow: hidden;
        }
        
        .highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: highlightShine 5s infinite;
        }
        
        @keyframes highlightShine {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }
        
        .highlight p {
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--primary-color);
            position: relative;
            z-index: 1;
        }
        
        .highlight p:last-child {
            margin-bottom: 0;
        }
        
        /* 我们的优势样式 */
        .advantages {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(247, 250, 252, 0.9), rgba(230, 235, 240, 0.9));
            position: relative;
        }
        
        .advantages::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" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(10,26,53,0.03)"/></svg>');
            background-size: cover;
            transform: scaleY(-1);
        }
        
        .advantages-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 40px;
        }
        
        .advantage-item {
            text-align: center;
            padding: 50px 25px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .advantage-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }
        
        .advantage-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
            animation: advantageShine 3s infinite;
        }
        
        @keyframes advantageShine {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }
        
        .advantage-item.animate {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }
        
        .advantage-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            color: white;
        }
        
        .advantage-item:hover::before {
            opacity: 1;
        }
        
        .advantage-item:hover .advantage-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: scale(1.1) rotateY(180deg);
        }
        
        .advantage-item:hover h3,
        .advantage-item:hover p {
            color: white;
        }
        
        .advantage-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 35px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .advantage-icon::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition);
        }
        
        .advantage-item:hover .advantage-icon::before {
            opacity: 1;
            animation: iconFloat 3s ease-in-out infinite;
        }
        
        @keyframes iconFloat {
            0% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-10px) scale(1.1); }
            100% { transform: translateY(0) scale(1); }
        }
        
        .advantage-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 700;
            transition: var(--transition);
        }
        
        .advantage-item p {
            color: var(--dark-color);
            transition: var(--transition);
        }
        
        /* 服务流程样式 */
        .process {
            padding: 120px 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .process::before {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(30, 58, 95, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatReverse 20s ease-in-out infinite;
        }
        
        @keyframes floatReverse {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(20px) rotate(-180deg); }
            100% { transform: translateY(0) rotate(-360deg); }
        }
        
        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 70px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 45px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
            background-size: 200% 100%;
            z-index: 1;
            animation: processLine 3s linear infinite;
        }
        
        @keyframes processLine {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            flex: 1;
        }
        
        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }
        
        .step-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }
        
        .process-step:hover .step-icon {
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .step-content {
            max-width: 200px;
            margin: 0 auto;
        }
        
        .step-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .step-content p {
            color: var(--dark-color);
            font-size: 15px;
        }
        
        /* 知识宝库样式 */
        .knowledge {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(247, 250, 252, 0.9), rgba(230, 235, 240, 0.9));
            position: relative;
        }
        
        .knowledge::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" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(10,26,53,0.03)"/></svg>');
            background-size: cover;
        }
        
        .knowledge-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .knowledge-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px) perspective(1000px) rotateX(5deg);
            position: relative;
        }
        
        .knowledge-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
        }
        
        .knowledge-card.animate {
            opacity: 1;
            transform: translateY(0) perspective(1000px) rotateX(0);
            transition: all 0.6s ease;
        }
        
        .knowledge-card:hover {
            transform: translateY(-15px) perspective(1000px) rotateX(0);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .knowledge-card:hover::before {
            opacity: 1;
        }
        
        .knowledge-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .knowledge-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 26, 53, 0.3), transparent);
            z-index: 1;
            transition: var(--transition);
        }
        
        .knowledge-card:hover .knowledge-image::before {
            background: linear-gradient(135deg, rgba(10, 26, 53, 0.1), rgba(212, 175, 55, 0.2));
        }
        
        .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: 30px;
            position: relative;
            z-index: 2;
        }
        
        .knowledge-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .knowledge-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .knowledge-content h3 a:hover {
            color: var(--secondary-color);
        }
        
        .knowledge-content p {
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .read-more {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .read-more::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .read-more:hover::before {
            width: 100%;
        }
        
        .read-more i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* 响应式调整 */
        @media screen and (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .about-image, .about-content {
                flex: none;
                width: 100%;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                width: 50%;
                margin-bottom: 50px;
            }
            
            .process-steps::before {
                display: none;
            }
        }
        
        @media screen and (max-width: 768px) {
            .slide h1 {
                font-size: 36px;
            }
            
            .slide p {
                font-size: 18px;
            }
            
            .services-grid, .advantages-grid, .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
        }