* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    touch-action: pan-y;
}

html,
body {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
}

.container {
    width: 100%;
    height: 100%;
    background: url(../images/bg.jpg) no-repeat center bottom;
    background-size: cover;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.pos_abs {
    position: absolute;
}


.swiper {
    width: 65.6vw;
    height: 65.6vw;
    left: 17.2vw;
    top: 57vw;
    overflow: hidden;
    /* border-radius: 8px; */
    border-radius: 65.6vw;
    ;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 65.6vw;
    height: 65.6vw;
    display: block;
    object-fit: cover;
    border-radius: 65.6vw;
    ;
}

.play-btn {
    display: block;
    width: 40px;
    height: 40px;
    top: 126vw;
    left: 50%;
    margin-left: -21.5px;
    border: 3px solid #E1B257;
    border-radius: 50%;
    color: #E0B15C;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    background: none;
}

.play-btn::before {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}

.play-btn.playing::before {
    font-size: 18px;
    content: "❚❚";
    left: 50%;
}

audio {
    display: none;
}

.cp {
    width: 103vw;
    height: 103vw;
    left: -1.5vw;
    top: 39vw;
}

.rotate {
    animation: rotate 8s linear infinite;
}

.bfg {
    width: 30.6vw;
    right: 1vw;
    top: 51vw;
    pointer-events: none;
    z-index: 2;
}

.hand {
    width: 8.5vw;
    left: 46vw;
    top: 114vw;
    animation: move 1.2s linear infinite;
    pointer-events: none;
    opacity: 1;
    display: none;
    z-index: 2;
}


.hand2 {
    width: 7.5vw;
    left: 60vw;
    top: 148vw;
    animation: scale 1.2s linear infinite;
    pointer-events: none;
    opacity: 1;
    display: none;
    z-index: 2;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {

        transform: rotate(360deg);
    }
}

@keyframes move {
    0% {
        left: 42vw;
    }

    50% {
        left: 48vw;

    }

    100% {

        left: 42vw;
    }
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.mask {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.box {
    width: 90vw;
    background: #fff;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
}

.box img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 10px;
}

.box span {
    color: #fff;
    left: 50%;
    font-size: 25px;
    top: -40px;
}

.checkImg {
    width: 30vw;
    background: #E0B15C;
    left: 35vw;
    top: 145vw;
    text-align: center;
    line-height: 2em;
    border-radius: 5px;
    display: none;
}