#goldEgg-operation {
    margin: 0 10vw 6vw;
    width: 80%;
    z-index: 1;
    position: inherit;
    left: 0;
    top: 0
}

#goldEgg-time {
    margin-bottom: 6vw;
    margin-top: 0
}

.game-content {
    position: relative
}

#goldEgg-operation p {
    box-shadow: 0 0 10px rgb(255 255 255 / 50%) !important;
    -webkit-box-shadow: 0 0 10px rgb(255 255 255 / 50%) !important
}

#goldEgg-notify {
    margin-top: 0;
    margin-bottom: 4.5vw
}

#goldEgg-explain {
    margin-top: 0
}

#goldEgg-explain-wrapper p {
    font-size: initial
}

#balloon-bg {
    width: 100%;
    position: absolute;
    top: 20vw;
    left: 0;
}


/*游戏区域*/
.main {
    position: relative;
    width: 100%;
    height: 110vw;
}

.main span.balloon {
    position: absolute;
    z-index: 1;
    -o-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -moz-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    background-repeat: no-repeat;
    transition-duration: 0.5s;
}

.balloon img {
    width: 100%;
}

/*气球*/
.main .balloon:nth-child(1) {
    left: 15vw;
    top: 15vw;
    width: 10vw;
}

.main .balloon:nth-child(2) {
    left: 35vw;
    top: 15vw;
    width: 10vw;
}

.main .balloon:nth-child(3) {
    left: 55vw;
    top: 15vw;
    width: 10vw;
}

.main .balloon:nth-child(4) {
    left: 75vw;
    top: 15vw;
    width: 10vw;
}

.main .balloon:nth-child(5) {
    left: 15vw;
    top: 31vw;
    width: 16vw;
}

.main .balloon:nth-child(6) {
    left: 45vw;
    top: 31vw;
    width: 16vw;
}

.main .balloon:nth-child(7) {
    left: 75vw;
    top: 31vw;
    width: 16vw;
}

.main .fly {
    -o-animation: fly 0.5s ease-in;
    -ms-animation: fly 0.5s ease-in;
    -moz-animation: fly 0.5s ease-in;
    -webkit-animation: fly 0.5s ease-in;
    animation: fly 0.5s ease-in;
}

@keyframes fly {
    100% {
        top: -6.66666667rem;
    }
}

.main p {
    position: absolute;
    left: 50%;
    bottom: 4.66666667rem;
    margin-left: -1.57333333rem;
    width: 4rem;
    height: 0.53333333rem;
    background-color: #ffa9a6;
    text-align: center;
    line-height: 0.53333333rem;
    font-size: 0.32rem;
    color: #fff;
    border-radius: 0.26666667rem;
}

.coin {
    position: absolute;
    right: 0.2rem;
    bottom: 2.66666667rem;
    width: 1.28rem;
    height: 1.32rem;
    background-image: url("/tmp_ring/images/coin.png");
    background-size: 100%;
}

#circle {
    position: absolute;
    top: 85vw;
    left: 30vw;
    width: 40vw;
    height: 20vw;
    display: flex;
    flex-direction: column;
}

/*套环*/
.arrow {
    position: absolute;
    left: 50%;
    top: 75vw;
    margin-left: -1.41333333rem;
    width: 2.84rem;
    height: 1.89333333rem;
    background-image: url("/tmp_ring/images/arrow.png");
    -o-animation: up 1s infinite;
    -ms-animation: up 1s infinite;
    -moz-animation: up 1s infinite;
    -webkit-animation: up 1s infinite;
    animation: up 1s infinite;
    background-size: 100%;
}

@keyframes up {
    100% {
        top: 70vw;
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/*上下套环*/
.top,
.bottom {
    /*position: absolute;*/
    /*left: 30vw;*/
    z-index: 1;
    /*width: 40vw;*/
    /*height: 10vw;*/
    display: block;
    flex: 1;
}

.top {
    /*top: 85vw;*/
    /*background-image: url("/tmp_ring/images/top.png?v=2");*/
    -o-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -moz-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    /*z-index: 0;*/
}

.bottom {
    /*top: 95vw;*/
    /*background-image: url("/tmp_ring/images/btm.png?v=2");*/
    -o-transform-origin: center top;
    -ms-transform-origin: center top;
    -moz-transform-origin: center top;
    -webkit-transform-origin: center top;
    transform-origin: center top;
    background-size: 100%;
    background-repeat: no-repeat;
}

.shakeing {
    animation: ring-shakeing 0.8s linear alternate;
}

@keyframes ring-shakeing {
    20%,
    60% {
        -o-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
        -moz-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    40%,
    80% {
        -o-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        -moz-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.jump {
    transform: translateY(-10px);
}