body {
    background: transparent;
}
.gameBox{
    background: none;
}
.layer_1{
    background: url('../images/1.jpg') center / contain no-repeat;
}
.prompt{
    position: absolute;
    width: 14.7%;
    height: 8.2%;
    left: 37.9%;
    top: 91.7%;
    cursor: pointer;
    border-radius: 0.5vw;
    animation: flicker 1.5s infinite;
    border: 0.24vw solid #fff;
}
.border{
    position: absolute;
    width: 13.5%;
    height: 5.7%;
    left: 38.5%;
    top: 92.9%;
    cursor: pointer;
    border-radius: 0.3vw;
    box-shadow: 0px 0px 0px 5000px rgba(0, 0, 0, .5);
}
.mouse{
    left: 51.2%;
    top: 94%;
}
.onClick{
    left: 55.8%;
    top: 95%;
}
.show{
    width: 23%;
    height: 8%;
    position: absolute;
    left: 50%;
    top: 5.5%;
    transform: translateX(-50%);
    display: none;
}
@keyframes flicker {
    0%{
        opacity: 100%;
    }
    50%{
        opacity: 0%;
    }
    100%{
        opacity: 100%;
    }
}