/* 煤企信息列表页样式 */

.main-content {
    background: #f5f5f5;
    padding: 20px 0 40px;
    min-height: 600px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #1890FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #40a9ff;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

/* 筛选区域 */
.filter-section {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.filter-item:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 100px;
    padding-top: 8px;
    flex-shrink: 0;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #f0f0f0;
    border-color: #951D1D;
    color: #951D1D;
}

.filter-btn.active {
    background: #951D1D;
    border-color: #951D1D;
    color: #fff;
}

/* 统计信息 */
.company-stats {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.company-stats span {
    color: #951D1D;
    font-weight: 600;
    font-size: 18px;
    margin: 0 5px;
}

/* 企业列表 */
.company-list {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.company-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 25px;
}

.company-card:hover {
    box-shadow: 0 4px 16px rgba(149, 29, 29, 0.15);
    transform: translateY(-2px);
}

/* 企业Logo */
.company-logo-wrapper {
    flex-shrink: 0;
}

.company-logo {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-logo-text {
    width: 100%;
    height: 100%;
    background: #951D1D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.5;
}

/* 企业信息 */
.company-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.company-detail-item {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.company-detail-item strong {
    color: #1a1a1a;
    margin-right: 8px;
    min-width: 80px;
}

.company-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.product-tag {
    padding: 4px 12px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 1px solid #ffccc7;
    border-radius: 4px;
    font-size: 13px;
    color: #951D1D;
}

/* 查看详情按钮 */
.company-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.view-detail-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, #951D1D 0%, #c92a2a 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-detail-btn:hover {
    background: linear-gradient(135deg, #7a1818 0%, #a82424 100%);
    transform: translateX(3px);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
}

.pagination button {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background: #f0f0f0;
    border-color: #951D1D;
    color: #951D1D;
}

.pagination button.active {
    background: #951D1D;
    border-color: #951D1D;
    color: #fff;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination .page-info {
    font-size: 14px;
    color: #666;
    margin: 0 10px;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 8px;
}

.empty-state-icon {
    font-size: 64px;
    color: #d9d9d9;
    margin-bottom: 20px;
}

.empty-state-text {
    font-size: 16px;
    color: #999;
}

/* 删除 @media (max-width: 768px) - 移动端样式在 mobile.css */
