/* 遮罩 & 居中 */
.pop-up-modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.pop-up-modal-content {
    background: #fff;
    padding: 30px 40px;
    border-radius: 6px;
    min-width: 320px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.pop-up-btn {
    margin: 0 6px;
    padding: 6px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 确认弹窗 */
.pop-up-confirm-box {
    min-width: 320px;
    text-align: center;
}

.pop-up-confirm-box h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.pop-up-confirm-box p {
    margin: 0 0 20px;
    color: #555;
}

.pop-up-btn.pop-up-danger {
    background: #d93025;
    color: #fff;
}

.pop-up-btn.pop-up-danger:hover {
    background: #b71c1c;
}

.pop-up-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}