/* 内容容器 */
.container {
    border-radius: 10px;
    background-image: url("/assets/image/container_bg.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    /* min-width: 600px; */
    width: 48%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 隐藏元素 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s 0s,
        transform 0.5s ease-in-out;
    /* overflow-y: auto; */
    z-index: -1;

    /* padding-inline: 16px; */
    box-shadow: 0px 0px 4px 1px rgb(0 0 0 / 42%);
}

.click .container {
    opacity: 1;
    visibility: visible;
    transform: translate(-2%, -50%);
}

@media (max-width: 768px) {
    .container {
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .click .container {
        transform: translate(-50%, -50%);
    }
}

::-webkit-scrollbar {
    display: none;
}

iframe {
    border: unset;
}
