
/* 容器布局 */
.business-scope-container[data-v-39eb7cee] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    position: relative; /* 关键：设置为定位参考容器 */
    /* 为按钮腾出空间 */
    padding: 10px;
}
.save-btn-container[data-v-39eb7cee] {
    position: absolute; /* 绝对定位 */
    top: -30px; /* 距离顶部 */
    right: 1px; /* 距离右侧 */
    z-index: 999; /* 确保在所有内容上方 */
}

/* 左右两侧区域 */
.left-section[data-v-39eb7cee] {
    display: flex;
    flex-direction: column;
    width: 40%;
}
.right-section[data-v-39eb7cee] {
    display: flex;
    flex-direction: column;
    width: 40%;
}

/* 搜索框样式 */
.search-input[data-v-39eb7cee] {
    margin-top: 5px;
    margin-bottom: 40px;
}


/* 分页区域 */
.pagination[data-v-39eb7cee] {
    margin-top: 16px;
    text-align: center;
}

/* 操作按钮区域 */
.operate-section[data-v-39eb7cee] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-top: 60px; /* 与表格对齐 */
}


