  /* 独享CSS部分 - 首页 */
        /* 轮播图样式 */
        .hero-slider {
            position: relative;
            height: 700px;
            overflow: hidden;
            margin-top: 80px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s 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: 900px;
            padding: 0 20px;
            transform: translateY(60px);
            opacity: 0;
            transition: all 1.2s ease;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-content h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            animation: textGlow 3s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            0% { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); }
            100% { text-shadow: 2px 2px 15px rgba(212, 175, 55, 0.7); }
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
        }

        .slider-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.3);
        }

        .slider-dot::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 2px solid transparent;
            border-radius: 50%;
            animation: pulseDot 2s infinite;
        }

        .slider-dot.active::after {
            border-color: rgba(255, 255, 255, 0.7);
        }

        @keyframes pulseDot {
            0% { transform: scale(1); opacity: 1; }
            70% { transform: scale(1.5); opacity: 0; }
            100% { transform: scale(1); opacity: 0; }
        }

        /* 公司转让信息展示区 */
        .company-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }

        .company-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            animation: cardFadeIn 1s ease;
        }

        @keyframes cardFadeIn {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .company-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .company-header {
            background: var(--gradient-primary);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .company-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite linear;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .company-header h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }

        .company-info {
            display: flex;
            flex-direction: column;
        }

        .company-number {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .view-details {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            animation: pulseButton 2s infinite;
            z-index: 1;
            position: relative;
        }

        @keyframes pulseButton {
            0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
        }

        .view-details:hover {
            background: white;
            color: var(--primary-color);
            transform: scale(1.05);
        }

        .company-body {
            padding: 25px;
        }

        .company-field {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eee;
            transition: var(--transition);
        }

        .company-field:hover {
            background: rgba(248, 249, 250, 0.5);
            padding-left: 10px;
            border-radius: 4px;
        }

        .company-field:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .field-name {
            font-weight: 600;
            color: var(--text-light);
        }

        .field-value {
            text-align: right;
            font-weight: 500;
        }

        .company-price {
            background: var(--gradient-secondary);
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 1.8rem;
            font-weight: 800;
            position: relative;
            overflow: hidden;
        }

        .company-price::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
            animation: shimmer 3s infinite linear;
        }

        /* 核心优势样式 */
        .advantages {
            background: #f8f9fa;
            position: relative;
        }

        .advantages::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="%231a3c6e" stroke-width="2"/></svg>');
            animation: floatBackground 20s linear infinite;
        }

        @keyframes floatBackground {
            0% { background-position: 0 0; }
            100% { background-position: 100px 100px; }
        }

        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .advantage-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .advantage-card:hover::before {
            transform: scaleX(1);
        }

        .advantage-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .advantage-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            display: inline-block;
            animation: float 4s ease-in-out infinite;
            position: relative;
        }

        .advantage-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(26, 60, 110, 0.1);
            z-index: -1;
            animation: pulse 3s infinite;
        }

        .advantage-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .advantage-card p {
            line-height: 1.8;
        }

        /* 关于我们样式 */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
        }

        .about-text h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

        .about-text p {
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 25px 15px;
            background: #f8f9fa;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .stat-item:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--secondary-color);
            position: relative;
        }

        .stat-item:hover .stat-number {
            color: white;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 5px solid var(--secondary-color);
            border-radius: var(--border-radius);
            z-index: -1;
            transition: var(--transition);
        }

        .about-image:hover::before {
            top: -10px;
            right: -10px;
        }

        /* 服务流程样式 */
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 60px;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #e9ecef;
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }

        .step-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            position: relative;
            animation: pulse 3s infinite;
            box-shadow: 0 5px 15px rgba(26, 60, 110, 0.3);
        }

        .step h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .step p {
            color: var(--text-light);
        }

        /* 知识库样式 */
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }

        .knowledge-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
        }

        .knowledge-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .knowledge-image {
            height: 220px;
            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.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .knowledge-card:hover .knowledge-content h3 {
            color: var(--accent-color);
        }

        .knowledge-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .read-more {
            color: var(--secondary-color);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            position: relative;
        }

        .read-more i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .read-more:hover i {
            transform: translateX(8px);
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .hero-slider {
                height: 600px;
            }
            
            .slide-content h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);

            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 50px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .phone-number {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-slider {
                height: 500px;
            }
            
            .slide-content h1 {
                font-size: 2.4rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .advantage-grid, .company-list, .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 80px 0;
            }
        }

        @media (max-width: 576px) {
            .section {
                padding: 60px 0;
            }
            
            .hero-slider {
                height: 450px;
            }
            
            .slide-content h1 {
                font-size: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .btn {
                padding: 12px 25px;
            }
        }