/* 栏目页主体 */
.list_main {
    margin: 0;
    padding: 25px 20px;
}

/* 栏目标题 */
.list-header {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 30px;
    margin-bottom: 20px;
}

.list-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 10px;
}

.list-desc {
    font-size: 15px;
    color: #80868b;
    line-height: 1.6;
}

/* 公司列表 */
.company-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 公司卡片 */
.company-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 24px 28px;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.2s;
}

.company-card:hover {
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.15);
    transform: translateY(-2px);
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 8px;
}

.company-desc {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    padding-top: 14px;
    border-top: 1px solid #f1f3f4;
    font-size: 14px;
    color: #5f6368;
}

.company-meta em {
    font-style: normal;
    color: #80868b;
}

.company-addr {
    width: 100%;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding-bottom: 10px;
}

.page-current,
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.page-current {
    background: #1a73e8;
    color: #fff;
    font-weight: 600;
}

.page-link {
    background: #fff;
    color: #5f6368;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.page-link:hover {
    background: #e8f0fe;
    color: #1a73e8;
}

.page-next {
    padding: 0 16px;
}

/* 响应式 */
@media (max-width: 768px) {
    .list_main {
        padding: 15px 12px;
    }

    .list-header {
        padding: 20px 16px;
    }

    .list-header h1 {
        font-size: 22px;
    }

    .company-card {
        padding: 18px 16px;
    }

    .company-name {
        font-size: 16px;
    }

    .company-meta {
        flex-direction: column;
        gap: 6px;
    }
}
