       /* ===== 独享CSS部分 - 公司转让信息列表页 ===== */
        .company-list-section {
            padding-top: 150px;
            padding-bottom: 100px;
            background: #f8f9fa;
            min-height: 100vh;
        }

        .list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e9ecef;
        }

        .list-title h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .list-title p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .list-filter {
            display: flex;
            gap: 15px;
        }

        .filter-select {
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            background: white;
            font-size: 1rem;
            color: var(--text-color);
            transition: var(--transition);
            cursor: pointer;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.1);
        }

        /* 公司列表项样式 */
        .company-list-items {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 60px;
        }

        .company-list-item {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
            animation: cardFadeIn 1s ease;
            position: relative;
        }

        @keyframes cardFadeIn {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .company-list-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .company-item-header {
            background: var(--gradient-primary);
            color: white;
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .company-item-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-item-info h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }

        .company-item-info h3 a {
            color: white;
            /* 去除链接下划线 */
            text-decoration: none;
            position: relative;
            padding-bottom: 5px;
        }

        .company-item-info h3 a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: var(--transition);
        }

        .company-item-info h3 a:hover::after {
            width: 100%;
        }

        .company-item-meta {
            display: flex;
            gap: 20px;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .company-item-price {
            font-size: 2rem;
            font-weight: 700;
            text-align: right;
            animation: pulse 2s infinite;
        }

        .company-item-body {
            padding: 30px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .company-field {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .field-name {
            font-weight: 600;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .field-value {
            font-weight: 500;
            font-size: 1rem;
        }

        .company-item-footer {
            padding: 20px 30px;
            background: #f8f9fa;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #e9ecef;
        }

        .company-tags {
            display: flex;
            gap: 10px;
        }

        .company-tag {
            background: var(--light-color);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--text-light);
            transition: var(--transition);
        }

        .company-tag.highlight {
            background: var(--secondary-color);
            color: white;
        }

        .company-tag:hover {
            transform: translateY(-2px);
        }

        .view-details-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .view-details-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 60, 110, 0.3);
        }

        /* 分页样式 - 独享部分 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 50px;
        }

        .page-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            color: var(--text-color);
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .page-num:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        .page-num-current {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.1);
        }

        .page-num i {
            font-size: 0.9rem;
        }

        /* 响应式设计 - 独享部分 */
        @media (max-width: 992px) {
            .company-item-body {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .list-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .list-filter {
                width: 100%;
                justify-content: space-between;
            }
            
            .filter-select {
                flex: 1;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .phone-number {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .company-list-section {
                padding-top: 120px;
            }
            
            .company-item-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .company-item-price {
                text-align: left;
            }
            
            .company-item-body {
                grid-template-columns: 1fr;
            }
            
            .company-item-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .company-list-section {
                padding: 100px 0 60px;
            }
            
            .list-title h1 {
                font-size: 2rem;
            }
            
            .list-filter {
                flex-direction: column;
            }
            
            .pagination {
                flex-wrap: wrap;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }