/* 展馆标签页样式 */
.tab-container {
    background-color: white;
    overflow: hidden;
    padding: 10px;
}

/* 重置tab-container下的el-tabs样式为Element UI默认样式 */
/* 覆盖custom-tabs中的自定义样式 */
.tab-container .el-tabs__header {
    background: none;
    margin: 0;
}

.tab-container .el-tabs__nav-wrap::after {
    background-color: #e4e7ed;
}

.tab-container .el-tabs__item {
    color: #303133;
    font-size: 14px;
    font-weight: normal;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
}

.tab-container .el-tabs__item.is-active {
    color: #409eff;
    font-weight: normal;
}

.tab-container .el-tabs__item:hover {
    color: #409eff;
}

.tab-container .el-tabs__active-bar {
    background-color: #409eff;
    height: 2px;
}

.tab-container .el-tabs__content {
    padding: 10px 0;
}
/* 展馆信息和示意图区域 */
.hall-content {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
}
.hall-map-container {
    flex: 1;
    min-width: 300px;
}
.hall-map {
    width: 100%;
    height: 280px;
    background-color: #f1f3f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    overflow: hidden;
}
.hall-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hall-info {
    margin-top: 30px;
    flex: 1;
    min-width: 300px;
}
.hall-card {
    background-color: #fafafa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #ebebeb;
    margin-bottom: 15px;
}
.hall-card h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
}
.hall-card h3 i {
    margin-right: 10px;
    color: #409EFF;
}
.hall-card p {
    margin: 10px 0;
    color: #666;
    font-size: 14px;
}
/* 参展企业表格样式 */
.company-table {
    width: 100%;
}
.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.table-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}
.el-table {
    border-radius: 8px;
    overflow: hidden;
}
.el-table th {
    background-color: #f5f7fa;
    font-weight: 500;
}
/* 响应式适配 */
@media (max-width: 768px) {
    .header h1 {
        font-size: 22px;
    }
    .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .hall-info {
        margin-top: 0;
        flex: 1;
    }
}