/* 直立方向 */
@media screen and (orientation:portrait) {
    .landscapeAlertList {
        color: white;
        font-weight: bold;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 80%;
        text-align: center;
    }
}

/* 水平方向 */
@media screen and (orientation:landscape) {
    .landscapeAlertList {
        visibility: hidden;
		display: none;
    }
}

@-ms-viewport {
    width: device-width;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(12 11 11 / 79%);
    overflow: hidden;
}

.content {
    width: 100%;
    height: 100%;
}

.bgimg {
    max-width: 100%;
    max-height: 100%;
    bottom: 0;
    left: 30px;
    margin: auto;
    overflow: auto;
    position: absolute;
    right: 0;
    top: 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.content .objectPut {
    position: absolute;
    max-width: 10%;
}

.content #sample {
    position: absolute;
    max-width: 15%;
    top: 0px;
    right: 0px;
}

.content .objectPutItem {
    position: absolute;
    max-width: 8%;
}

.content .item {
    position: absolute;
    max-width: 15%;
}

.barItem {
    position: absolute;
    width: 8%;
}


#replayDiv {
    width: 25%;
    position: absolute;
    visibility: hidden;
    backdrop-filter: blur(5px);
    border-radius: 2rem;
    background-color: #f0f8ff36;
}

#BGAudio {
    visibility: hidden;
}
