     /* 独享CSS部分 - 页面主体内容 */
        
        /* 轮播图部分 */
        .hero-slider {
            position: relative;
            height: 80vh;
            min-height: 500px;
            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 0.3s;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        
        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        .btn {
            display: inline-block;
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            border: 2px solid var(--secondary-color);
            position: relative;
            overflow: hidden;
        }
        
        .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::before {
            left: 100%;
        }
        
        .btn:hover {
            background: transparent;
            color: var(--secondary-color);
        }
        
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 10;
        }
        
        .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.3);
        }
        
        /* 通用板块样式 */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            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: var(--secondary-color);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 我们的服务部分 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            transform: translateY(30px);
            opacity: 0;
            position: relative;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
            background-size: 200% 100%;
            animation: gradient-shift 3s ease infinite;
        }
        
        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .service-card.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            height: 80px;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .service-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            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 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .service-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .service-price {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        /* 关于我们部分 */
        .about-section {
            background: #f8f9fa;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .highlight {
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateX(50px);
            opacity: 0;
            transition: all 1s ease;
            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), rgba(10,36,99,0.2));
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .about-image:hover::before {
            opacity: 1;
        }
        
        .about-image.animate {
            transform: translateX(0);
            opacity: 1;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* 我们的优势部分 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            transform: scale(0.9);
            opacity: 0;
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(10,36,99,0.05), rgba(212,175,55,0.05));
            z-index: 0;
            opacity: 0;
            transition: var(--transition);
        }
        
        .advantage-card:hover::before {
            opacity: 1;
        }
        
        .advantage-card.animate {
            transform: scale(1);
            opacity: 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);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        
        /* 增强优势图标循环动画 */
        .advantage-card:hover .advantage-icon {
            background: var(--secondary-color);
            animation: icon-spin 1s ease;
        }
        
        @keyframes icon-spin {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.2); }
            100% { transform: rotate(360deg) scale(1); }
        }
        
        /* 新增优势卡片循环浮动效果 */
        .advantage-card {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .advantage-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        /* 服务流程部分 */
        .process-section {
            background: #f8f9fa;
        }
        
        .process-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            top: 100px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            z-index: 1;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
            width: 200px;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .process-step.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .step-icon {
            width: 100px;
            height: 100px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2.5rem;
            position: relative;
            z-index: 3;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(10, 36, 99, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(10, 36, 99, 0); }
            100% { box-shadow: 0 0 0 0 rgba(10, 36, 99, 0); }
        }
        
        /* 增强服务流程循环动画 */
        .process-step:hover .step-icon {
            background: var(--secondary-color);
            transform: scale(1.1);
            animation: process-icon-rotate 2s infinite linear;
        }
        
        @keyframes process-icon-rotate {
            0% { transform: rotate(0deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1.1); }
        }
        
        .step-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        /* 知识库部分 */
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .knowledge-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            transform: translateY(30px);
            opacity: 0;
        }
        
        .knowledge-card.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .knowledge-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .knowledge-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(10,36,99,0.3), rgba(212,175,55,0.3));
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .knowledge-card:hover .knowledge-image::before {
            opacity: 1;
        }
        
        .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 {
            margin-bottom: 10px;
        }
        
        .knowledge-content h3 a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .knowledge-content h3 a:hover {
            color: var(--secondary-color);
        }
        
        .knowledge-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .knowledge-meta {
            display: flex;
            justify-content: space-between;
            color: #999;
            font-size: 0.9rem;
        }
        
        /* 背景动画元素 */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(10, 36, 99, 0.03);
            animation: float 15s infinite linear;
        }
        
        .bg-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .bg-circle:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }
        
        .bg-circle:nth-child(3) {
            width: 400px;
            height: 400px;
            top: 30%;
            left: 60%;
            animation-delay: 4s;
        }
        
        .bg-circle:nth-child(4) {
            width: 250px;
            height: 250px;
            top: 70%;
            left: 10%;
            animation-delay: 6s;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                order: -1;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px;
            }
            
            .process-line {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .services-grid,
            .advantages-grid,
            .knowledge-grid {
                grid-template-columns: 1fr;
            }
        }