* {
    margin: 0;
    padding: 0
}

img {
    border: 0;
    width: 100%;
    vertical-align: top;
    height: auto;
}

ul,
li {
    list-style: none
}

h1,
div,
ul,
li,
em,
form,
h1 {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: normal;
    -webkit-tap-highlight-color: transparent;
    font-style: normal
}

em,
i {
    font-style: normal
}

html {
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    height: 100%;
    font-size: 300%
}

body,
html {
    position: relative;
    overflow-x: auto;
    overflow: auto;
    height: auto;
}

body {
    font-family: 'Palatino Linotype', 'microsoft yahei', Verdana, Arial, Helvetica, sans-serif;
    background: #000;
    width: 100%;
    height: 100%;
    font-size: .24rem;
}

a {
    text-decoration: none;
    color: #FFF;
    outline: none
}

div,
p,
nav,
ul,
li,
input {
    box-sizing: border-box;
}

input {
    border: none;
    outline-style: none;
    outline: none;
    background: transparent;
    vertical-align: top;
}

::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .2);
    font-size: 0.24rem;
}

/* 使用webkit内核的浏览器 */
:-moz-placeholder {
    color: rgba(255, 255, 255, .2);
    font-size: 0.24rem;
}

/* Firefox版本4-18 */
::-moz-placeholder {
    color: rgba(255, 255, 255, .2);
    font-size: 0.24rem;
}

/* Firefox版本19+ */
:-ms-input-placeholder {
    color: rgba(255, 255, 255, .2);
    font-size: 0.24rem;
}

/* IE浏览器 */
::-webkit-scrollbar {
    width: 10px;
    /*对垂直流动条有效*/
    height: 10px;
    /*对水平流动条有效*/
}

/*定义滚动条的轨道颜色、内阴影及圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(14, 25, 31, .3);
    background-color: #869bb4;
    border-radius: 6px;
}

/*定义滑块颜色、内阴影及圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 6px rgba(28, 41, 50);
    background-color: #cad6ed;
}

/*定义两端按钮的样式*/
::-webkit-scrollbar-button {
    /* background-color:cyan; */
    display: none;
}

/*定义右下角汇合处的样式*/
::-webkit-scrollbar-corner {
    /* background:khaki; */
}

.flex {
    display: -webkit-box;
    /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box;
    /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;
    /* 混合版本语法: IE 10 */
    display: -webkit-flex;
    /* 新版本语法: Chrome 21+ */
    display: flex;
    /* 新版本语法: Opera 12.1, Firefox 22+ */
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-justify-content {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-space-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* 去除点击选项卡时出现的蓝色边框 */
.swiper-pagination .swiper-pagination-bullet:focus {
    outline: none;
}

/* 去除点击选项卡时出现的蓝色背景 */
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: auto;
}
/* 下拉框样式---------------开始 */
.slection-wrap {
    width: 2.5rem;
    height: .5rem;
    border: 1px solid rgba(248,234,185,.3);
    display: inline-block;
    vertical-align: top;
    padding: 0 .3rem 0 .1rem;
    position: relative;
    line-height: .5rem;
    z-index: 10;
    cursor: pointer;
    /* background: rgba(2, 5, 10, 0.5); */
}
.slection-wrap i {
    position: absolute;
    top: 0;
    right: 0;
    width: .5rem;
    height: .5rem;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/nav_jian.png) center no-repeat;
    background-size: .12rem auto;
    -ms-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.slection-wrap.active i {
    -ms-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}
.slection-wrap .current-slection {
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
}
.slection-wrap .slection-list-wrap {
    width: 2.5rem;
    border: 1px solid rgba(248,234,185,.3);
    border-top: none;
    position: absolute;
    top: .48rem;
    left: -1px;
    background: rgba(2, 5, 10, 0.5);
    display: none;
}
.slection-wrap .slection-list-wrap ul {
    padding: .1rem .3rem .1rem .1rem;
    width: 100%;
}
.slection-wrap ul li {
    color: #A19D96;
    cursor: pointer;
}
.slection-wrap ul li:hover,
.slection-wrap ul li.current {
    color: #EDBC6B;
}
/* 下拉框样式结束 */
/* 导航样式------------开始 */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.1rem;
    background: rgba(0, 0, 0, 1);
    border-bottom: 1px solid #d98e4d;
    z-index: 9;
}
.nav-wrap .nav {
    width: 100%;
    /* padding: 0 .3rem; */
    position: relative;
    height: 1.1rem;
    text-align: center;
}
.nav-wrap .nav .logo-wrap {
    width: 1.75rem;
    position: absolute;
    left: .2rem;
    top: 0;
}
.nav-wrap .nav .nav-right {
    position: absolute;
    top: 0;
    height: 1.1rem;
    right: .1rem;
}
.nav-wrap .nav .nav-right .menu {
    /* position: fixed;
    top: 0;
    right: .3rem; */
    width: 0.92rem;
    height: 0.88rem;
    /* background: url('//content.game-bean.com/image/qmqj/japanese/mobile/yuyue/menu_btn_bg.png') no-repeat;
    background-size: 100% 100%; */
    /* z-index: 999; */
    cursor: pointer;
    padding: .24rem;
    margin-left: .3rem;
}
.menu .line {
    width: 0.15rem;
    height: 0.04rem;
    background: #edbc6b;
    border-radius: 0.02rem;
    position: relative;
    top: 0.2rem;
}
.menu .line::before {
    content: '';
    width: 0.3rem;
    height: 0.04rem;
    background: #edbc6b;
    border-radius: 0.02rem;
    position: absolute;
    top: -0.15rem;
    left: 0;
    transition: all .3s;
    -ms-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}
.menu .line::after {
    content: '';
    width: 0.44rem;
    height: 0.04rem;
    background: #edbc6b;
    border-radius: 0.02rem;
    position: absolute;
    top: 0.15rem;
    left: 0;
    transition: all .3s;
    -ms-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}
.menu.active .line {
    width: 0.44rem;
}
.menu.active .line::before {
    content: '';
    width: 0.44rem;
}
.menu.active .line::after {
    content: '';
    width: 0.44rem;
}
.side-btn {
    position: fixed;
    width: 3rem;
    text-align: right;
    height: 2.36rem;
    right: 0;
    top: 1.2rem;
    z-index: 6;
}
.side-btn img {
    width: auto;
    height: 100%;
}
/* 导航样式----------------结束 */
.wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: none;
}

/* 初始化fullpage样式 */
.fp-tableCell {
    display: block;
}

.section {
    position: relative;
}
.next-arrow {
    position: absolute;
    bottom: .3rem;
    left: .14rem;
    right: 0;
    width: 1.1rem;
    height: .54rem;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/next_arrow.png) center no-repeat;
    background-size: 100% 100%;
    margin: auto;
    z-index: 2;
}
.next-arrow a {
    display: block;
    width: 100%;
    height: 100%;
}
.section .part-title {
    height: .92rem;
    text-align: left;
}
.section .part-title img {
    width: auto;
    height: 100%;
}
/* #video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 13.34rem;
    object-fit: cover;
} */
/* part1-------------------开始 */
/* 首頁 */
.section1 {
    position: relative;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part1.jpg) center 1.1rem no-repeat;
    background-size: 100% auto;
    background-color: #0d0d10;
}

.section1 .section1-content {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 1.3rem;
}
.section1 .section1-content .play-btn {
    margin: 0 auto;
    width: 1.44rem;
    height: 1.44rem;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part1_play_btn.png) center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.section1 .section1-content .section1-slg {
    width: 6.82rem;
    margin: .1rem auto;
}
.section1 .section1-content .register-wrap {
    width: 6.2rem;
    margin: 0 auto;
}
.section1 .section1-content .download-btn {
    width: 100%;
    margin-right: .3rem;
    margin-bottom: .2rem;
}
.section1 .section1-content .download-btn a {
    margin: 0 .15rem .1rem .15rem;
    width: 2.42rem;
}

/*首页预注册-------------开始 */
.section1-content .register{
    width: 6.2rem;
    color: #ffffff;
    /* font-size: 0.2rem; */
}
.section1-content .register .title1{
    text-align: left;
    line-height: 0.33rem;
}
.section1-content .register .title1 span{
    position: relative;
    white-space: nowrap;
}
.section1-content .register .title1 #male{
    padding-left: 0.5rem;
    margin-left: 0.3rem;
    cursor: pointer;
}
.section1-content .register .title1 #female{
    margin-left: 0.3rem;
    padding-left: 0.5rem;
    cursor: pointer;
}
.section1-content .register .title1 span i{
    position:absolute;
    top: -.1rem;
    left: 0;
    display: inline-block;
    width: 0.47rem;
    height: 0.47rem;
    background: url('//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part1_xitongxuanzhong.png') no-repeat;
    background-size: 2.13rem auto;
    background-position: -1.74rem 0;
    
}
.section1-content .register .title1 .current{
    color: #dac6a5;
}
.section1-content .register .title1 .current i{
    background-position: 0 0;
}
.section1-content .register .title2 {
    height: 0.52rem;
    border: 1px solid rgba(255,255,255,.5);
    margin-top: 0.2rem;
    background: rgba(2, 5, 10, 0.5);
    line-height: .5rem;
}
.section1-content .register .title2 .title2-left{
    width: 1.28rem;
    height: 0.52rem;
    /* border-right: 1px solid #fff; */
    float: left;
    
}
.section1-content .register .title2 .title2-left .phone-slect-wrap {
    height: .52rem;
    width: 100%;
    
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
.section1-content .register .title2 .title2-left .phone-slect-wrap .current-slection {
    height: .5rem;
}
/* .section1-content .register .title2 .title2-left .phone-slect-wrap i {
    top: .05rem;
} */
.section1-content .register .title2 .title2-left .phone-slect-wrap .slection-list-wrap {
    width: 1.28rem;
    /* max-height: 2rem; */
    overflow: hidden;
    top: .4rem;
    border: 1px solid rgba(255,255,255,.5);
    border-top: none;
    display: none;
}
.section1-content .register .title2 .title2-left .phone-slect-wrap .slection-list-wrap ul {
    height: 2rem;
    overflow-y: auto;
}

.section1-content .register .title2 .title2-rigth{
    width: 4.8rem;
    /* height: 0.4rem; */
    float: right;
    position: relative;
}
.section1-content .register .title2-rigth #title-input {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 0.5rem;
    float: left;
    padding-left: 0.1rem;
    color: #fff;
    font-size: 0.24rem;
}
.section1-content .register .title3 {
    /* width: 5.48rem; */
    height: 0.44rem;
    margin-top: 0.2rem;
    position: relative;
    color: #000;
    font-family: SourceHanSansCN;
}
.section1-content .register .title3 p{
    display: inline-block;
}
.section1-content .register .title3 .title3-left{
    margin-top: 0.03rem;
    float: left;
    width: .2rem;
    height: .2rem;
    /* background-color: #242732; */
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-right: .2rem;
    cursor: pointer;
}
.section1-content .register .title3 .title3-left img {
    display: none;
    width: .32rem;
}
.section1-content .register .title3 .title3-left.checked img {
    display: inline-block;
}
.section1-content .register .title3 .title3-rigth{
    /* position: absolute; */
    left: 0.32rem;
    /* width: 5.6rem; */
    font-size: 0.2rem;
    text-align: left;
    float: left;
    color: #DDC8A6;
}
.section1-content .register .title3 p a{
    color: #DDC8A6;
    text-decoration: underline;
}
.section1-content .yuyue-btn {
    width: 4.48rem;
    margin: 0 auto;
    cursor: pointer;
    height: 1.3rem;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part1_yuyue_btn.png) center no-repeat;
    background-size: 100% auto;
}
/*首页预注册-------------结束 */
/* 预约页-----------开始 */
.section2 {
    position: relative;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part2.jpg) center 1.1rem no-repeat;
    background-size: cover;
}
.section2 .section2-wrap {
    padding: 1.9rem .3rem 0;
    overflow: hidden;
}
.section2 .order_num {
    text-align: left;
    margin: 0.1rem 0 .5rem;
    font-size: .24rem;
    color: #f4deb4;
}
.section2 .order_num span{
    font-size: 0.48rem;
    color: #fcc165;
    font-weight: bold;
}
.section2 #countNumText span {
    color: #c6a77f;
    font-size: 0.35rem;
}
.section2 .jiangli {
    width: 3.66rem;
    height: 6rem;
    background-position: -1.9rem -.46rem !important;
    background-size: 5.64rem auto !important;
    text-align: center;
    padding-top: 1rem;
    margin: 0 auto;
}
.section2 .jiangli img {
    width: 0;
}
.section2 .jiangli.active img {
    width: 3.5rem;
}
.section2 .jiangli.jiangli-10 {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/jiangli_10.png) no-repeat;
}
.section2 .jiangli.jiangli-30 {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/jiangli_30.png) no-repeat;
}
.section2 .jiangli.jiangli-50 {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/jiangli_50.png) no-repeat;
}
.section2 .jiangli.jiangli-70 {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/jiangli_70.png) no-repeat;
}
.section2 .jiangli.jiangli-100 {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/jiangli_100.png) no-repeat;
}
.section2 .progress-wrap {
    width: 100%;
    height: 1.5rem;
    position: relative;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/progress.png) center top no-repeat;
    background-size: 100% .42rem;
    padding-top: .18rem;
    margin-top: .3rem;
}
.section2 .progress-wrap .progress-slider {
    width: 30%;
    height: .06rem;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/progress_active.jpg) left center repeat-x;
    background-size: 100% 100%;
}
.section2 .progress-wrap .progress {
    position: absolute;
    width: 1rem;
    height: 1.5rem;
    text-align: center;
    font-size: .21rem;
    line-height:2rem;
    top: -.2rem;
    font-weight: bold;
}
.section2 .progress-wrap .progress .text {
    background: linear-gradient(to bottom, #EBEBEB , #7D7D7D );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.section2 .progress-wrap .progress.active {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/qiu_little.png) center .2rem no-repeat;
    background-size: .38rem .38rem;
}
.section2 .progress-wrap .progress.active .text {
    background: linear-gradient(to bottom, #FCF363, #F07B06);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.section2 .progress-wrap .progress.active.big {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/qiu_big.png) center 0 no-repeat;
    background-size: .8rem .8rem;
}
.section2 .progress-wrap .progress.progress-10 {
    left: .6rem;
}
.section2 .progress-wrap .progress.progress-30 {
    left: 1.94rem;
}
.section2 .progress-wrap .progress.progress-50 {
    left: 3.2rem;
}
.section2 .progress-wrap .progress.progress-70 {
    left: 4.6rem;
}
.section2 .progress-wrap .progress.progress-100 {
    left: 5.9rem;
}
/* 最新资讯 */
.section3 {
    position: relative;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part3.jpg) center top no-repeat;
    background-size: cover;
}

.section3 .section3-wrap {
    width: 100%;
    padding: 1.9rem .3rem 0;
    margin: 0 auto;
    overflow: hidden;
}

.section3 .section3-wrap .section-content {
    width: 5.2rem;
    height: 7.3rem;
    background: url('//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/fb_news_bg.png') no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
    margin-top: .5rem;
}

.section3 .section3-wrap .section-content .section-fb-content {
    width: 4.6rem;
    height: 5.6rem;
    margin: 0.36rem auto 0;
}


/* 职业介绍 */
.section4 {
    position: relative;
}
.section4 .part-title {
    position: absolute;
    top: 1.9rem;
    z-index: 2;
    left: .3rem;
}

.section4 .swiper-container {
    width: 100%;
    height: 100%;
    padding-top: 1.1rem;
    position: relative;
}

.section4 .swiper-container .swiper-slide {
    width: 100%;
    height: 100%;
}
.section4 .swiper-container .swiper-slide .role-img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    position: relative;
    padding-top: 5rem;
}
.section4 .swiper-container .swiper-slide .role-img.role-1 {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part4_role_1.jpg) center no-repeat;
}
.section4 .swiper-container .swiper-slide .role-img.role-2 {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part4_role_2.jpg) center no-repeat;
}
.section4 .swiper-container .swiper-slide .role-img.role-3 {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part4_role_3.jpg) center no-repeat;
}
.section4 .swiper-container .swiper-slide .role-img.role-4 {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part4_role_4.jpg) center no-repeat;
}
.section4 .swiper-container .swiper-slide .role-img.role-5 {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part4_role_5.jpg) center no-repeat;
}

.section4 .swiper-container .swiper-slide .role-img .role-name {
    /* width: rem; */
    height: 2.81rem;
    text-align: center;
}
.section4 .swiper-container .swiper-slide .role-img .role-name img {
    width: auto;
    height: 100%;
}
.section4 .swiper-container .swiper-slide .role-img .slider-number {
    width: 1rem;
    height: .4rem;
    position: relative;
    font-size: .24rem;
    font-style:italic;
    text-align: center;
    font-weight: bold;
    margin: .7rem auto 0;
}
.section4 .swiper-container .swiper-slide .role-img .slider-number .current-num {
    background: linear-gradient(to bottom, #FCF363, #F07B06);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.section4 .swiper-container .swiper-slide .role-img .slider-number .line {
    color: rgba(255,255,255,.5);
}
.section4 .swiper-container .swiper-slide .role-img .slider-number .total {
    background: linear-gradient(to bottom, #EBEBEB , #7D7D7D );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.section4 .swiper-container .swiper-slide .role-img .slider-number::after {
    content: '';
    width: .4rem;
    height: .04rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #a63413;
}
.section4 .swiper-container .button-prev,
.section4 .swiper-container .button-next {
    width: 1rem;
    height: 1.2rem;
    position: absolute;
    top: 10.4rem;
    left: 1rem;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/swiper_arrow.png) no-repeat;
    background-size: 6.92rem auto;
    background-position: 0 0 !important;
    z-index: 999;
    cursor: pointer;
}
.section4 .swiper-container .button-next {
    right: 1rem;
    left: auto;
    background-position: right 0 !important;
}
/* 商店图展示 */
.section5 {
    position: relative;
    height: 100%;
    background: url('//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/part5.jpg') no-repeat;
    background-size: cover;
    overflow: hidden;
}
.section5 .section5-wrap {
    padding-top: 2rem;
    margin: auto;
}
.section5 .part-title {
    padding-left: .2rem;
}
.section5 .section5-wrap .swiper-container {
    margin: 1rem auto 0;
    height: 7rem;
}
.section5 .section5-wrap .swiper-container .swiper-slide {
    padding: 0 .2rem;
    box-sizing: border-box;
    width: 100%;
}
.section5 .section5-wrap .swiper-container .swiper-slide img {
    width: 100%;
}
.section5 #lihui_swiper .swiper-pagination {
    bottom: 1.5rem;
    width: 7.1rem;
    left: .2rem;
}
.section5 #lihui_swiper .swiper-pagination::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: .24rem;
    width: 98%;
    height: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.section5 #lihui_swiper .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/swiper_dot.png) no-repeat;
    background-size: 5.62rem auto;
    margin: 0 0.2rem!important;
    opacity: 1!important;
    background-position: -0.02rem -0.06rem;
    cursor: pointer;
}
.section5 #lihui_swiper .swiper-pagination-bullet-active {
    width: 0.5rem;
    height: 0.5rem;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/swiper_dot.png) no-repeat;
    background-size: 5.62rem auto;
    margin: 0 0.2rem!important;
    opacity: 1!important;
    background-position: -2.56rem -0.06rem;
    cursor: pointer;
}
.section5 #lihui_swiper .button-prev2,
.section5 #lihui_swiper .button-next2 {
    width: 1rem;
    height: 1.2rem;
    position: absolute;
    top: 4.6rem;
    left: .2rem;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/swiper_arrow.png) no-repeat;
    background-size: 6.92rem auto;
    background-position: 0 0 !important;
    z-index: 999;
    cursor: pointer;
}
.section5 #lihui_swiper .button-next2 {
    right: .2rem;
    left: auto;
    background-position: right 0 !important;
}
.section5 .next-arrow {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/next_arrow_up.png) center no-repeat;
    background-size: 100% 100%;
}

/* footer */
.page6 {
    height: auto !important;
}

.page6 .fp-tableCell {
    height: auto !important;
}

.footer {
    background-color: #000;
    margin-top: -1px;
    padding: .4rem 0;
    text-align: center;
}
.footer .footer-logo {
    width: .8rem;
}
.footer .footer-center {
    margin-top: .2rem;
    
}
.footer .footer-center a {
    font-size: .24rem;
    color: #dedede;
    text-decoration: underline;
    margin: 0 .3rem;
}



/* 敬請期待！ */
.dialog-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.add-dialog-wrap {
    z-index: 9999;
}

/* 视频弹窗 */
.box-movie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1000;
    cursor: pointer;
    display: none;
}

.box-movie .bg-movie {
    width: 100%;
    height: 100%;
}

.box-movie .box-movie video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-movie .video-close {
    position: absolute;
    width: 0.55rem;
    right: 0.36rem;
    top: 0.3rem;
    z-index: 1001;
}

.section1 .appointment-bottom .appointment-bottom-main {
    display: inline-block;
    margin-left: 0.16rem;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dialog-wrap .describe-dialog-content {
    padding-top: 0.5rem;
}

.dialog-wrap .more-information {
    font-size: 0.22rem;
    line-height: 0.46rem;
    color: #fff;
}


/* 菜单栏 */
.add-opacity {
    background: rgba(0, 0, 0, 1);
}

.dialog-wrap .menu-dialog-content {
    height: 100%;
    text-align: center;
    padding-top: .5rem;
}

.dialog-wrap .menu-dialog-content .menu-close {
    width: 0.9rem;
    height: .9rem;
    margin-left: auto;
    margin-right: .5rem;
}
.dialog-wrap .menu-dialog-content .logo-wrap {
    width: 2.7rem;
    margin: .1rem auto .5rem;
}
.dialog-wrap .menu-dialog-content .menu-wrap {
    width: 6rem;
    margin: 0 auto;
}
.dialog-wrap .menu-dialog-content li {
    height: .9rem;
    border-top: 1px dashed rgba(91,28,11, .7);
    cursor: pointer;
}
.dialog-wrap .menu-dialog-content .menu-wrap li.active,
.dialog-wrap .menu-dialog-content .menu-wrap li:hover {
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/nav_text_active.png) center top no-repeat;
    background-size: 100% auto;
}
.dialog-wrap .menu-dialog-content .menu-wrap li a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(//content.game-bean.com/image/qmqj/jianzhong/mobile/yuyue/nav_text.png) no-repeat;
    background-size: 1.25rem auto;
}
.dialog-wrap .menu-dialog-content .menu-wrap li.menu1 a {
    background-position: center .3rem !important;
}
.dialog-wrap .menu-dialog-content .menu-wrap li.menu2 a {
    background-position: center -.6rem !important;
}
.dialog-wrap .menu-dialog-content .menu-wrap li.menu3 a {
    background-position: center -1.5rem !important;
}
.dialog-wrap .menu-dialog-content .menu-wrap li.menu4 a {
    background-position: center -2.4rem !important;
}
.dialog-wrap .menu-dialog-content .menu-wrap li.menu5 a {
    background-position: center -3.3rem !important;
}
.dialog-wrap .menu-dialog-content .fb img{
    width: .6rem;
    margin-top: .8rem;
}
.dialog-wrap .menu-dialog-content li p {
    font-size: 0.46rem;
    line-height: 0.52rem;
    color: #e7ecf5;
}

.dialog-wrap .menu-dialog-content li.current p a {
    color: #c99640;
    font-family: 'Palatino Linotype';
}

.dialog-wrap .menu-dialog-content li i {
    /* display: block; */
    width: 2.68rem;
    height: 0.1rem;
    background: url('//content-us.game-bean.com/image/qmqj/jianzhong/mobile/nav_line.png') no-repeat;
    background-size: 100% 100%;
    margin: 0.08rem auto 0;
}
.dialog-wrap .menu-dialog-content .current i {
    display: block;
}
.dialog-wrap .menu-dialog-content .link-btn{
    font-size: 0;
    margin-top: 1.7rem;
}

.dialog-wrap .menu-dialog-content .fb-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: url('//content-us.game-bean.com/image/qmqj/jianzhong/mobile/fb_icon.png') no-repeat;
    background-size: 100% 100%;
    margin-right: 0.58rem;
}

.dialog-wrap .menu-dialog-content  .discord{
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: url('//content-us.game-bean.com/image/qmqj/jianzhong/mobile/discord.png') no-repeat;
    background-size: 100% 100%;
}

.fb_iframe_widget {
    position: static;
    visibility: visible;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0px;
    border: none;
    max-width: 100%;
    min-width: 180px;
    margin-top: 0px;
    margin-bottom: 0px;
    min-height: 200px;
}

.fb_iframe_widget_fluid {
    display: block !important;
}

.fb_iframe_widget span {
    width: 100% !important;
    height: 100% !important;
}

.fb_iframe_widget iframe {
    width: 100% !important;
    height: 100% !important;
}

.fb_iframe_widget iframe html {
    height: 100% !important;
}

.fb_iframe_widget iframe body {
    height: 100% !important;
}
/* 新添加 */
.language {
    position: fixed;
    background: rgba(59,62,71,.7); 
    top: 0;
    left: 0;
    width: 1.3rem;
    height: 0.46rem;
    z-index: 999;
    border-radius:0.05rem; 
    text-align:center;
    color: #fff;
     -webkit-border-radius:0.05rem; -moz-border-radius:0.05rem; -ms-border-radius:0.05rem; -o-border-radius:0.05rem;
}
.language em{position:absolute;right:0.12rem;top:0.12rem;width:0.06rem;height:0.06rem;border-right:2px solid #FFF;border-bottom:2px solid #FFF;-webkit-transform:rotate(45deg);}
.language div{position:absolute;top:0.46rem;left:0;right:0;background:rgba(59,62,71,.7);display:none;padding:0.05rem 0;z-index:99;border-radius:0 0 0.05rem 0.05rem;}
.language div a{display:block;width: 1.3rem;margin:0;float: left;}
.language span{
    font-size: 0.22rem;
}
.language #icon2{
    display: inline-block;
    width: 0.28rem;
    height: 0.23rem;
    position:absolute;
    right:0.12rem;
    top:0.12rem;
    background: url('//content-us.game-bean.com/image/qmqj/pc/xiala.png') no-repeat;
    background-size: 100% 100%;
}
.language #icon1{
    display: inline-block;
    width: 0.28rem;
    height: 0.28rem;
    position:absolute;
    left:0.05rem;
    top:0.1rem;
    background: url('//content-us.game-bean.com/image/qmqj/pc/yuyan.png') no-repeat;
    background-size: 100% 100%;
}
.language>span{
    color: rgba(255,255,255,.7) !important;
 }
 
/* 预约操作*/
/* 预注册 */
/* .section1-content .register{
    margin: 0 auto;
    width: 5.62rem;
    margin-top: 0.5rem;
    color: #ffffff;
    font-size: 0.14rem;
}
.register .title1{
    text-align: left;
    font-size: 0.26rem;
    width: 6.5rem;
    height: 0.33rem;
    line-height: 0.33rem;
}
.register .title1 span{
    position: relative;
    float: left;
}
.register .title1 #male{
    padding-left: 0.5rem;
    margin-left: 0.4rem;
}
.register .title1 #female{
    margin-left: 0.4rem;
    padding-left: 0.5rem;
}
.register .title1 span i{
    position:absolute;
    top: 0rem;
    left: 0;
    display: inline-block;
    width: 0.33rem;
    height: 0.33rem;
    background: url('//content-us.game-bean.com/image/qmqj/jianzhong/mobile/unselected.png') no-repeat;
    background-size: 100% 100%;
}
.register .title1 .current{
    color: #dac6a5;
}
.register .title1 .current i{
    width: 0.33rem;
    height: 0.33rem;
    top: 0;
    left: 0;
    background: url('//content-us.game-bean.com/image/qmqj/jianzhong/mobile/select.png') no-repeat;
    background-size: 100% 100%;
    
}
.register .title2 {
    width: 5.48rem;
    height: 0.44rem;
    border: 1px solid #fff;
    margin-top: 0.22rem;
}
.register .title2 .title2-left{
    width: 1.06rem;
    height: 0.42rem;
    border-right: 1px solid #fff;
    float: left;
}
.register  .title2-left i{

    display: inline-block;
    width: 0.45rem;
    height: 0.3rem;
    background: url('//content-us.game-bean.com/image/qmqj/jianzhong/mobile/email.png') no-repeat;
    background-size: 100% 100%;
    margin-top: 0.05rem;
}
.register .title2 .title2-rigth{
    width: 4.35rem;
    height: 0.42rem;
    float: right;
    position: relative;
}
.register .title2-rigth #title-input {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 0.42rem;
    float: left;
    padding-left: 0.05rem;
    color: #fff;
}
.register .title3 {
    width: 5.48rem;
    height: 0.44rem;
    margin-top: 0.15rem;
    position: relative;
    color: #ddc8a6;
}
.register .title3 p{
    display: inline-block;
}
.register .title3 .title3-left{
    margin-top: 0.03rem;
    float: left;
}
.register .title3 .title3-rigth{
    position: absolute;
    left: 0.4rem;
    width: 5.6rem;
    font-size: 0.12rem;
    text-align: left;

}
.register .title3 p a{
    color: #ddc8a6;
    text-decoration: underline;
}
.register .determine {
    margin-top: 0.2rem;
}
.register .determine #orderBtn{
    width: 3.93rem;
    height: auto;
    margin: 0 auto;
} */
.fm .pop-box {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    ms-transform: translate(-50%,-50%);
    text-align: center;
}
.fm .close {
    position: absolute;
    top: -0.15rem;
    right: -0.15rem;
    width: 0.47rem;
    height: 0.47rem;
    cursor: pointer;
    z-index: 99999;
    background: url("//content-us.game-bean.com/image/qmqj/jianzhong/mobile/popup_x.png") no-repeat center/cover;
}
.order_box{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
    background: rgba(0, 0, 0, 0.7);
}
.order_box .t-reg {
    background: url("//content-us.game-bean.com/image/qmqj/jianzhong/mobile/popup.png") no-repeat center/cover;
    width: 5.03rem;
    height: 2.80rem;
    padding: 0 .3rem;
    opacity: 0.9;
}
.phone_wrong h5{
    margin-top: 0.56rem;
    color: #fff;
    font-size: .2rem;
}
.phone_img{
    position: absolute;
    bottom: 0.4rem;
    width: 100%;
    height: 0.57rem;
    opacity: 1;
    text-align: center;
    left: 0;
}
.phone_img img {
    width: auto;
    height: 100%;
}