.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 筛选条件区域 */
.filter-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-label {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
}

.selected-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background-color: #f0e6ff;
    color: #7c3aed;
    border-radius: 4px;
    font-size: 13px;
}

.tag-close {
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.tag-close:hover {
    color: #5b21b6;
}

.clear-all {
    color: #7c3aed;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.clear-all:hover {
    color: #5b21b6;
}

/* 分类标签 */
.category-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
}

.tab {
    padding: 12px 24px;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    border-bottom: none;
    background-color: #fff;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
    border-radius: 8px 8px 0 0;
    margin-bottom: -1px;
}

.tab:hover {
    color: #7c3aed;
}

.tab.active {
    background-color: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
    font-weight: 500;
}

.tab.more {
    margin-left: auto;
}

/* 列表卡片 */
.company-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.company-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    gap: 24px;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.company-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.company-logo {
    width: 160px;
    height: 120px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #f9fafb;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.company-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.badge-verified {
    background-color: #ede9fe;
    color: #7c3aed;
}

.badge-assured {
    background-color: #d1fae5;
    color: #059669;
}

.badge-advanced {
    background-color: #dbeafe;
    color: #2563eb;
}

.badge-award {
    background-color: #fef3c7;
    color: #d97706;
}

.business-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.business-label {
    font-size: 13px;
    color: #6b7280;
}

.business-tag {
    padding: 4px 10px;
    background-color: #f3f4f6;
    color: #6b7280;
    border-radius: 4px;
    font-size: 12px;
}

.company-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.btn {
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border: 1px solid;
}

.btn-primary {
    background-color: #fff;
    color: #f97316;
    border-color: #f97316;
}

.btn-primary:hover {
    background-color: #fff7ed;
}

.btn-secondary {
    background-color: #fff;
    color: #7c3aed;
    border-color: #7c3aed;
}

.btn-secondary:hover {
    background-color: #faf5ff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .company-card {
        flex-direction: column;
    }

    .company-logo {
        width: 100%;
        height: 100px;
    }

    .company-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

    .category-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab {
        white-space: nowrap;
    }
}

/* 图标样式 */
.icon {
    width: 14px;
    height: 14px;
    display: inline-block;
}