.mask {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    backdrop-filter: blur(14px);
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20241206;
}

.mask .modelHeight {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mask .modelHeight .inner {
    position: relative;
    min-width: 350px;
    border-radius: 6px;
    background: #222132;
    background: #ffffff;

    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mask .modelHeight .inner .inner_main {
    min-height: 9vh;
    max-height: 100vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mask .modelHeight .inner .inner_main .inner_content {
    width: 100%;
    height: auto;
    position: relative;
}

.mask .modelHeight .inner .inner_main .model {
    max-width: 100%;
}

@media screen and (max-width: 500px) {
    .mask .inner {
        width: 100%;
        border-radius: 15px 15px 0 0 !important;
    }

    .mask .modelHeight {
        align-items: flex-end;
    }

    .model {
        padding: 18px !important;
    }

    .model_cont {
        margin-top: 18px !important;
    }
}

@media screen and (max-width: 350px) {
    .mask .modelHeight .inner {
        min-width: 100%;
    }
}

.maskShow {
    animation: maskShow 0.5s ease-in;
}

.maskHide {
    animation: maskHide 0.5s ease-in !important;
    /* forwards */
}

@keyframes maskShow {
    0% {
        opacity: 0;
        display: none;
    }
}

@keyframes maskHide {
    0% {
        backdrop-filter: blur(0px);
    }

    100% {
        backdrop-filter: blur(0px);
        opacity: 0;
        display: flex;
    }
}

.innerShow {
    animation: innerShow 0.5s ease;
}

.innerHide {
    animation: innerHide 0.5s ease !important;
}

@keyframes innerShow {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes innerHide {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(100vh);
        backdrop-filter: 0;
    }
}
