.loadingSy {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #fff;
}

.loadingSy .pic {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-size: 30px;
    text-align: center;
    line-height: 100px;
}

.loadingSy .pic span {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    box-shadow: 0 3px 0 #39ce72;
    animation: rotate 1s infinite linear;
    -webkit-animation: rotate 1s infinite linear;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.head {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(9, 15, 34, .8);
    z-index: 9999;
}

#menu {
    margin: 0 auto;
    width: 1200px;
    position: relative;
    height: 80px;
}

.menu_hover {
    position: absolute;
    top: 80px;
    left: 0;
    background: rgba(20, 24, 38, .7) url(../images/nav_top.png) no-repeat top right;
    width: 100%;
    color: #fff;
    height: 170px;
    display: none;
}

.menu_ej {
    width: 860px;
    margin: 0 auto;
    height: 170px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.menu_ej ul {
    float: right;
    width: 170px;
    margin-top: 25px;
    text-align: center;
    /* margin: 25px 42px 0; */
}


/* .menu_ej ul:nth-child(1) {
    width: 186px;
}

.menu_ej ul:nth-child(2) {
    width: 155px;
}

.menu_ej ul:nth-child(3) {
    width: 142px;
} */

.menu_ej ul li a {
    color: #fff;
    font-size: 14px;
    padding-bottom: 20px;
    display: block;
}

.menu_ej ul li a:hover {
    opacity: .8;
}


/* .menu_ej ul:nth-child(3) {
    margin: 25px 38px 0;
    text-align: center
} */

.logo {
    width: 142px;
    height: 52px;
    float: left;
    padding-top: 14px;
}

#menu ul {
    float: right;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

#menu ul li {
    float: left;
    width: 170px;
    /* text-align: center; */
}

#menu ul li:nth-child(1) {
    /* width: 100px; */
}

#menu ul li a {
    float: left;
    /* margin: 0 20px 0; */
    /* padding: 0 20px; */
    font-size: 18px;
    color: #fff;
    height: 78px;
    line-height: 78px;
    width: 170px;
    text-align: center;
}

#menu ul li a:hover {
    /* border-bottom: 2px solid #5fb17e; */
}

#menu ul li.active {
    border-bottom: 2px solid #39ce72;
}

#menu ul li.activeNone {
    border-bottom: none;
}

#menu ul i.nav_line {
    position: absolute;
    top: 78px;
    background: #39ce72;
    height: 2px;
    z-index: 1;
    display: none;
    -webkit-transition: left ease .3s;
    -moz-transition: left ease .3s;
    -ms-transition: left ease .3s;
    transition: left ease .3s;
    /* -webkit-transition: width .3s;
    -moz-transition: width ease .3s;
    -ms-transition: width ease .3s;
    transition: width ease .3s; */
}

#menu ul i.nav_line.nav_line_00 {
    left: 0;
    width: 170px;
}

#menu ul i.nav_line.nav_line_01 {
    left: 170px;
    width: 170px;
}

#menu ul i.nav_line.nav_line_02 {
    left: 340px;
    width: 170px;
}

#menu ul i.nav_line.nav_line_03 {
    left: 510px;
    width: 170px;
}

#menu ul i.nav_line.nav_line_04 {
    left: 680px;
    width: 170px;
}

/* 下拉菜单 */
.sub-ul {
    padding-top: 25px;
    background: rgba(20, 24, 38, .7);
    display: none;
}
.sub-ul .sub-li {
    width: 100% !important;
}
.sub-ul .sub-li a {
    color: #fff !important;
    font-size: 14px !important;
    padding-bottom: 20px !important;
    display: block !important;
    height: auto !important;
    line-height: unset !important;
    /* padding: 0 !important; */
    margin: 0 !important;
    text-align: center;
    opacity: .8
}

.sub-ul .sub-li a:hover {
    opacity: 1;
}
.sub-ul .sub-li:nth-child(1) a {
    /* opacity: 1; */
}
/* end 下拉菜单*/


/* 语言版本 */

#menu_ej .lang li {
    margin-left: 43px;
}

#lang {
    border: none;
    position: absolute;
    right: -165px;
    top: 0;
    /* bottom: 0; */
    margin: auto;
    cursor: pointer;
    width: 145px;
    height: 80px;
    text-align: left;
}

#lang p {
    position: absolute;
    color: #fff;
    opacity: .8;
    left: 60px;
    top: 20px;
}

#lang img {
    width: 20px;
    opacity: 0.8;
    margin-top: 30px;
    padding-left: 32px;
}

#lang:hover img {
    opacity: 1;
}

#lang:hover p {
    opacity: 1;
}

.lang_hover {
    position: absolute;
    top: 80px;
    right: 0;
    background: rgba(9, 15, 34, .8);
    width: 145px;
    color: #fff;
    padding: 10px 0;
    z-index: 9999;
    display: none;
}

.lang_hover a {
    color: #fff;
    display: block;
    background: url(../images/nav_top.png) no-repeat top right;
    text-align: center;
    padding: 10px 0;
    opacity: .8
}

.lang_hover a:hover {
    opacity: 1;
}

.lang_hover a:nth-child(4) {
    opacity: 1;
}

.section {
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.section0 {
    background: url(../images/b3.jpg) no-repeat center center;
    background-size: cover;
}

.section1 {
    background: url(../images/b1.jpg) no-repeat center center;
    background-size: cover;
}

.section1 .b1_t1 {
    position: absolute;
    bottom: 0;
    right: 500px;
}


/* .section .bt_t1_y {
     z-index: 0;
 } */

.section1 .b1_t2 {
    position: absolute;
    bottom: 140px;
    right: 440px;
}

.section1 .b1_t3 {
    position: absolute;
    bottom: 230px;
    left: 400px;
}


/* .section1 .b1_t1 img,
.section1 .b1_t3 img {
    width: 80%;
} */

.section2 {
    background: url(../images/b2.jpg) no-repeat center center;
    background-size: cover;
}

.section2 .b2_t1 {
    position: absolute;
    left: 100px;
    top: 130px;
}

.section2 .b2_t2 {
    margin-top: 640px;
    position: relative;
    z-index: 1;
}

.section2 .b2_t3 {
    position: absolute;
    bottom: 0;
    left: 500px;
}

.section5 {
    background: url(../images/b5.jpg) no-repeat center center;
    background-size: cover;
}

.section5 .b5_t2 {
    position: absolute;
    right: 100px;
    top: 130px;
}

.section5 .b5_t1 {
    margin-top: 640px;
    position: relative;
    z-index: 1;
}

.section5 .b5_t3 {
    position: absolute;
    top: -100px;
    left: -600px;
}

.section5 .b5_t3 img {
    width: 100%;
}

.section5 .b5_t4 {
    position: absolute;
    top: -460px;
    right: -630px;
}

.section5 .b5_t4 img {
    width: 95%;
}

.section5 .b5_t5 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.section7 {
    background: url(../images/b7.jpg) no-repeat center center;
    background-size: cover;
}

.section7 .b7_t2 {
    position: absolute;
    left: 100px;
    top: 130px;
}

.section7 .b7_t2 img {
    width: 220px;
}

.section7 .b7_t1 {
    margin-top: 640px;
    position: relative;
    z-index: 1;
}


/* .section2 .b2_t2 img{
    width: 70%;
} */

/* add by hong*/
.ct_logo{
    position: absolute;
    top:126px;
    left: 60px;
}
.ct_title{
    position: absolute;
    top:272px;
    left: 0;
    right: 0;
}
/*  end */
.section3 {
    background: url(../images/game_bg1.jpg) no-repeat center center;
    background-size: cover;
}

.section4 {
    background: url(../images/game_bg2.jpg) no-repeat center center;
    background-size: cover;
}

.section6 {
    background: url(../images/beast_bg.jpg) no-repeat center center;
    background-size: cover;
}

.section8 {
    background: url(../images/starry_bg.jpg) no-repeat center center;
    background-size: cover;
}

.section9 {
    background: url(../../images/section9_bg2.jpg) no-repeat bottom 90% center;
    background-size: cover;
    position: relative;
}

.section8 .feature_bg {
    position: absolute;
    top: 0;
    left: 0;
}

.section8 .starry_way_list {
    position: relative;
}

.section8 .starry_list {
    position: absolute;
    width: 145px;
    height: 145px;
    cursor: pointer;
}

.section8 .starry_list img {
    position: absolute;
    display: block;
    width: 127px;
    height: 127px;
    opacity: 0;
}

.section8 .starry_way_list .starry_list img:nth-child(1) {
    margin-left: 9px;
    margin-top: 9px;
    opacity: 1;
    transition: opacity .5s;
}

.section8 .starry_way_list .pointRight,
.section8 .starry_way_list .starry_info {
    display: none;
}

.section8 .starry_way_list.active .starry_list img:nth-child(1) {
    opacity: 0;
}

.section8 .starry_way_list.active .starry_list img:nth-child(2) {
    opacity: 1;
    width: 145px;
    height: 145px;
}

.section8 .starry_way_list.active .pointRight,
.section8 .starry_way_list.active .starry_info {
    display: block;
}

.section8 .starry_list_01 {
    top: -70px;
    left: -60px;
}

.section8 .starry_list_02 {
    top: 100px;
    left: 30px;
}

.section8 .starry_list_03 {
    top: 260px;
    left: -60px;
}

.section8 .starry_list_04 {
    top: 415px;
    left: 30px;
}

.section8 .starry_info {
    position: absolute;
    text-align: left;
    background: url(../images/starry_text_bg.png) no-repeat center center;
    width: 344px;
    height: 122px;
    top: 15px;
    left: 220px;
}

.section8 .starry_info .starry_info_title {
    font-size: 24px;
    text-align: center;
    padding-top: 15px;
}

.section8 .starry_list_02 .starry_info .starry_info_title,
.section8 .starry_list_04 .starry_info .starry_info_title {
    padding-bottom: 10px;
}

.section8 .starry_info .starry_info_text {
    text-align: left;
    font-size: 14px;
    line-height: 16px;
    padding: 0 20px;
    opacity: .9;
}

.section8 .pointRight {
    left: 150px;
    position: absolute;
    top: 60px;
}
/* .section .b9_light{
    position: absolute;
    left: 10.5%;
    top: -96%;
}
.section .b9_light2{
    position: absolute;
    top: -94%;
    width: 141%;
    left: -21%;
}
.section .b9_light2 img{
    width: 100%;
} */

/* 超甜 */
.section .b9_earth{
    position: absolute;
    /* top: -77%; */
    width: 1300px;
    height: 1300px;
    top: -750PX;
    left: 50%;
    transform: translateX(-50%);
}
.section .b9_light{
    position: absolute;
    top: -96%;
    left: 50%;
    transform: translateX(-50%);
}
.section .b9_light2{
    position: absolute;
    top: -76%;
    width: 100%;
    /* width: 141%;
    left: -19%; */
    left: 50%;
    transform: translateX(-50%);
    /* width: 171%;
    left: -24%; */
}
.section .b9_light2 img{
    /* width: 100%; */
}

.section .b9_logo{
    position: absolute;
    left: 10%;
    top: 20%;
}
.section .b9_logo img{
    width: 180px;
    height: 52px;
}
.yujian-box {
    position: absolute;
    /* top: 41.5%; */
    top: 40.5%;
    left: 50%;
    transform: translateX(-50%);
}
.section .b9_tx{
    position: absolute;
    width: 805px;
    height: 309px;
    top: calc(10.5% - 20px);
    left: 31.09%;
}
.section .b9_tx img{
    position: absolute;
    /* width: 805px;
    height: 309px; */
}
.active.section9 .b9_tx img, .socialPage1 .b9_tx img{ 
    animation: avatalScalse 1.5s;
 }
 .b9_tx .avatar1 {
     top: 1px;
     left: 1px;
 }
 .b9_tx .avatar2 {
     top: 132px;
     left: 23px;
 }
 .b9_tx .avatar3 {
     top: 80px;
     left: 219px;
 }
 .b9_tx .avatar4 {
     bottom: 5px;
     left: 298px;
 }
 .b9_tx .avatar5 {
     top: 13px;
     right: 290px;
 }
 .b9_tx .avatar6 {
    bottom: 76px;
     right: 198px;
 }
 .b9_tx .avatar7 {
    top: 17px;
    right: 1px;
 }
@keyframes avatalScalse {
    0% {
        opacity: 1;
        -webkit-transform: scale(.1);
        -moz-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
    }
    /* 60% {
        opacity: .9;
        -webkit-transform: scale(.8);
        -moz-transform: scale(.8);
        -ms-transform: scale(.8);
        -o-transform: scale(.8);
        transform: scale(.8);
    } */
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
.section .b9_text{
    /* position: absolute;
    top: 41.5%;
    left: 37.5%; */
}
.b9_text_home_box {
    position: absolute;
    top: 45.5%;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
}
.section .b9_text_home {
    top: 44%;
}
.section .b9_text img{
    height: 150px;
}
.section .download-box {
    position: absolute;
    left: 50%;
    top: 59%;
    transform: translateX(-50%);
    /* width: 500px; */
    z-index: 1;
}
.section .b9_download{
    /* position: absolute;
    top: 60%;
    left: 36.5%; */
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    z-index: 10;
}
.section .b9_download>div{
    /* width: 30%; */
    margin: 0 11px;
}
.section .b9_download img{
    width: 172px;
    cursor: pointer;
}
.section .b9_ren{
    position: absolute;
    left: 37%;
    bottom: -2%;
}
.section .b9_ball{
    position: absolute;
    left: 21%;
    bottom: 0;
}

.ct_cp {
    height: 3400px;
    background: url(/images/ct_cpbg.png) no-repeat top -80px center;
    background-size: cover;
    position: relative;
}

.socialPage1{
    width: 100%;
    height: 969px;
    position: relative;
}
.socialPage2{
    width: 100%;
    height: 2431px;
    /* background: url(../images/ct_bg2.png) no-repeat center center; */
    background-size: cover;
    position: relative;
    text-align: center;
}
.socialPage2 .socialTitle{
    position: absolute;
}
.socialPage2 .wfjs{
    position: absolute;
    top: 10%;
    width: 70%;
    left: 15%;
    margin: 0 auto;
}
.socialPage2 .wfjs .wf{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
}
.socialPage2 .wfjs .wf div {
    width: 40%;
}
/* .socialPage2 .wfjs .wfjs_img img{
    height: 350px;
}
.socialPage2 .wfjs .wfjs_text img{
    height: 175px;
} */

/* end 超甜 */

.foot {
    background: #141726;
    color: #c3c3c3;
    font-size: 14px;
    padding: 30px 0 20px;
}

.foot_content {
    margin: 0 auto;
    width: 100vw;
    height: 75px;
    display: flex;
    justify-content: center;
}

.foot img,
.line,
.foot_text {
    float: left;
}

.line {
    width: 1px;
    height: 75px;
    background: rgba(255, 255, 255, .3);
    margin: 0 65px;
}

.foot_text {
    /* width: 920px; */
    text-align: left;
    line-height: 24px;
    position: relative;
}

.foot_text p {
    margin: 0;
    padding: 0;
}

.foot_text a {
    color: #c3c3c3;
    position: relative;
}

.mww,
.mga {
    padding-right: 38px;
}

.renz span {
    opacity: 0;
}

.foot_text a img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.foot_text a:hover {
    text-decoration: underline;
}

.copyright {
    position: absolute;
    top: -270px;
    left: 278px;
    background: url(../images/copyright_bg.png) no-repeat center center;
    width: 500px;
    height: 221px;
    font-size: 14px;
    padding-left: 35px;
    padding-top: 30px;
    display: none;
    z-index: 1;
}


/* 游戏产品 */

.fp-tableCell {
    position: relative;
}

.game_role_01 {
    position: absolute;
    left: 40px;
    bottom: 0;
}

.game_role_02 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.bounceInUp2 {
    animation: bounceInUp2 2s;
}

@keyframes bounceInUp2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(200px);
        -ms-transform: translateY(200px);
        transform: translateY(200px);
    }
    /*
  60% {
    opacity:.5;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
	  opacity: 1;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
*/
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.game_info_box {
    width: 405px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: block;
}

.game_icon {
    margin-bottom: 22px;
}

.game_name {
    border-bottom: 1px solid rgba(255, 255, 145, .7);
    font-size: 30px;
    margin-bottom: 25px;
}

.section8 .game_name {
    border-bottom: 1px solid rgba(255, 255, 255, .7);
}

.section4 .game_name {
    border-bottom: 1px solid rgba(250, 224, 255, .7);
}

.game_name p {
    font-size: 20px;
    padding: 18px 0 50px;
    margin: 0;
}

.game_text {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 50px;
}

.section6 .game_role_01 {
    position: absolute;
    left: 50px;
    bottom: 100px;
}


/* .game_btn{
    position: relative;
} */

.game_btn a {
    width: 168px;
    height: 52px;
    background: #ffe8c1;
    display: inline-block;
    border-radius: 10px;
    font-size: 22px;
    color: #672932;
    line-height: 52px;
    margin: 0 15px;
    position: relative;
}

.game_btn a:nth-child(2) {
    background: #c9821d;
    color: #fff;
}

.downloadShow {
    display: none;
    position: absolute;
    background: url(../images/down_bg.png) no-repeat center center;
    width: 172px;
    height: 200px;
    top: 50px;
    left: 0;
}

.downloadShow img {
    margin-top: 43px;
    height: 143px;
    width: 143px;
}

.game_feature {
    position: absolute;
    right: 270px;
    top: 135px;
    width: 489px;
    height: 852px;
}

.feature_bg {
    position: absolute;
    top: 0;
    left: 0;
}

.feature_list {
    position: absolute;
    width: 86px;
    height: 86px;
    cursor: pointer;
    /* transition: 0.6s; */
}

.feature_list:hover {
    /* transform: rotateY(180deg);
    transition: 0.6s; */
}

.feature_list img {
    position: absolute;
    top: 0;
    left: 0;
}

.feature_list img:nth-child(1) {
    z-index: 1;
}

.feature_list img:nth-child(2) {
    z-index: 0;
}

.onBlock {
    transform: rotateY(180deg);
    transition: 0.6s;
    backface-visibility: hidden
}

.backBlock {
    transform: rotateY(180deg);
    transition: 0.6s;
}

.game_feature_list {
    position: relative;
}

.game_feature_box .game_feature_list:nth-child(even) .game_feature_info {
    position: absolute;
    text-align: right;
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
    align-items: flex-end;
}

.game_feature_box .game_feature_list:nth-child(odd) .game_feature_info {
    position: absolute;
    text-align: right;
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
    align-items: flex-start;
}

.game_feature_info {
    position: absolute;
    text-align: right;
}

.game_feature_info .game_feature_title {
    height: 50px;
}

.game_feature_info .game_feature_title p {
    font-size: 16px;
    font-family: 'Arial';
    padding-top: 18px;
    margin: 0;
}

.game_feature_info .game_feature_text {
    font-size: 12px;
    width: 235px;
    line-height: 16px;
}

.feature_title_right {
    background: url(../images/game_title_right.png) no-repeat center center;
    width: 120px;
}

.feature_title_right p {
    padding-left: 6px;
}

.feature_title_left {
    background: url(../images/game_title_left.png) no-repeat center center;
    width: 220px;
    text-align: left;
}

.game_feature_text_right {
    right: 36px;
}

.game_feature_text_left {
    left: 48px;
    text-align: left;
}

.game_feature_info_01 {
    top: 170px;
    right: 95px;
}

.game_feature_info_02 {
    top: 277px;
    left: 0px;
}

.game_feature_info_03 {
    top: 372px;
    right: 95px;
}

.game_feature_info_04 {
    top: 481px;
    left: 0px;
}

.game_feature_info_05 {
    top: 577px;
    right: 95px;
}

.game_feature_info_06 {
    top: 689px;
    left: 0px;
}

.game_feature_info_07 {
    top: 788px;
    right: 95px;
}

.game_feature_info_07 .feature_title_right {
    background: url(../images/game_title_right_07.png) no-repeat center center;
    width: 180px;
}

.game_feature_info_04 .feature_title_left {
    background: url(../images/game_title_right_04.png) no-repeat center center;
    width: 120px;
}

.game_feature_info_06 .feature_title_left {
    background: url(../images/game_title_right_06.png) no-repeat center center;
    width: 150px;
}

.feature_list_01 {
    top: 90px;
    right: 105px;
}

.feature_list_02 {
    top: 195px;
    left: 6px;
}

.feature_list_03 {
    top: 293px;
    right: 105px;
}

.feature_list_04 {
    top: 401px;
    left: 6px;
}

.feature_list_05 {
    top: 498px;
    right: 106px;
}

.feature_list_06 {
    top: 605px;
    left: 6px;
}

.feature_list_07 {
    top: 706px;
    right: 105px;
}

.game_way {
    position: absolute;
    left: -90px;
    top: -70px;
    width: 1218px;
    height: 950px;
    z-index: 0;
}

.game_way_info {
    position: absolute;
    top: 455px;
    left: 280px;
}

.game_way_list {
    float: left;
}

.game_way_list ul li {
    color: #b74f8b;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    height: 52px;
    margin-bottom: 24px;
    cursor: pointer;
    position: relative;
    width: 124px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}

.game_way_list ul li span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #b74f8b;
    display: block;
    border-radius: 50%;
    left: 10px;
}

.game_way_list ul li:hover,
.game_way_list ul li.active {
    background: url(../images/game_way_hover.png) no-repeat center center;
    width: 124px;
    height: 52px;
    color: #fff;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}

.game_way_list ul li:hover span,
.game_way_list ul li.active span {
    background: #fff;
}

.game_way_detail {
    float: left;
    padding: 0 0 0 40px;
}

.game_way_detail .pointRight {
    float: left;
    padding-top: 6px;
}

.game_way_detail .way_info {
    float: left;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 20px;
}

.game_way_detail .way_info p {
    margin: 0;
}

.game_way_detail .way_info img {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
}

.game_way_detail_01 .way_info,
.game_way_detail_02 .way_info,
.game_way_detail_03 .way_info,
.game_way_detail_04 .way_info {
    width: 225px;
    margin-top: -235px;
}

.game_way_detail_01 {
    margin-top: 12px;
}

.game_way_detail_02 {
    margin-top: 88px;
}

.game_way_detail_03 {
    margin-top: 162px;
}

.game_way_detail_04 {
    margin-top: 239px;
}

.game_box,
.game_feature_box,
.game_box_info {
    width: 100%;
    height: 100%;
}

.game_feature_box {
    position: absolute;
}

.section6 .beast_list_01 {
    top: 115px;
    right: 325px;
}

.section6 .beast_list_02 {
    top: 260px;
    right: 260px;
}

.section6 .beast_list_03 {
    top: 420px;
    right: 230px;
}

.section6 .beast_list_04 {
    top: 585px;
    right: 235px;
}

.section6 .beast_list_05 {
    top: 750px;
    right: 280px;
}

.section6 .beast_list {
    position: absolute;
    width: 100px;
    height: 100px;
    cursor: pointer;
    /* transition: 0.6s; */
}

.section6 .beast_list img {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s ease-out;
    width: 116px;
    height: 116px;
}

.section6 .beast_list:hover img {
    transform: scale(1.3);
}

.section6 .beast_list.active img {
    transform: scale(1.3);
}

.section6 .beast_list img:nth-child(1) {
    z-index: 1;
}

.section6 .beast_list img:nth-child(2) {
    z-index: 0;
}

.beast_feature_info {
    position: absolute;
    text-align: left;
    background: url(../images/beast_text_bg.png) no-repeat center center;
    width: 344px;
    height: 165px;
}

.beast_feature_info .game_feature_title {
    text-align: center;
}

.beast_feature_info .game_feature_title p {
    font-size: 18px;
    font-family: '宋体';
    font-weight: bold;
    padding-top: 25px;
    margin: 0;
}

.beast_feature_info .game_feature_text {
    font-size: 16px;
    width: 265px;
    line-height: 22px;
    top: 60px;
    position: absolute;
    right: 40px;
}

.beast_feature_info_03 .game_feature_text {
    width: 280px;
}

.beast_feature_info_01 {
    top: 165px;
    right: 400px;
}

.beast_feature_info_02 {
    top: 315px;
    right: 330px;
}

.beast_feature_info_03 {
    top: 460px;
    right: 310px;
}

.beast_feature_info_04 {
    top: 600px;
    right: 330px;
}

.beast_feature_info_05 {
    top: 750px;
    right: 375px;
}

.beast_feature_info_05 .game_feature_title {
    right: 135px;
}

.section8 .starry_way {
    position: absolute;
    left: 130px;
    top: 280px;
    width: 90px;
    height: 490px;
    z-index: 0;
}


/* 
关于我们 */

.ny_banner {
    height: 500px;
    position: relative;
}

.main {
    background: url(../images/about_bg.jpg) repeat-y top center;
    background-size: cover;
    color: #fff;
}

.title {
    background: url(../images/title_icon.png) no-repeat left top;
    color: #fff;
    font-size: 34px;
    font-weight: bold;
    padding: 4px 0 70px 60px;
}

.title p {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 2px;
    padding-left: 70px;
    padding-top: 10px;
    opacity: .9;
    margin: 0;
}

.development_content {
    font-size: 18px;
    letter-spacing: 2px;
    text-indent: 40px;
    line-height: 36px;
    opacity: .9;
}

.development,
.honor,
.recruitment,
.job_school,
.modo_life,
.office,
.employee,
.award
{
    padding-bottom: 145px;
    padding-top: 110px;
}

.g_line {
    background: url(../images/g_line.png) no-repeat bottom center;
    height: 1px;
}

.time {
    background: url(../images/time_bg.jpg) no-repeat top center;
    width: 1200px;
    height: 1099px;
    margin: 0 auto;
}

.year {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
}

.year_text {
    font-size: 16px;
    position: absolute;
    line-height: 36px;
    opacity: .85;
}

.time ul li {
    position: relative;
}

.time ul li:nth-child(1) .year {
    top: 125px;
    right: 86px;
    width: 615px;
    text-align: left
}

.time ul li:nth-child(1) .year_text {
    top: 35px;
    left: 0;
    width: 565px;
    text-align: right;
}

.time ul li:nth-child(2) .year {
    top: 391px;
    left: 89px;
    width: 613px;
    text-align: right;
}

.time ul li:nth-child(2) .year_text {
    top: 307px;
    right: 0;
    width: 565px;
    text-align: left;
}

.time ul li:nth-child(3) .year_text {
    top: 530px;
    left: -67px;
    width: 632px;
    text-align: right;
}

.time ul li:nth-child(3) .year {
    top: 838px;
    right: 93px;
    width: 615px;
    text-align: left;
}

.time ul li:nth-child(4) .year_text {
    top: 959px;
    right: 0;
    width: 565px;
    text-align: left;
}

.time ul li:nth-child(4) .year {
    top: 1004px;
    left: 88px;
    width: 613px;
    text-align: right;

}

.time ul li:nth-child(5) .year_text {
    top: 871px;
    left: 0;
    width: 565px;
    text-align: right;
}

.time ul li:nth-child(5) .year {
    top: 919px;
    right: 94px;
    width: 615px;
    text-align: left
}

.time ul li:nth-child(6) .year_text {
    top: 977px;
    right: 0;
    width: 565px;
    text-align: left;
}

.time ul li:nth-child(6) .year {
    top: 1020px;
    left: 88px;
    width: 613px;
    text-align: right
}

.year i {
    background: url(../images/timer_icon.png) no-repeat center center;
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 8px;
}

.time ul li:nth-child(odd) .year i {
    margin-left: 20px;
}

.time ul li:nth-child(even) .year i {
    margin-right: 20px;
}

.contact {
    padding-bottom: 90px;
    padding-top: 80px;
}

.contact_content {
    font-size: 20px;
    opacity: .9;
    line-height: 36px;
    margin-left: 155px;
}

.award .award-content {
    font-size: 20px;
    opacity: .9;
    line-height: 20px;
    margin-left: 155px;
}

/* 校招 */

.recruitment_content {
    font-size: 22px;
    font-weight: bold;
    padding: 0 60px;
}

.recruitment_content ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.recruitment_content ul li {
    text-align: center;
}

.recruitment_content ul li img {
    height: 75px;
}

.recruitment_content ul li p {
    padding-top: 20px;
    font-weight: normal;
    margin: 0;
}

.job_school_content {
    text-align: center;
    font-size: 26px;
}

.job_school_content p {
    margin-top: 20px;
}


/* MODO GLOBAL生活 */

.modolife_banner {
    /* background: url(../images/modolifetest.jpg) no-repeat bottom center;
    background-size: cover; */
    height: auto;
}

.modolife_b {
    width: 100%;
}

.modo_life_text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.modo_video_icon {
    position: absolute;
    top: 420px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
}

.modo_video_icon:hover {
    -webkit-animation: arrowPop 1s infinite;
    animation: arrowPop 1s infinite;
}

.modo_life_content ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
}

.modo_life_content ul li {
    width: 300px;
    text-align: center;
    margin-bottom: 60px;
}

.modo_life_content ul li h1 {
    font-size: 22px;
    padding: 25px 0;
    font-weight: normal;
    margin: 0;
    height: 40px;
}

.modo_life_content ul li p {
    font-size: 16px;
    opacity: .9;
    line-height: 26px;
    margin: 0;
}

.video_box {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 500px;
    margin-left: -400px;
    margin-top: -250px;
    z-index: 1001;
}

.video_box .close {
    position: absolute;
    right: -46px;
    top: 0;
    width: 46px;
    height: 50px;
    /* text-indent: -999em; */
    transition: all .4s linear;
    background: url(../images/video_close.png) no-repeat 50%;
    background-size: 100% 100%;
    z-index: 1002;
}

.video_box .close:hover {
    transform: rotate(180deg)
}

.video_dialog .mask {
    background: #000;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    opacity: .5;
}

.office_content {
    padding: 0 24px;
}

.office_pic {
    width: 800px;
    height: 530px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 16px;
}

.office_content img {
    transition: 0.5s;
}

.office_content img:hover {
    transform: scale(1.2);
}

.office_l {
    margin-right: 16px;
}

.office_b {
    display: flex;
    flex-direction: row;
}

.office_b a {
    width: 392px;
    height: 257px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.office_b a:nth-child(1) {
    margin-right: 16px;
}

.office_r_pic {
    width: 333px;
    height: 257px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 16px;
}


/*图片放大*/

.img_li {
    float: left !important;
}

.i-pic {
    /* float: left; */
    position: relative;
    text-align: center;
}

.hover {
    width: 399px;
    height: 193px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    /* background: rgba(0, 0, 0, 0.5); */
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    display: block;
}

.box {
    width: 399px;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 15;
}

.pop_tuku_bar {
    width: 1049px;
}

.pop_video_bar {
    width: 849px;
}

.btn_tan_close {
    display: block;
    width: 43px;
    height: 43px;
    margin-top: 0;
    margin-right: 0;
    text-indent: -999em;
    overflow: hidden;
    background: url(../images/video_close.png) center no-repeat;
    transition: all .4s linear;
}

.btn_tan_close:hover {
    transform: rotate(180deg);
}

.tuku_left {
    float: left;
    display: inline;
    width: 1000px;
    overflow: hidden;
    color: #fff;
    line-height: 38px;
    position: relative;
}

.tuku_right {
    float: right;
    display: inline;
    overflow: hidden;
    width: 43px;
}

.pt_pics img {
    display: block;
}

.pt_lin {
    width: 100%;
    text-align: right;
    margin-top: -48px;
    height: 38px;
}

.pt_lin .ot_a,
.pt_lin .ot_b {
    position: absolute;
    margin-top: -25px;
}

.pt_lin .ot_a img,
.pt_lin .ot_b img {
    opacity: .8;
}

.pt_lin .ot_a:hover img,
.pt_lin .ot_b:hover img {
    opacity: .7;
}

.pt_lin .ot_a {
    top: 50%;
    left: 20px;
}

.pt_lin .ot_b {
    top: 50%;
    right: 20px;
}

.pt_lin .ot_a a,
.pt_lin .ot_b a {
    color: #fff;
}

.pt_nms {
    height: 46px;
    width: 100%;
    background: #232323;
    color: #fff;
    padding-left: 15px;
}

.pt_nms .btn {
    width: 120px;
    padding-left: 20px;
    height: 46px;
    display: block;
    line-height: 46px;
    color: #fff;
}

.pt_nms .btn:hover {
    color: #fff;
}

.pt_nms .btn i {
    background: url(../img/popIcon.png) no-repeat 0 center;
    width: 14px;
    height: 46px;
    display: inline-block;
    float: left;
    padding-right: 5px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

.pt_nms .btn:hover i {
    -webkit-animation: arrowPop 1s infinite;
    animation: arrowPop 1s infinite;
}


/* 员工风采 */

.employeev_content {
    height: 740px;
}

.swiper-container {
    width: 1142px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.gallery-top {
    height: 581px;
    width: 1142px;
    margin-bottom: 16px;
}

.gallery-thumbs {
    height: 141px;
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}


/* 底部链接页面 */

.legal_nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.legal_nav a {
    display: flex;
    flex-direction: row;
    font-size: 28px;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 95px;
}

.legal_nav a i {
    background-repeat: no-repeat;
    margin-right: 13px;
    overflow: hidden;
    transform: rotateY(0deg);
    transition: 0.6s;
}

.legal_nav a:nth-child(1) i {
    width: 35px;
    height: 34px;
    background-image: url(../images/modo_icon_01.png);
}

.legal_nav a:nth-child(2) i {
    width: 41px;
    height: 35px;
    background-image: url(../images/modo_icon_02.png);
}

.legal_nav a:nth-child(3) i {
    width: 29px;
    height: 32px;
    background-image: url(../images/modo_icon_03.png);
}

.legal_nav a:hover,
.legal_nav a.active {
    color: #5fb17e;
}

.legal_nav a:nth-child(1):hover i,
.legal_nav a:nth-child(1).active i {
    background-image: url(../images/modo_icon_01_hover.png);
}

.legal_nav a:nth-child(2):hover i,
.legal_nav a:nth-child(2).active i {
    background-image: url(../images/modo_icon_02_hover.png);
}

.legal_nav a:nth-child(3):hover i,
.legal_nav a:nth-child(3).active i {
    background-image: url(../images/modo_icon_03_hover.png);
}

.legal_nav a:hover i {
    transform: rotateY(180deg);
    transition: 0.6s;
}

.legal_main {
    background: #fff;
    width: 1063px;
    margin: auto;
    border-radius: 50px;
    padding: 65px 35px;
    color: #292e38;
    margin-bottom: 110px;
}

.legal_main .title {
    color: #292e38;
    padding-bottom: 50px;
}

.legal_main p {
    font-size: 20px;
    line-height: 38px;
    padding: 0 25px;
    margin: 0;
}


/* 社会招聘 */

.social_box {
    padding-top: 100px;
    color: #2e3342;
    font-size: 20px;
}

.social_search {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.social_search_input {
    height: 53px;
    width: 650px;
    background: #fff;
    border-radius: 5px 0 0 5px;
    padding-left: 20px;
    line-height: 55px;
    color: #2e3342;
    font-size: 20px;
}

.social_search_btn {
    width: 150px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background: #5fb17e;
    color: #Fff;
    font-size: 20px;
    border-radius: 0 5px 5px 0;
    display: block;
}

.social_search_btn:hover {
    color: #fff;
}

.recruitment_type_box {
    background: #f5f5f5;
    border-radius: 5px;
    padding: 35px 0 20px 130px;
}

.recruitment_type,
.job_type {
    /* height: 40px; */
    line-height: 40px;
    margin-bottom: 10px;
}

.recruitment_type span,
.job_type span {
    width: 100px;
    text-align: right;
    height: 50px;
    line-height: 50px;
}

.recruitment_type a,
.job_type a {
    display: inline-block;
    margin: 5px 10px;
    /* width: 100px; */
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 25px;
}

.recruitment_type a.active,
.job_type a.active {
    background: #5fb17e;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

.recruitment_type a:hover,
.job_type a:hover {
    background: #5fb17e;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

.job_type_active {
    background: #5fb17e;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    height: 40px;
    width: 100px;
    display: block;
    position: absolute;
    top: 5px;
    left: 10px;
}

.job_type_activeNone {
    background: none;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

.recruitment_type_a,
.job_type_a {
    width: 900px;
    position: relative;
}

.jobs_box {
    margin-top: 30px;
    background: #fff;
    border-radius: 5px;
}

.jobs_title {
    background: #5fb17e;
    height: 70px;
    line-height: 70px;
    border-radius: 5px 5px 0 0;
    color: #fff;
    padding: 0 115px;
    margin-bottom: 24px;
}

.jobs_list {
    background: #fff;
    margin-bottom: 42px;
    padding: 0 115px 75px;
    border-radius: 0 0 5px 5px;
}

.job_content {
    display: none;
    /* border-bottom: 1px dashed #cacccf; */
    border-top: 1px solid #cacccf;
    margin-top: 20px;
    padding: 25px 0;
    line-height: 26px;
    font-size: 18px;
    position: relative;
}

.job_detail_btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.job_detail_btn a {
    background: #5fb17e;
    width: 175px;
    height: 46px;
    font-size: 16px;
    text-align: center;
    line-height: 46px;
    margin: 35px 92px;
    color: #fff;
    border-radius: 5px;
}

.job_detail_close {
    position: absolute;
    right: 0;
    top: 10px;
    transition: all .4s linear;
}

.job_detail_close:hover {
    transform: rotate(180deg)
}

.job_content .title {
    color: #292e38;
    padding-bottom: 30px;
}

.job_detail {
    padding: 10px 90px;
    ;
}

.jobs_list ul li {
    border-bottom: 1px dashed #cacccf;
    /* height: 60px; */
    /* line-height: 60px; */
    cursor: pointer;
}

.jobs_title span,
.jobs_list ul li .jobs_li span {
    display: inline-block;
    width: 140px;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jobs_list ul li .jobs_li span {
    font-size: 18px;
    padding: 20px 0;
}

.jobs_title span:nth-child(1),
.jobs_list ul li .jobs_li span:nth-child(1) {
    width: 300px;
    font-weight: bold;
}

.jobs_title span:nth-child(3),
.jobs_list ul li .jobs_li span:nth-child(3) {
    text-align: center;
}

.jobs_title span:nth-child(4),
.jobs_list ul li .jobs_li span:nth-child(4) {
    text-align: left;
    /* margin-right: 20px; */
    margin-left: 55px;
    width: 150px;
}

.jobs_title span:nth-child(5),
.jobs_list ul li .jobs_li span:nth-child(5) {
    width: 125px;
}

.jobs_page {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 120px;
}

.jobs_page a {
    display: block;
    padding: 12px 15px;
    color: #2e3342;
    background: #fff;
    border-radius: 5px;
    margin: 0 5px;
}

.jobs_page a:hover,
.jobs_page a.active {
    background: #5fb17e;
    color: #fff;
}


/*粒子特效*/

.particle {
    width: 1920px;
    height: 1008px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 150;
    pointer-events: none;
}

.particle canvas {
    width: 1920px;
    height: 1008px;
}

canvas {
    display: block;
    vertical-align: bottom;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (max-width: 1920px) {
    .modolife_banner {
        background: url(../images/modolife_b.jpg) no-repeat center bottom;
        height: 930px;
    }
    .modolife_b {
        display: none;
    }
    .section1 .b1_t1 {
        right: 300px;
    }
    .section1 .bt_t1_y {
        right: 600px;
    }
    .section1 .b1_t1 img,
    .section1 .b1_t3 img {
        width: 80%;
    }
    .section1 .b1_t2 {
        bottom: 100px;
        right: 380px;
    }
    .section1 .b1_t3 {
        bottom: 105px;
        left: 305px;
    }
    .section2 .b2_t3 {
        left: 260px;
    }
    .section2 .b2_t2 img {
        width: 65%;
    }
    .section2 .b2_t3 img {
        width: 85%;
    }
    .section5 .b5_t2 {
        right: 250px;
    }
    .section5 .b5_t2 img {
        width: 90%;
    }
    .section5 .b5_t1 img {
        width: 60%;
    }
    .game_role_01 {
        left: -32px;
    }
    .game_feature {
        right: 80px;
        top: 25px;
    }
    /* .game_role_02 {
        right: -50px;
    } */
    .game_role_01 img,
    .game_role_02 img {
        width: 75%;
    }
    .game_way_box {
        margin-left: -100px;
    }
    .section6 .game_role_01 img {
        width: 90%
    }
    .section6 .game_role_01 {
        bottom: 70px;
    }
    .section6 .game_feature {
        right: 0;
        top: 25px;
    }
    .section7 .b7_t1 {
        margin-top: 570px;
    }
    .section8 .game_role_02 img {
        width: 90%;
    }
    .section8 .game_way_box {
        margin-left: 0;
    }
    .section6 .game_feature_box {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@media screen and (max-width: 1600px) {
    .section0 .b3_t img {
        width: 60%;
    }
    .section1 .b1_t1 {
        right: 130px;
    }
    .section1 .bt_t1_y {
        right: 350px;
    }
    .section1 .b1_t2 {
        right: 160px;
    }
    .section1 .b1_t2 img {
        width: 90%;
    }
    .section1 .b1_t3 {
        left: 240px;
    }
    .section1 .b1_t1 img,
    .section1 .b1_t3 img {
        width: 60%;
    }
    .section2 .b2_t2 {
        margin-top: 500px;
    }
    .section2 .b2_t3 {
        left: 60px;
    }
    .section2 .b2_t2 img {
        width: 65%;
    }
    .section2 .b2_t3 img {
        width: 72%;
    }
    .section5 .b5_t2 {
        right: 165px;
    }
    .section5 .b5_t2 img {
        width: 80%;
    }
    .section5 .b5_t1 img {
        width: 60%;
    }
    .section5 .b5_t1 {
        margin-top: 580px;
    }
    .section5 .b5_t3 {
        position: absolute;
        top: -100px;
        left: -600px;
    }
    .section5 .b5_t3 img {
        width: 100%;
    }
    .section5 .b5_t4 {
        position: absolute;
        top: -460px;
        right: -630px;
    }
    .section5 .b5_t4 img {
        width: 95%;
    }
    .section5 .b5_t5 {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .section5 .b5_t3 {
        position: absolute;
        top: 0;
        left: -650px;
    }
    .section5 .b5_t3 img {
        width: 80%;
    }
    .section5 .b5_t4 {
        position: absolute;
        top: -310px;
        right: -730px;
    }
    .section5 .b5_t4 img {
        width: 80%;
    }
    .section5 .b5_t5 {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .game_box,
    .game_box_info {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
    .game_role_01 {
        left: -105px;
    }
    .game_role_01 img,
    .game_role_02 img {
        width: 60%;
    }
    .game_box .game_btn {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
    }
    .game_role_02 {
        right: -120px;
    }
    .game_feature {
        top: 0;
    }
    .game_feature_box {
        -webkit-transform: scale(.75);
        -ms-transform: scale(.75);
        -o-transform: scale(.75);
        transform: scale(.75);
        top: -80px;
        right: -110px;
    }
    .game_way_box {
        -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
        -o-transform: scale(.8);
        transform: scale(.8);
        margin-left: -100px;
    }
    .modolife_banner {
        background: url(../images/modolife_b.jpg) no-repeat center bottom;
        height: 800px;
    }
    .menu_ej ul {
        float: right;
    }
    .section6 .game_role_01 img {
        width: 75%
    }
    .section6 .game_role_01 {
        bottom: 110px;
    }
    .section6 .game_role_01 {
        position: absolute;
        left: -25px;
        bottom: 45px;
    }
    .section6 .game_feature {
        top: 20px;
    }
    .section7 .b7_t1 {
        margin-top: 515px;
    }
    .section7 .b7_t1 img {
        width: 690px;
    }
    .section8 .starry_way {
        left: 120px;
        top: 240px;
    }
    .section8 .game_role_02 {
        right: -110px;
    }
    .section8 .game_role_02 img {
        width: 70%;
    }
}

@media screen and (max-width: 1440px) {
    /* .section1 {
        background-size: 100%;
    } */
    /* .section2 {
        background-size: 100%;
    } */
    .section0 .b3_t img {
        width: 60%;
    }
    .section1 .b1_t1 {
        right: 40px;
    }
    .section1 .bt_t1_y {
        right: 285px;
    }
    .section1 .b1_t2 {
        right: 160px;
    }
    .section1 .b1_t2 img {
        width: 90%;
    }
    .section1 .b1_t3 {
        left: 140px;
    }
    .section1 .b1_t1 img,
    .section1 .b1_t3 img {
        width: 65%;
    }
    .section2 .b2_t2 {
        margin-top: 500px;
    }
    .section2 .b2_t3 {
        left: 60px;
    }
    .section2 .b2_t2 img {
        width: 60%;
    }
    .section2 .b2_t3 img {
        width: 72%;
    }
    .section5 .b5_t2 {
        right: 130px;
    }
    .section5 .b5_t2 img {
        width: 80%;
    }
    .section5 .b5_t1 {
        margin-top: 535px;
    }
    .section5 .b5_t1 img {
        width: 60%;
    }
    .section5 .b5_t3 {
        position: absolute;
        top: 0;
        left: -650px;
    }
    .section5 .b5_t3 img {
        width: 70%;
    }
    .section5 .b5_t4 {
        position: absolute;
        top: -310px;
        right: -730px;
    }
    .section5 .b5_t4 img {
        width: 70%;
    }
    .game_box,
    .game_box_info {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
    .game_role_01 {
        left: -105px;
    }
    .game_role_01 img,
    .game_role_02 img {
        width: 60%;
    }
    .game_box .game_btn {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
    }
    .game_role_02 {
        right: -120px;
    }
    .game_feature {
        top: -36px;
    }
    .game_feature_box {
        -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
        -o-transform: scale(0.8);
        transform: scale(.8);
        top: -15px;
        right: -110px;
    }
    .game_way_box {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        -o-transform: scale(0.9);
        transform: scale(.9);
        margin-left: -100px;
    }
    .modolife_banner {
        background: url(../images/modolife_b.jpg) no-repeat center bottom;
        height: 800px;
    }
    #menu ul {
        margin-right: 80px;
    }
    #menu_ej {
        margin-right: 202px;
    }
    #lang {
        right: -90px;
    }
    .section6 .game_role_01 img {
        width: 70%
    }
    .section6 .game_role_01 {
        bottom: 70px;
    }
    .section6 .game_role_01 {
        position: absolute;
        left: -65px;
        bottom: 60px;
    }
    .section6 .game_feature_box {
        -webkit-transform: scale(.75);
        -ms-transform: scale(.75);
        -o-transform: scale(0.75);
        transform: scale(.75);
        top: -85px;
        right: -110px;
    }
    .section7 .b7_t1 {
        margin-top: 520px;
    }
    .section7 .b7_t1 img {
        width: 670px;
    }
    .section8 .game_way_box {
        -webkit-transform: scale(.75);
        -ms-transform: scale(.75);
        -o-transform: scale(.75);
        transform: scale(.75);
    }
    .section8 .game_role_02 img {
        width: 70%;
    }
    .section8 .starry_way {
        left: 90px;
        top: 235px;
    }
}

@media screen and (max-width: 1366px) {
    .particle {
        opacity: .5;
        width: 1366px;
        height: 768px;
    }
    .particle canvas {
        width: 1366px;
        height: 768px;
    }
    .head {
        height: 70px;
    }
    .logo {
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        -o-transform: scale(0.7);
        transform: scale(.7);
        padding-top: 0px;
    }
    #menu ul li a {
        font-size: 16px;
        height: 68px;
        line-height: 68px;
    }
    #menu {
        height: 70px;
    }
    #menu ul {
        margin-right: 80px;
    }
    #menu ul li {
        text-align: center
    }
    #lang {
        border: none;
        position: absolute;
        right: -82px;
        top: 0;
        /* bottom: 0; */
        margin: auto;
        cursor: pointer;
        width: 120px;
        height: 70px;
        text-align: left;
    }
    #lang p {
        position: absolute;
        color: #fff;
        opacity: .8;
        left: 43px;
        top: 13px;
    }
    #lang img {
        width: 20px;
        opacity: 0.8;
        margin-top: 25px;
        padding-left: 17px;
    }
    .lang_hover {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(9, 15, 34, .8);
        width: 120px;
        color: #fff;
        padding: 10px 0;
        z-index: 9999;
        display: none;
    }
    .lang_hover a {
        color: #fff;
        display: block;
        background: url(../images/nav_top.png) no-repeat top right;
        text-align: center;
        padding: 10px 0;
        opacity: .8
    }
    .lang_hover a:hover {
        opacity: 1;
    }
    #menu ul i.nav_line {
        top: 68px;
    }
    /* #menu ul i.nav_line.nav_line_00 {
        left: 0;
        width: 123px;
    }

    #menu ul i.nav_line.nav_line_01 {
        left: 123px;
        width: 174px;
    }

    #menu ul i.nav_line.nav_line_02 {
        left: 297px;
        width: 146px;
    }

    #menu ul i.nav_line.nav_line_03 {
        left: 443px;
        width: 133px;
    } */
    #menu_ej {
        margin-right: 160px;
    }
    #menu_ej ul {
        width: 170px;
    }
    /* .menu_ej ul:nth-child(1) {
        width: 175px;
    }

    .menu_ej ul:nth-child(2) {
        width: 146px;
    }

    .menu_ej ul:nth-child(3) {
        width: 135px;
    } */
    .section1 .b1_t3 {
        bottom: 45px;
        left: 125px;
    }
    .section1 .b1_t1 img {
        width: 54%;
    }
    .section1 .b1_t3 img {
        width: 60%;
    }
    .section2 .b2_t2 {
        margin-top: 400px;
    }
    .section2 .b2_t3 {
        left: 60px;
    }
    .section2 .b2_t3 img {
        width: 60%;
    }
    .section5 .b5_t2 {
        right: 108px;
        top: 108px;
    }
    .section5 .b5_t2 img {
        width: 80%;
    }
    .section5 .b5_t1 {
        margin-top: 455px;
    }
    .section5 .b5_t1 img {
        width: 60%;
    }
    .section5 .b5_t3 {
        position: absolute;
        top: -50px;
        left: -700px;
    }
    .section5 .b5_t3 img {
        width: 70%;
    }
    .section5 .b5_t4 {
        position: absolute;
        top: -310px;
        right: -730px;
    }
    .section5 .b5_t4 img {
        width: 70%;
    }
    .menu_hover {
        top: 70px;
    }
    .menu_ej ul li a {
        font-size: 12px;
    }
    .game_feature_info .game_feature_text {
        font-size: 14px;
    }
    .game_feature_info .game_feature_text {
        width: 260px;
    }
    .game_box,
    .game_box_info {
        -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
        -o-transform: scale(0.75);
        transform: scale(0.75);
    }
    .game_text {
        margin-bottom: 40px;
    }
    .game_role_01 {
        left: -145px;
        bottom: 0;
    }
    .game_role_02 {
        right: -130px;
    }
    .game_role_01 img,
    .game_role_02 img {
        width: 50%;
    }
    .game_feature_box {
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        -o-transform: scale(0.7);
        transform: scale(.7);
        top: -80px;
        right: -110px;
    }
    .game_way_box {
        -webkit-transform: scale(.75);
        -ms-transform: scale(.75);
        -o-transform: scale(0.75);
        transform: scale(.75);
        margin-left: -110px;
    }
    .game_way {
        left: -135px;
    }
    .modo_life_text {
        margin: 150px auto;
    }
    .modo_video_icon {
        margin: -35px auto;
    }
    .modolife_banner {
        background: url(../images/modolife_b.jpg) no-repeat center bottom;
        height: 650px;
    }
    .time ul li:nth-child(odd) .year {
        left: 86px;
    }
    .time ul li:nth-child(even) .year {
        right: 88px;
    }
    .section6 .game_role_01 img {
        width: 65%
    }
    .section6 .game_role_01 {
        bottom: 70px;
    }
    .section6 .game_role_01 {
        position: absolute;
        left: -65px;
        bottom: 60px;
    }
    .section6 .game_feature_box {
        -webkit-transform: scale(.65);
        -ms-transform: scale(.65);
        -o-transform: scale(.65);
        transform: scale(.65);
        top: -155px;
        right: -110px;
    }
    .section8 .game_way_box {
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        -o-transform: scale(.7);
        transform: scale(.7);
    }
    .section8 .starry_way {
        top: 190px;
    }
    .section7 .b7_t1 {
        margin-top: 430px;
    }
    .section7 .b7_t1 img {
        width: 670px;
    }
    .section7 .b7_t2 {
        left: 45px;
        top: 100px;
    }
    .section8 .game_role_02 img {
        width: 60%;
    }
}


/* 2020-0603 微简历 */

.microresume {
    padding: 100px 0 0;
}

.microresume_box {
    background: #fff;
    border-radius: 5px;
    margin-bottom: 100px;
}

.applicant_title {
    background: #5fb17e;
    height: 80px;
    line-height: 80px;
    color: #fff;
    position: relative;
    text-align: center;
    border-radius: 5px 5px 0 0
}

.applicant_title a {
    color: #fff;
    font-size: 24px;
    position: absolute;
    left: 40px;
    top: 0;
}

.applicant_title a:hover {
    opacity: .8;
}

.applicant_title span {
    font-size: 34px;
    font-weight: bold;
}

.applicant_process {
    padding: 40px 170px;
    position: relative;
}

.applicant_process .bar_line {
    position: absolute;
    top: 42px;
    left: 232px;
    width: 750px;
    height: 2px;
    background-color: rgba(95, 177, 126, .5);
}

.applicant_process .bar_line_step {
    position: absolute;
    top: 42px;
    left: 230px;
    width: 0;
    height: 2px;
    background-color: rgb(95, 177, 126);
}

.progress_bar {
    color: #2e3342;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.progress {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 25px;
}

.progress i {
    background-color: #5fb17e;
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 0;
}

.progress.step_01 i {
    width: 24px;
    height: 24px;
    top: -9px;
    background: #5fb17e url(../images/application_icon_02.png) no-repeat 9px 9px;
}

.applicant_content {
    color: #2e3342;
    padding: 60px 0;
}

.step_01_content {
    /* padding-left: 105px; */
}

.step_03_content,
.project_num,
.project,
.step_04_content,
.step_05_content {
    /* padding-left: 115px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.step_02_content {
    margin-left: -20px;
}

.step_03_content {
    margin-left: -30px;
}

.step_04_content {
    margin-left: -20px;
}

.step_05_content {
    padding: 50px;
    text-align: center;
}

.step_05_content p {
    font-size: 20px;
}

.step_05_content span {
    font-size: 16px;
    opacity: .9;
}

.project_num {
    padding-bottom: 70px;
    margin-bottom: 70px;
    border-bottom: 1px dashed #aaaeb5;
}

.project .project_num:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.project_num b {
    position: absolute;
    right: 75px;
    bottom: 20px;
}

.project_num a {
    position: absolute;
    left: 220px;
    bottom: 20px;
    color: #5fb17e;
    font-size: 20px;
    cursor: pointer;
}

.step_01_content span,
.step_02_content span,
.step_03_content span,
.step_04_content span {
    width: 200px;
    color: #575b67;
    font-size: 18px;
    line-height: 40px;
    padding-left: 5px;
    padding-right: 15px;
    text-align: right;
    display: inline-block;
}

.step_02_content span {
    width: 267px;
    text-align: right;
    display: inline-block
}

.step_01_content b,
.step_02_content b,
.step_03_content b,
.step_04_content b {
    color: red;
    width: 10px;
    display: inline-block;
}

.applicant_common {
    padding: 15px 0;
    position: relative;
}

.applicant_common input {
    border: 1px solid rgba(41, 48, 59, .5);
    border-radius: 5px;
    height: 40px;
    font-size: 16px;
    width: 505px;
    padding: 0;
    margin: 0;
    padding-left: 15px;
}

.applicant_common a {
    border: 1px solid rgba(41, 48, 59, .5);
    border-radius: 5px;
    height: 40px;
    font-size: 16px;
    width: 505px;
    display: inline-block;
    line-height: 40px;
    padding-left: 15px;
}

.applicant_common textarea {
    border: 1px solid rgba(41, 48, 59, .5);
    border-radius: 5px;
    font-size: 16px;
    line-height: 24px;
    width: 490px;
    margin: 0;
    margin-left: 4px;
    padding: 15px;
}

.step_01_content i {
    background: url(../images/application_icon_01.png) no-repeat 0 0;
    width: 23px;
    height: 9px;
    position: absolute;
    left: 696px;
    top: 33px;
}

.step_02_content i {
    background: url(../images/application_icon_01.png) no-repeat 0 0;
    width: 23px;
    height: 9px;
    position: absolute;
    left: 756px;
    top: 33px;
}

.applicant_phone_num .area_code_btn {
    width: 82px;
    text-align: center;
    margin-left: 0;
    border-right: none;
    border-radius: 5px 0 0 5px;
    padding: 0;
}

.applicant_phone_num input {
    width: 422px;
    margin-left: -5px;
    border-radius: 0 5px 5px 0;
    position: relative;
    margin-top: 2px;
}

input:focus,
textarea:focus {
    outline: none;
}

.applicant_evaluation {
    display: flex;
}

.step_btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.project_add {
    position: absolute;
    bottom: 150px;
    left: 290px;
    color: #5fb17e;
    font-size: 16px;
}

.step_btn a {
    background: #5fb17e;
    color: #fff;
    font-size: 20px;
    width: 170px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    display: block;
    border-radius: 5px;
    margin-top: 50px;
}

.step_btn a.step_btn_next_01 {
    margin-left: 100px;
}

.step_btn a.step_btn_next_02,
.step_btn a.step_btn_submit,
.step_btn a.step_btn_next_03 {
    margin-left: 40px;
}

.step_btn a.step_btn_prev_01 {
    margin-left: 230px;
}

.step_btn a.step_btn_prev_02 {
    margin-left: 230px;
}

.step_btn a.step_btn_prev_03 {
    margin-left: 222px;
}

.step_btn a.step_btn_prev_01 {
    margin-left: 222px
}

.applicant_work_attachment,
.applicant_resume_attachment {
    display: flex;
    position: relative;
}

.applicant_work_attachment a,
.applicant_resume_attachment a {
    height: 150px;
    text-align: center;
}

.applicant_work_attachment a p,
.applicant_resume_attachment a p {
    font-size: 20px;
    color: rgba(46, 51, 51, .5);
    line-height: 20px;
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 500px;
}

.applicant_resume_attachment a p,
.applicant_work_attachment a p {
    bottom: -6px;
}

.applicant_work_attachment a img,
.applicant_resume_attachment a img {
    margin-top: 35px;
}

#work_upload {
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}

#resume_upload {
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}

.text_color {
    color: #b3b3b3;
}

#prompt {
    position: fixed;
    top: 40%;
    left: 0;
    right: 0;
    width: 270px;
    margin: auto;
    display: none;
    z-index: 999999999;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

#prompt p {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -100px;
    width: 270px;
    background: rgba(36, 39, 46, .7);
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    z-index: 999999999;
    text-align: center;
}

.select_common {
    position: absolute;
    top: 54px;
    left: 224px;
    border: 1px solid #d2d2d2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
    background-color: #fff;
    color: #666;
    width: 520px;
    z-index: 99;
    display: none;
    max-height: 400px;
    overflow: hidden;
    overflow-y: scroll;
}

.select_common ul li {
    padding: 15px;
    border-bottom: 1px solid #d2d2d2;
    cursor: pointer;
}

.applicant_phone_code_select {
    width: 82px;
}

#text_count_p span,
.text_count span {
    position: absolute;
    bottom: 20px;
    left: 545px;
    color: rgba(46, 51, 66, .5)
}

.applicant_education_select,
.applicant_language_select,
.applicant_experience_select,
.applicant_inauguration_select,
.applicant_seniority_select {
    left: 291px;
}

.project_remove {
    cursor: pointer;
    bottom: 50px !important;
}

.project_remove img {
    width: 20px;
}

.time_input {
    display: inline-block
}

.applicant_project_detail {
    display: flex;
}

.resume_upload,
.work_upload {
    position: relative;
    cursor: pointer;
}

.rusume_input {
    position: absolute;
    left: 0;
    top: 0;
    width: 166px;
    height: 46px;
    opacity: 0;
    cursor: pointer;
    padding: 20px;
    font-size: 0;
}


/*加载动画*/


/* .loading{
    width: 100%;
    text-align: center;
    height: 10px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;

} */

.loading {
    width: 100%;
    height: 10px;
    /* margin-top: 100px; */
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
}

.loading span {
    display: inline-block;
    width: 10px;
    height: 100%;
    margin-right: 5px;
    background: #fff;
    -webkit-animation: load 1.04s ease infinite;
    opacity: 0;
}

.loading span:last-child {
    margin-right: 0px;
}

@-webkit-keyframes load {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.1);
    }
    100% {
        opacity: .2;
        -webkit-transform: scale(.2);
    }
}

.loading span:nth-child(1) {
    -webkit-animation-delay: 0.13s;
}

.loading span:nth-child(2) {
    -webkit-animation-delay: 0.26s;
}

.loading span:nth-child(3) {
    -webkit-animation-delay: 0.39s;
}

.loading span:nth-child(4) {
    -webkit-animation-delay: 0.52s;
}

.loading span:nth-child(5) {
    -webkit-animation-delay: 0.65s;
}

.resume_loading,
.work_loading {
    width: 100%;
    text-align: center;
    height: 10px;
    position: absolute;
    margin: auto;
    display: none;
    left: 8px;
    top: 32px;
}


/* .loading span{
    display: inline-block;
    width: 2px;
    height: 100%;
    border-radius: 2px;
    background: #fff;
    -webkit-animation: load 1s ease infinite;
    animation: load 1s ease infinite;
    margin: 0 2px;
} */

.resume_loading span,
.work_loading span {
    display: inline-block;
    width: 2px;
    height: 100%;
    border-radius: 2px;
    background: lightgreen;
    -webkit-animation: resume 1s ease infinite;
    animation: resume 1s ease infinite;
    margin: 0 2px;
    line-height: 0;
    padding: 0;
}

@-webkit-keyframes resume {
    0%,
    100% {
        height: 10px;
        background: lightgreen;
    }
    50% {
        height: 20px;
        margin: -5px 2px;
        background: lightblue;
    }
}

.resume_loading span:nth-child(2),
.work_loading span:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.resume_loading span:nth-child(3),
.work_loading span:nth-child(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.resume_loading span:nth-child(4),
.work_loading span:nth-child(4) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.resume_loading span:nth-child(5),
.work_loading span:nth-child(5) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.file p span {
    line-height: 24px;
    color: rgba(46, 51, 51, .5);
    width: 480px;
    text-align: center;
}

.file p img {
    margin: 0;
    margin-left: 30px;
    position: relative;
    z-index: 1;
    display: none;
}

.limitWith {
    width: 330px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}