   /* ===== 独享CSS样式 - 公司转让信息列表页 ===== */
        
        /* 页面标题区域 */
        .page-header {
            padding: 8rem 0 3rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d4a7c 100%);
            color: white;
            text-align: center;
            margin-top: 70px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 列表筛选区域 */
        .list-filters {
            background: var(--light-color);
            padding: 2rem 0;
            margin-bottom: 3rem;
        }
        
        .filter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
        }
        
        .filter-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--accent-color);
        }
        
        .filter-select, .filter-input {
            padding: 0.7rem 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            min-width: 180px;
            background: white;
        }
        
        .filter-submit {
            align-self: flex-end;
            padding: 0.7rem 1.5rem;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-submit:hover {
            background: var(--primary-color);
        }
        
        /* 公司列表样式 */
        .company-listings {
            padding: 0 0 5rem;
        }
        
        .listings-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .listings-table thead {
            background: var(--primary-color);
            color: white;
        }
        
        .listings-table th {
            padding: 1.2rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        
        .listings-table tbody tr {
            border-bottom: 1px solid #eee;
            transition: var(--transition);
        }
        
        .listings-table tbody tr:hover {
            background: #f8f9fa;
        }
        
        .listings-table td {
            padding: 1.2rem 1rem;
        }
        
        .company-name h3 {
            margin: 0;
            font-size: 1.2rem;
        }
        
        .company-name a {
            color: var(--primary-color);
            transition: var(--transition);
            text-decoration: none; /* 移除下划线 */
            border-bottom: none; /* 确保没有边框 */
        }
        
        .company-name a:hover {
            color: var(--secondary-color);
        }
        
        .company-id {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .company-price {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.1rem;
        }
        
        .view-details {
            color: var(--secondary-color);
            font-weight: 500;
            transition: var(--transition);
            text-decoration: none; /* 移除下划线 */
            border-bottom: none; /* 确保没有边框 */
        }
        
        .view-details:hover {
            color: var(--primary-color);
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 3rem;
        }
        
        .page-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 0 5px;
            border-radius: 4px;
            background: white;
            color: var(--accent-color);
            border: 1px solid #ddd;
            transition: var(--transition);
            text-decoration: none; /* 移除下划线 */
        }
        
        .page-num:hover {
            background: var(--light-color);
            border-color: var(--secondary-color);
        }
        
        .page-num-current {
            background: var(--secondary-color);
            color: white;
            border-color: var(--secondary-color);
        }
        
        /* 响应式表格 */
        @media (max-width: 992px) {
            .listings-table {
                display: block;
                overflow-x: auto;
            }
            
            .filter-form {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-group {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 7rem 0 2rem;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .listings-table th,
            .listings-table td {
                padding: 0.8rem 0.5rem;
                font-size: 0.9rem;
            }
        }