body {
    background: transparent;
}
.gameBox{
    background: none;
}
.layer_1{
    background: url('../images/1.jpg') center / contain no-repeat;
}
.layer_2{
    display: none;
    background: url('../images/2.jpg') center / contain no-repeat;
}
.layer_3{
    display: none;
    background: url('../images/3.jpg') center / contain no-repeat;
}
.layer_4{
    display: none;
    background: url('../images/4.jpg') center / contain no-repeat;
}
.layer_5{
    display: none;
    background: url('../images/5.jpg') center / contain no-repeat;
}
.layer_6{
    display: none;
    background: url('../images/6.jpg') center / contain no-repeat;
}
.prompt{
    position: absolute;
    width: 5%;
    height: 8.4%;
    left: 81.65%;
    top: 10.5%;
    cursor: pointer;
    border-radius: 0.5vw;
    animation: flicker 1.5s infinite;
    border: 0.24vw solid #fff;
}
.border{
    position: absolute;
    width: 3.5%;
    height: 6%;
    left: 82.4%;
    top: 11.7%;
    cursor: pointer;
    
    border-radius: 0.3vw;
    box-shadow: 0px 0px 0px 5000px rgba(0, 0, 0, .5);
}
.mouse{
    left: 85%;
    top: 16%;
}
.onClick{
    left: 84%;
    top: 23%;
}
.layer_2 .prompt{
    width: 28.3%;
    height: 8%;
    left: 57.8%;
    top: 10.6%;
}
.layer_2 .border{
    top: 11.5%;
    left: 58.4%;
    width: 27%;
}
.layer_2 .mouse{
    top: 16%;
    left: 84.5%;
}
.layer_2 .onClick{
    width: 21%;
    height: 3%;
    left: 70%;
    top: 23%;
}

.show_input{
    width: 17%;
    height: 4%;
    border: none;
    background: transparent;
    text-align: center;
    position: absolute;
    top: 12.5%;
    left: 63.7%;
    font-size: 1.25vw;
    z-index: 9;
    text-align: left;
}
.click{
    width: 4%;
    height: 5%;
    top: 12%;
    left: 81%;
    position: absolute;
    cursor: pointer;
}

.layer_3 .prompt{
    width: 4.2%;
    height: 7%;
    left: 83.9%;
    top: 2.6%;
}
.layer_3 .border{
    top: 3.5%;
    left: 84.5%;
    width: 3%;
    height: 5%;
}
.layer_3 .mouse{
    top: 7%;
    left: 86.5%;
}
.layer_3 .onClick{
    left: 85.5%;
    top: 14%;
}

.layer_4 .prompt{
    width: 6.1%;
    height: 6.8%;
    left: 76.6%;
    top: 21.5%;
}
.layer_4 .border{
    top: 22.5%;
    left: 77.2%;
    width: 4.9%;
    height: 4.7%;
}
.layer_4 .mouse{
    top: 26%;
    left: 81.5%;
}
.layer_4 .onClick{
    left: 80.5%;
    top: 33%;
}
@keyframes flicker {
    0%{
        opacity: 100%;
    }
    50%{
        opacity: 0%;
    }
    100%{
        opacity: 100%;
    }
}