@charset "UTF-8";

/* =================== 公共样式 S =================== */
:root {
    --blue: #49b2fe;
}

.wp {
    width: 1200px;
    margin: 0 auto;
}

.container {
    position: relative;
    width: 100%;
    min-width: 1200px;
    max-width: 1920px;
    margin: 0 auto;
    background: url(../images/bg.png) no-repeat center top;

}

/* =================== E 公共样式 =================== */


/* =================== 模块样式 S =================== */
/* 头部 */
.header {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    z-index: 888;
}

/* 顶部栏 */
.topbar {
    height: 40px;
    background: #FFFFFF;
}

.topbar>.wp {
    height: 100%;
}

.topbar>.wp,
.topbar__box,
.topbar__txt,
.topbar__allGame .allGameBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar__logo {
    width: 82px;
    height: 31px;
    margin-right: 20px;
}


.topbar__txt i {
    background: url(../images/topbar_sprites.png) no-repeat;
    margin-right: 6px;
}

.topbar__txt.setIndex {
    margin-right: 14px;
}

.topbar__txt.setIndex i {
    width: 15px;
    height: 15px;
    background-position: 0 0;
}

.topbar__txt.setCollect i {
    width: 14px;
    height: 14px;
    background-position: -24px 0;
}

.topbar__txt.setIndex:hover i {
    background-position: 0 -18px;
}

.topbar__txt.setCollect:hover i {
    background-position: -24px -18px;
}

.topbar__txt span {
    color: #333;
}

.topbar__line {
    font-size: 13px;
    font-weight: bold;
    color: #000;
    margin: 0 8px;
}

.topbar__allGame {
    position: relative;
}

.topbar__allGame .allGameBtn {
    justify-content: center;
    width: 87px;
    height: 40px;
    background: rgba(0, 0, 0, .1);
    margin-left: 20px;
}

.topbar__allGame .allGameBtn i {
    width: 9px;
    height: 6px;
    background-position: -50px -5px;
    margin-right: 0;
    margin-left: 6px;
}

.topbar__allGame .allGameBtn:hover i {
    background-position: -50px -23px;
    transform: rotate(-180deg);
}

.topbar__allGame .allGameBtn:hover {
    background: var(--blue);
}

.topbar__allGame .allGameBtn:hover span {
    color: #fff;
}

.topbar__txt:hover span {
    color: var(--blue);
}

/* 所有游戏弹窗 */
.allGamePop {
    box-sizing: border-box;
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    width: 690px;
    height: 245px;
    background: #fff;
    z-index: 900;
    border: 1px solid #D2D2D2;
    overflow: hidden;
}

.topbar__allGame:hover .allGamePop {
    display: block;
}

.allGamePop__wp {
    height: 100%;
    display: flex;
}

.allGamePop__left {
    box-sizing: border-box;
    flex: 1;
    height: 100%;
    padding: 25px 8px;
    overflow: hidden;
}

.allGamePop__title {
    height: 40px;
    border-bottom: 1px solid #D2D2D2;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.allGamePop__title h6 {
    position: relative;
    font-size: 20px;
    color: #484848;
    padding-left: 12px;
}

.allGamePop__title h6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 17px;
    background: var(--blue);
}

.allGamePop__title a {
    padding-right: 17px;
    color: #545454;
}

.allGamePop__title a:hover,
.allGamePop__list a:hover {
    color: var(--blue);
}

.allGamePop__list {
    display: flex;
    flex-wrap: wrap;
}

.allGamePop__list a {
    width: 75px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-spacing: nowrap;
    margin: 0 20px 7px;
    color: #5b5b5b;
    text-align: center;
}


.allGamePop__logo {
    width: 210px;
    height: 245px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-left: 1px solid #D2D2D2;
}

/* 导航栏 */
.navbar {
    height: 85px;
    background: rgba(0, 0, 0, .3);
}

.navbar>.wp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.navbar__logo {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 336px;
    height: 124px;
    overflow: hidden;
}

.navbar__list {
    display: flex;
    align-items: center;
    height: 85px;
}

.navbar__item {
    width: 144px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.navbar__item:nth-child(3) {
    margin-right: 336px;
}

.navbar__item__title {
    font-size: 18px;
}

.navbar__item__sub {
    font-size: 12px;
}

.navbar__item.active,
.navbar__item:hover {
    color: var(--blue);
}

/* 主要内容 */
.main {
    position: relative;
    padding-top: 40px;
    overflow: hidden;
}

.slogan {
    position: relative;
    height: 1080px;
    margin-bottom: 27px;
    overflow: hidden;
}

.slogan__bg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1920px;
    height: 1080px;
}

/* 下载 */
.download {
    position: absolute;
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%);
    width: 983px;
    height: 288px;
    background: url(../images/download_bg.png) no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download__icon {
    width: 172px;
    height: 172px;
}

.download__btns {
    display: flex;
    flex-wrap: wrap;
    width: 410px;
    padding-top: 15px;
    margin: 0 50px 0 35px;
}

.download__btn {
    width: 195px;
    height: 63px;
    margin-right: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    text-indent: -9999px;
    transition: .3s;
}

.download__btn.android {
    background: url(../images/download_android.png) no-repeat;
}

.download__btn.pc {
    background: url(../images/download_pc.png) no-repeat;
}

.download__btn.ios {
    background: url(../images/download_ios.png) no-repeat;
}

.download__btn.start {
    background: url(../images/start_game.png) no-repeat;
}

.download__btn:hover {
    filter: brightness(1.3);
}

.download__adapt {}

.download__adapt__btn {
    display: block;
    width: 136px;
    height: 176px;
    background: url(../images/adapt136x176.png) no-repeat;
    overflow: hidden;
    text-indent: -9999px;
}

/* 新闻 */
.part {
    display: flex;
    justify-content: space-between;
}

.part__left {
    width: 620px;
    height: 355px;
}

.part__right {
    width: 575px;
    height: 355px;
}

.partBox {
    box-sizing: border-box;
    border: 3px solid #5F869A;
    border-radius: 10px;
    overflow: hidden;
    padding: 3px;
}

.partBox__head {
    height: 45px;
    background: url(../images/partBox_head_bg.png) no-repeat center bottom;
}

.partBox__title {
    width: 171px;
    font-size: 24px;
    color: #ffb540;
    text-align: center;
    background: url(../images/partBox_title_bg.png) no-repeat center center;
    margin: 0 auto;
}

.tab {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab__item {
    width: 73px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    color: #7FD3E1;
    text-align: center;
    margin: 0 33px;
}

.tab__item:hover,
.tab__item.active {
    color: #FFB540;
    background: url(../images/tab_active_bg.png) no-repeat center center;
}

.tabCont {
    display: none;
}

.tabCont.active {
    display: block;
}

.news .textList {
    margin-top: 10px;
    height: 276px;
}

.textList {
    padding: 0 24px;
    overflow: hidden;
}

.textList__item {
    height: 45px;
    border-bottom: 1px dashed #C5C5C5;
}

.textList__item__link {
    display: flex;
    height: 100%;
    align-items: center;
}

.textList__item__link em {
    position: relative;
    width: 10px;
    height: 10px;
    box-sizing: border-box;
    border: 1px solid #A9A7A5;
    transform: rotate(45deg);
    margin-right: 15px;
}

.textList__item__link:hover em {
    border-color: #ffb540;
}

.textList__item__link em::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: #A9A7A5;
}

.textList__item__link:hover em::after {
    background: #ffb540;
}

.textList__item__link span {
    color: #A7A7AA;
    font-size: 16px;
}

.textList__item__link .tag {
    margin-right: 5px;
}

.textList__item__link .txt {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 20px;
}

.news .banBox {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.news__picList {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    transition: .3s;
}

.news__pic {
    width: 606px;
    height: 341px;
    border: 1px solid #291409;
    overflow: hidden;
    border-radius: 10px;
}

.textList__item__link:hover span {
    color: #FFB540;
}

/* 职业介绍 */
.role {
    position: relative;
    height: 940px;
    margin-top: 60px;
    overflow: hidden;
}

.role__tab {
    position: absolute;
    left: 0;
    top: 155px;
    z-index: 300;
}

.role__tab__item {
    height: 52px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.role__tab__item.active {}

.role__tab__item i {
    width: 52px;
    height: 52px;
    margin-right: 20px;
    background: url(../images/skill_sprites.png) no-repeat;
}

.role__tab__item:nth-child(1) i {
    background-position: 0 0;
}

.role__tab__item:nth-child(2) i {
    background-position: 0 -79px;
}

.role__tab__item:nth-child(3) i {
    background-position: 0 -159px;
}

.role__tab__item:nth-child(1).active i {
    background-position: -80px 0;
}

.role__tab__item:nth-child(2).active i {
    background-position: -80px -79px;
}

.role__tab__item:nth-child(3).active i {
    background-position: -80px -159px;
}

.role__tab__item span {
    height: 52px;
    line-height: 52px;
    font-size: 34px;
    color: #fff;
}

.role__cont {}

.role__cont__item {
    /* display: none; */
}

.role__cont__item.active {
    /* display: block; */
}

.role__name {
    position: absolute;
    left: -240px;
    top: 0;
    width: 233px;
    height: 119px;
    z-index: 200;
    transition: .3s;
}

.role__cont__item.active .role__name {
    left: 0;
}

.role__info {
    position: absolute;
    right: -340px;
    top: 30px;
    width: 340px;
    z-index: 200;
    transition: .3s;
}

.role__cont__item.active .role__info {
    right: 0;
}

.role__info h6 {
    line-height: 36px;
    font-size: 20px;
    margin-bottom: 10px;
}

.role__info h6 span {
    background: linear-gradient(to bottom, #D8D59D, #D2A43F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role__info p {
    line-height: 22px;
    font-size: 12px;
    color: #b8dfe1;
    margin-bottom: 10px;
}

.role__pic {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1150px;
    height: 797px;
    opacity: 0;
    z-index: 100;
    transition: .3s;
}


.role__cont__item.active .role__pic {
    opacity: 1;
}

/* 攻略截图 */
.screenshot {}

.screenshot .part__left {
    width: 595px;
    height: 387px;
}

.screenshot .textList {
    height: 322px;
    overflow: hidden;
    margin-top: 5px;
}

.screenshot .partBox__main {}

.screenshot .banBox {
    position: relative;
    height: 330px;
    overflow: hidden;
}

.screenshot__picList {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    transition: .3s;
}

.screenshot__picItem {
    width: 583px;
    height: 330px;
}

.screenshot__picItem img {
    width: 100%;
    height: 100%;
}

/* 友情链接 */
.friendlinks {
    padding: 17px 0;
    background: #2E2F3C;
    margin-top: 75px;
}

.friendlinks__box {
    display: flex;
}

.friendlinks__box__name {
    position: relative;
    width: 145px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.friendlinks__box__name::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
}

.friendlinks__list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.friendlinks__item {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #999;
}

.friendlinks__item:hover {
    color: #ffb540;
}

.friendlinks__line {
    font-size: 18px;
    color: #999;
    margin: 0 10px;
}

/* 底部 */
.footer {
    padding: 25px 0;
}

.footer>.wp {
    display: flex;
    align-items: center;
}

.footer__logo {
    width: 154px;
    height: 135px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__middle {
    width: 680px;
    margin-left: 25px;
    padding-left: 20px;
    border-left: 1px solid #FFFFFF;
}

.footer__link {
    display: flex;
    align-items: center;
    height: 28px;
    margin-bottom: 5px;
}

.footer__link__item {
    font-size: 16px;
    color: #fff;
}

.footer__link__item:hover {
    color: #ffb540;
}

.footer__link__line {
    font-size: 18px;
    color: #fff;
    margin: 0 10px;
}

.copyright {}

.copyright__txt {
    line-height: 20px;
    font-size: 14px;
    color: #999;
}

.copyright__txt span,
.copyright__txt a {
    color: #999;
}

.copyright__txt a:hover {
    color: #ffb540;
}

.footer__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__right a {
    margin-left: 40px;
}

/* =================== E 模块样式 =================== */