
    /* 核心样式调整 */
.select-dropdown {
    position: absolute;
    margin: 0.5px -11px;
    min-width: 898px; /* 足够宽以容纳一行的内容 */
    max-width: 1000px;
    border: 1px solid #ccc;
    background: white;
    padding: 15px;
    max-height: 400px;
    overflow-y: hidden;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* 顶部固定容器（核心修改：添加蓝色下边框） */
.top-options-container {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    padding-bottom: 10px;
    margin: 0 -15px 10px -15px; /* 只抵消左右padding，不抵消上下 */
    padding-left: 5px;
    /*padding-top: 15px;*/
    border-bottom: 2px solid #0CD170; /* 新增：顶部蓝色分隔线 */
}

/* 顶部选项行样式（核心修改：移除原有下边框） */
.top-options {
    display: flex;
    align-items: center;
    /*gap: 20px;*/
    flex-wrap: wrap; /* 选项过多时自动换行，避免横向溢出 */
    padding: 0 10px; /* 左右加小间距，避免贴边 */
    border-bottom: none; /* 移除原有灰色边框 */
}

.option-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 12px;
}
.option-wrapper input {
    margin-right: 8px;
    width: 14px;
    height: 14px;
}
.dropdown-content {
    max-height: calc(400px - 100px);
    overflow-y: auto;
    padding-right: 5px;
}

.tooltip {

    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    padding: 8px 12px;
    background: #333;
    color: white;
    font-size: 12px;
    border-radius: 4px;
    max-width: 380px;
    z-index: 1010;
    display: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap;

}

.tooltip.show {
    display: block;
}

/* 确认按钮样式 */
.confirm-section {
    margin-left: auto;
    white-space: nowrap; /* 按钮不换行 */
}



/* 分组容器（核心修改：减小分组间距） */
.groups-container {
    display: flex;
    flex-direction: column;
    gap: 8px; /* 从15px缩小为8px */
}

/* 分组行容器（核心修改：减小内边距和分隔线颜色） */
.group-row {
    display: flex;
    align-items: flex-start;
    padding: 5px 0; /* 从8px缩小为5px */
    border-bottom: 1px solid #f5f5f5; /* 浅灰色分隔线 */
}

/* 分组标题样式 */
.group-header {
    /*font-weight: bold;*/
    color: #2c3e50;
    font-size: 14px;
    min-width: 120px;
    padding-top: 2px;
}

.group-header input {
    margin-right: 8px;
    width: 14px;
    height: 14px;
}

/* 选项容器（核心修改：减小选项间距） */
.group-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; /* 从20px缩小为12px */
    flex: 1;
}

/* 选项样式（核心修改：减小内边距） */
.option-item {
    padding: 2px 0; /* 从3px缩小为2px */
    display: flex;
    align-items: center;
    font-size: 13px;
}

.option-item input {
    margin-right: 8px;
    width: 14px;
    height: 14px;
}

.option-item label {
    cursor: pointer;
    color: #34495e;
}

/* 核心修改：隐藏原有分隔线 */
.section-divider {
    display: none; /* 移除顶部和内容区之间的灰色线 */
}

/* 原有样式保持不变 */
.quilk_select_btn {
    position: relative;
    border: 1px solid #ccc;
    padding: 6px 12px;
    cursor: pointer;
}

.quilk_select_btn .top {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ok-btn {
    padding: 0px 40px;
    background-color: #0CD170;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.ok-btn:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}
    /*.ok-btn {
        padding: 0px 40px;
        background: #0CD170;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 500;
    }*/

    .ok-btn:hover {
        background: #218838;
    }
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
}

.no-data {
    padding: 12px;
    color: #999;
    text-align: center;
    font-size: 13px;
}

/* 1. 容器固定宽度（限制最大宽度） */
.dropdown-menu {
    width: 300px; /* 固定容器宽度（根据你的布局调整，如 400px） */
    /* 或使用 max-width 限制最大宽度，允许自适应但不超过该值 */
    /* max-width: 400px; */
    overflow: hidden; /* 隐藏超出容器的内容（避免滚动条） */
}

/* 2. 文字不换行 + 超出截断 + 显示省略号 */
.dropdown-item {
    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 隐藏超出容器的文字 */
    text-overflow: ellipsis; /* 超出部分显示省略号... */
    padding: .25rem 0.5rem; /* 右侧空隙已缩小 */
    width: 100%; /* 文字容器占满父容器宽度 */
    /* 其他原有样式不变 */
}

.info-icon {
    width: 14px; /* 缩小整体尺寸，更精致 */
    height: 14px;
    border-radius: 50%;
    background: transparent; /* 彻底透明背景 */
    border: 1px solid #777777; /* 黑色细边框（空心） */
    color: #777777; /* 问号为黑色，与边框一致 */
    font-size: 10px; /* 问号缩小，避免溢出 */
    text-align: center;
    line-height: 14px; /* 精确垂直居中（与高度一致） */
    margin-left: 6px; /* 减小与文字的间距 */
    cursor: help;
    display: inline-block;
    padding: 0;
    box-sizing: border-box;
    /* 去除默认样式干扰 */
    font-weight: normal;
}

/* 悬停时保持风格统一（可选） */
.info-icon:hover {
    border-color: #000; /* 边框稍深 */
    color: #000;
}


