.alert-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.alert-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: alertSlide 0.3s ease-out;
}

@keyframes alertSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.alert-content {
    margin-bottom: 20px;
}

.alert-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.alert-buttons button {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#alertConfirm {
    background: rgba(24, 144, 255, 1);
    color: white;
    width: 100px;
    display: none;
}

#alertCancel {
    background: #616161;
    color: white;
    width: 100px;
    display: none;
}

/* 自定义对话框样式 */
/* 自定义弹窗样式 */




/* .alert-box .closing {
    animation: alertClose 0.3s ease-out;
}

@keyframes alertClose {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-50px);
        opacity: 0;
    }
} */

.closing {
    animation: alertClose 0.3s ease-out;
}

@keyframes alertClose {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-50px);
        opacity: 0;
    }
}

.deleted{
    color: #5c5c5c;
}