/* pop.css - 弹窗样式（修复输入问题） */
.simple-modal-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 99999; /* 提升层级，避免被layui覆盖 */
    pointer-events: auto; /* 确保遮罩不拦截输入 */
}
.simple-modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    width: 350px;
    box-sizing: border-box;
    pointer-events: auto; /* 弹窗可交互 */
    z-index: 999999; /* 最高层级 */
}
.simple-modal-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: normal;
}
.simple-modal-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    box-sizing: border-box;
    /* 核心：强制开启输入属性 */
    user-select: text !important;
    -webkit-user-select: text !important;
    outline: none;
    border: 1px solid #ddd !important;
}
.simple-modal-btn-group {
    text-align: right;
}
.simple-modal-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 8px;
}
.simple-modal-close {
    background: #f5f5f5;
    color: #333;
}
.simple-modal-confirm {
    background: #1890ff;
    color: #fff;
}