        /* 独享CSS - 页面主体内容 */
        
        /* 通用部分样式 */
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .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: linear-gradient(90deg, var(--secondary-color), #ffd700);
            box-shadow: 0 0 8px var(--secondary-color);
        }
        
        .section-title p {
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        /* 轮播图样式 */
        .hero-slider {
            position: relative;
            height: 700px;
            overflow: hidden;
            border-bottom: 4px solid var(--secondary-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease, transform 1.5s ease;
            transform: scale(1.1);
        }
        
        .slide.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            color: white;
            max-width: 600px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            opacity: 0;
            transition: opacity 0.8s ease, transform 0.8s ease;
            transition-delay: 0.5s;
        }
        
        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }
        
        .slide-content h1 {
            font-size: 52px;
            margin-bottom: 20px;
            transform: translateX(-50px);
            transition: transform 0.8s ease;
            font-weight: 700;
            background: linear-gradient(90deg, #fff, var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .slide.active .slide-content h1 {
            transform: translateX(0);
        }
        
        .slide-content p {
            font-size: 22px;
            margin-bottom: 30px;
            transform: translateX(-50px);
            transition: transform 0.8s ease;
            transition-delay: 0.2s;
        }
        
        .slide.active .slide-content p {
            transform: translateX(0);
        }
        
        .btn {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(135deg, var(--secondary-color), #ffd700);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            transform: translateY(30px);
            transition: transform 0.8s ease, box-shadow 0.3s ease;
            transition-delay: 0.4s;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .slide.active .btn {
            transform: translateY(0);
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.5);
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .slider-dot::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            transition: left 0.5s ease;
        }
        
        .slider-dot.active {
            background-color: white;
            transform: scale(1.3);
        }
        
        .slider-dot.active::after {
            left: 100%;
        }
        
        /* 公司转让信息样式 - 调整头部高度 */
        .companies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .company-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .company-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .company-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .company-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .company-header {
            background: linear-gradient(135deg, var(--primary-color), #152642);
            color: white;
            padding: 25px 20px; /* 增加头部高度 */
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 80px; /* 确保头部有足够高度 */
        }
        
        .company-id {
            font-size: 16px;
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .company-detail-link {
            color: white;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            transition: var(--transition);
            padding: 8px 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
        }
        
        .company-detail-link:hover {
            color: var(--secondary-color);
            background: rgba(255,255,255,0.2);
        }
        
        .company-detail-link i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .company-detail-link:hover i {
            transform: translateX(3px);
        }
        
        .company-name {
            font-size: 20px;
            font-weight: 700;
            padding: 20px;
            text-align: center;
            color: var(--primary-color);
            background: rgba(212, 175, 55, 0.1);
        }
        
        .company-details {
            padding: 20px;
        }
        
        .detail-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .detail-label {
            font-weight: 600;
            color: #4a5568;
        }
        
        .detail-value {
            color: #718096;
            text-align: right;
        }
        
        .company-price {
            background: linear-gradient(135deg, var(--secondary-color), #ffd700);
            color: var(--primary-color);
            text-align: center;
            padding: 20px;
            font-size: 26px;
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }
        
        .company-price::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: left 0.5s ease;
        }
        
        .company-card:hover .company-price::before {
            left: 100%;
        }
        
        /* 核心优势样式 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .advantage-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .advantage-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--secondary-color);
            font-size: 36px;
            position: relative;
            transition: var(--transition);
        }
        
        .advantage-card:hover .advantage-icon {
            animation: iconPulse 2s infinite;
            box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.1);
        }
        
        @keyframes iconPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
            }
        }
        
        .advantage-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        /* 关于我们样式 */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .about-text.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .about-text h3 {
            color: var(--primary-color);
            font-size: 32px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .about-text h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #4a5568;
            font-size: 17px;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 25px 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-size: 40px;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .about-image {
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .about-image.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .about-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        /* 服务流程样式 */
        .process-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
            z-index: 1;
            box-shadow: 0 0 8px var(--secondary-color);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
            width: 20%;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-icon {
            width: 100px;
            height: 100px;
            background: white;
            border: 3px solid var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--secondary-color);
            font-size: 36px;
            position: relative;
            z-index: 3;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .process-step:hover .step-icon {
            animation: stepRotate 2s infinite linear;
            background: linear-gradient(135deg, var(--secondary-color), #ffd700);
            color: white;
            transform: scale(1.1);
        }
        
        @keyframes stepRotate {
            0% {
                transform: scale(1.1) rotate(0deg);
            }
            100% {
                transform: scale(1.1) rotate(360deg);
            }
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }
        
        .step-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        /* 知识库样式 */
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .knowledge-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .knowledge-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .knowledge-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .knowledge-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .knowledge-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(transparent, rgba(0,0,0,0.5));
        }
        
        .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 {
            margin-bottom: 12px;
        }
        
        .knowledge-content h3 a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
            font-size: 20px;
        }
        
        .knowledge-content h3 a:hover {
            color: var(--secondary-color);
        }
        
        .knowledge-meta {
            display: flex;
            justify-content: space-between;
            color: #718096;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .knowledge-excerpt {
            color: #4a5568;
            margin-bottom: 20px;
        }
        
        .read-more {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .read-more i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .read-more:hover {
            color: var(--primary-color);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                width: 45%;
                margin-bottom: 40px;
            }
            
            .process-line {
                display: none;

            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero-slider {
                height: 500px;
            }
            
            .slide-content h1 {
                font-size: 36px;
            }
            
            .slide-content p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .companies-grid,
            .advantages-grid,
            .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .friend-links {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }