    /* 独享CSS - 列表页内容 */
        
        /* 页面标题区域 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), #152642);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .page-header h1::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);
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255,255,255,0.8);
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            background: rgba(255,255,255,0.1);
            padding: 15px 0;
            margin-bottom: 40px;
        }
        
        .breadcrumb .container {
            display: flex;
            align-items: center;
        }
        
        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        
        .breadcrumb span {
            margin: 0 10px;
            color: rgba(255,255,255,0.5);
        }
        
        .breadcrumb .current {
            color: var(--secondary-color);
        }
        
        /* 公司列表样式 */
        .company-list {
            padding: 60px 0;
        }
        
        .company-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: var(--transition);
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .company-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .company-item: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-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .company-body {
            padding: 30px;
        }
        
        .company-title {
            margin-bottom: 20px;
        }
        
        .company-title h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .company-title h3 a {
            color: var(--primary-color);
            text-decoration: none; /* 去掉链接下划线 */
            transition: var(--transition);
            position: relative;
        }
        
        .company-title h3 a:hover {
            color: var(--secondary-color);
        }
        
        .company-title h3 a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
            transition: var(--transition);
        }
        
        .company-title h3 a:hover::after {
            width: 100%;
        }
        
        .company-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
        }
        
        .meta-item i {
            color: var(--secondary-color);
            margin-right: 8px;
            width: 20px;
            text-align: center;
        }
        
        .company-details {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            padding-bottom: 10px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .detail-label {
            font-weight: 600;
            color: #4a5568;
        }
        
        .detail-value {
            color: #718096;
            text-align: right;
        }
        
        .company-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }
        
        .company-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag {
            background: rgba(212, 175, 55, 0.1);
            color: var(--secondary-color);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .company-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .company-link:hover {
            color: var(--primary-color);
        }
        
        .company-link i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .company-link:hover i {
            transform: translateX(5px);
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            gap: 10px;
        }
        
        .page-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: white;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .page-num:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .page-num-current {
            background: var(--secondary-color);
            color: white;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .page-num i {
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .company-details {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 32px;
            }
            
            .company-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .company-body {
                padding: 20px;
            }
            
            .company-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .company-details {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .company-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .pagination {
                flex-wrap: wrap;
            }
        }