
        /* ===== 列表页独享CSS部分 ===== */
        .company-list-page {
            margin-top: 100px;
            min-height: calc(100vh - 400px);
        }
        
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            animation: textGlow 3s infinite alternate;
        }
        
        @keyframes textGlow {
            0% { text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); }
            100% { text-shadow: 2px 2px 20px rgba(212, 175, 55, 0.7); }
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .company-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
            background: white;
        }
        
        .company-table th {
            background: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
            position: relative;
        }
        
        .company-table th::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            animation: lineFlow 3s infinite linear;
        }
        
        @keyframes lineFlow {
            0% { background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%); }
            50% { background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%); }
            100% { background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 100%); }
        }
        
        .company-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .company-table tr {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .company-table tr.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .company-table tr:hover td {
            background: rgba(212, 175, 55, 0.05);
        }
        
        .company-name-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .company-name-link:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }
        
        .company-status {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .status-available {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
        }
        
        .status-pending {
            background: rgba(255, 193, 7, 0.1);
            color: #ffc107;
        }
        
        .company-price {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.2rem;
            animation: priceGlow 2s infinite alternate;
        }
        
        @keyframes priceGlow {
            0% { color: var(--secondary-color); }
            100% { color: #b8941f; }
        }
        
        .view-details-btn {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: buttonPulse 2s infinite;
        }
        
        @keyframes buttonPulse {
            0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
        }
        
        .view-details-btn:hover {
            background: #b8941f;
            transform: scale(1.05);
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            gap: 8px;
        }
        
        .page-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background: white;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .page-num:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .page-num-current {
            background: var(--secondary-color);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .page-num i {
            font-size: 0.9rem;
        }
        
        /* 筛选区域 */
        .filter-section {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
            min-width: 180px;
        }
        
        .filter-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary-color);
        }
        
        .filter-select {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .filter-select:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }
        
        .apply-filters {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-end;
        }
        
        .apply-filters:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        @media (max-width: 992px) {
            .company-table {
                display: block;
                overflow-x: auto;
            }
            
            .filter-section {
                flex-direction: column;
                align-items: stretch;
            }
            
            .apply-filters {
                align-self: stretch;
            }
        }