
        /* 独享CSS部分 - 页面主体内容 */
        main {
            margin-top: 80px;
        }

        /* 轮播图样式 */
        .hero-slider {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .slides {
            display: flex;
            width: 300%;
            height: 100%;
            animation: slideAnimation 15s infinite;
        }

        .slide {
            width: 33.333%;
            height: 100%;
            position: relative;
        }

        .slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--text-light);
            background: rgba(0, 0, 0, 0.5);
            padding: 0 20px;
        }

        .slide-title {
            font-size: 48px;
            margin-bottom: 20px;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 1s forwards 0.5s;
        }

        .slide-subtitle {
            font-size: 24px;
            margin-bottom: 30px;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 1s forwards 0.8s;
        }

        .slide-btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 1s forwards 1.1s;
        }

        .slide-btn:hover {
            background-color: #e6c78a;
            transform: translateY(-5px);
        }

        @keyframes slideAnimation {
            0%, 25% { transform: translateX(0); }
            33%, 58% { transform: translateX(-33.333%); }
            66%, 91% { transform: translateX(-66.666%); }
            100% { transform: translateX(0); }
        }

        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* 公司转让信息样式 */
        .company-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .company-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .company-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .company-card.animate {
            animation: fadeInUp 0.8s forwards;
        }

        .company-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .company-header {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .company-header::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: var(--transition);
        }

        .company-card:hover .company-header::before {
            transform: rotate(45deg) translate(50px, 50px);
        }

        .company-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .company-header-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .company-id {
            font-size: 14px;
            color: var(--secondary-color);
        }

        .detail-btn {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 6px 12px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
        }

        .detail-btn:hover {
            background-color: #e6c78a;
            transform: translateY(-2px);
        }

        .company-body {
            padding: 20px;
        }

        .company-info {
            margin-bottom: 15px;
        }

        .company-info p {
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }

        .info-label {
            font-weight: 600;
            color: var(--primary-color);
        }

        .company-price {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
        }

        /* 核心优势样式 */
        .advantages-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .advantage-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .advantage-card.animate {
            animation: fadeInUp 0.8s forwards;
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .advantage-icon {
            font-size: 50px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .advantage-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* 关于我们样式 */
        .about-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 30px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .about-text p {
            margin-bottom: 20px;
            color: #666;
        }

        .about-stats {
            display: flex;
            margin-top: 30px;
        }

        .stat {
            flex: 1;
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 40px;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .stat-text {
            color: var(--primary-color);
            font-weight: 600;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* 服务流程样式 */
        .process-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--secondary-color);
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
        }

        .process-step.animate {
            animation: fadeInUp 0.8s forwards;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            position: relative;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(201, 168, 106, 0); }
            100% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0); }
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        /* 知识库样式 */
        .knowledge-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .article-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .article-card.animate {
            animation: fadeInUp 0.8s forwards;
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .article-image {
            height: 200px;
            overflow: hidden;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .article-card:hover .article-image img {
            transform: scale(1.1);
        }

        .article-content {
            padding: 20px;
        }

        .article-title {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .article-title a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .article-title a:hover {
            color: var(--secondary-color);
        }

        .article-excerpt {
            color: #666;
            margin-bottom: 15px;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #999;
            font-size: 14px;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                width: 50%;
                margin-bottom: 30px;
            }
            
            .process-steps::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-slider {
                height: 500px;
            }
            
            .slide-title {
                font-size: 36px;
            }
            
            .slide-subtitle {
                font-size: 20px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .company-grid, .advantages-grid, .articles-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .hero-slider {
                height: 400px;
            }
            
            .slide-title {
                font-size: 28px;
            }
            
            .slide-subtitle {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .about-stats {
                flex-direction: column;
            }
        }