body{
    background-image: url(../images/BG.webp);
    background-position: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
body::after{
    background: rgba(1, 0, 40, 0.3) !important;
    content: "";
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}
.displayhide{
    display: none;
}
.displayshow{
    display: block;
}
.all-click {
    position:fixed;
    /* background-color: red; */
    top: 0; left: 0; bottom: 0; right: 0;
}
.header{
    height: 220px;
    background-image: url(../images/bar.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.mini{
    width: 100px;
    height: 100px;
}
.logo{
    width: 250px;
    height: auto;
}
.header-menu{
    top: -5px;
}
.header-left{
    position: absolute;
    left: 7%;
    top: 4.7rem;
}
.header-right{
    position: absolute;
    right: 7%;
    top: 4.7rem;
    z-index: 999;
}
.header-center{
    position: absolute;
    left: 50%;
    top: 4.5rem;
    transform: translate(-50%);
}

@media only screen and (max-width: 760px){
    .header{
        height: 100px;
    }
    .mini{
        width: 50px;
        height: 50px;
    }
    .logo{
        width: 100px;
        height: auto;
    }

    .header-left{
        top: 2rem;
    }
    .header-right{
        top: 2rem;
    }
    .header-center{
        top: 2.2rem;
    }
}

.game-bar img{
    width: 100%;
}

.register-btn{
    text-align: center;
}
.register-btn.top{
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translate(-50%);
}
@media only screen and (max-width: 760px){
    .register-btn.top{
        top: 90px;
    }
}
/* .register-btn.bottom{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,70%);
} */
.register-btn img{
    cursor: pointer;
    animation: tada 2s ease-out infinite alternate both;
}
.register-btn.top img{
    width: 500px;
    height: auto;
}
.register-btn.bottom img{
    width: 400px;
    height: auto;
}
@media only screen and (max-width: 760px){
    .register-btn.top img{
        width: 250px;
    }
    .register-btn.bottom img{
        width: 200px;
    }
}

.main{
    border: 7px solid transparent;
    border-radius: 200px;
    background: linear-gradient(to right,#BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    box-shadow: inset 2px 10000px 1px #000;
    padding: 10rem 0;
    margin: 5rem auto 0 auto;
    max-width: 960px;
    width: 100%;
    /* padding: .5rem; */
}
@media only screen and (max-width: 760px){
    .main{
        border-radius: 120px;
        margin: 2.5rem auto 0 auto;
        padding: 5rem 0;
    }
}
.main .banner{
    width: 100%;
    padding: .5rem;
}
.main .promotion{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.main .promotion img{
    padding: .5rem;
    width: 50%
}

.main .slip-box{
    padding: .5rem;
    width: 100%;
    height: 100%;
    text-align: center;
}
.main .slip-box .img-box{
    width: 80%;
    height: auto;
}

.swiper-container {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



/* //////////animate/////////// */
@keyframes tada {
    0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
} 