
.indexPage {
    display: block;
    text-align: center;
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.indexPage #fullpage {
    width: 100%;
    height: 100%;
}

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}


#menu {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    text-align: center;
    animation: qb 0.8s;
    z-index: 33;
    display: flex;
    align-items: center;
}

.ce_nav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 430px;
    justify-content: space-between;
}

.ce_nav a {
    display: inline-block;
    width: 137px;
    height: 41px;
    background: url(../images/ce_btn.png) no-repeat;
    transition: opacity .3 ease-in;
    transform: scale(1.01);
}

.ce_nav a:hover {
    transform: scale(1.05);
    filter: brightness(150%);
    opacity: 0.85\0;
}

.ce_nav a:nth-child(2) {
    background-position-y: -41px;
}

.ce_nav a:nth-child(3) {
    background-position-y: -82px;
}

.ce_nav a:nth-child(4) {
    background-position-y: -123px;
}

.ce_nav a:nth-child(5) {
    background-position-y: -164px;
}

.ce_nav a:nth-child(6) {
    background-position-y: -205px;
}

.ce_nav a.active {
    background-position-x: -137px;
    transform: scale(1.01);
}

/* ========================================
   6. 首页
   ======================================== */

.home {
    position: relative;
    overflow: hidden;

}

.home .home-bg-video {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}

.home .home_container {
    position: absolute;
    top: 82%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(400px, 32vw, 620px);
    z-index: 10;
}

.home .home_container .playBtn {
    text-align: center;
}

.home .home_container .playBtn a {
    display: inline-block;
    width: 98px;
    height: 99px;
    background: url(../images/playBtn.png) no-repeat;
}

.home .home_container .main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home .home_container .main .code {
    width: clamp(120px, 18vw, 160px);
    background: url(../images/indexPage_main_bg.png) no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(4px, 0.5vw, 8px);
    gap: clamp(4px, 0.5vw, 9px);
    width: auto;
    height: auto;
    background-size: 100% 100%;
}

.home .home_container .main .downloadNow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: clamp(4px, 0.5vw, 8px);
}

.home .home_container .main .downloadNow a {
    display: inline-block;
    width: 160px;
    height: 59px;
    background: url(../images/indexPage_downloadNow_btn.png) no-repeat;
}

.home .home_container .main .downloadNow a:nth-child(2) {
    background-position-y: -70px;
}

.home .home_container .main .downloadGif{
    position: relative;
}
.home .home_container .main .downloadGif a {
    display: inline-block;
    width: 128px;
    height: 128px;
    background: url(../images/home_gif.png) no-repeat;
    background-size: 100% 100%;
}

/* 鼠标悬停显示图片效果 */
.downloadGif img {
    display: none;
    position: absolute;
    left: 100%;
    top:5%;
    margin-left: 5px;

}

.downloadGif:hover img {
    display: block;

}

.indexVideoPage{
    background-color:transparent !important
}

/* ========================================
   7. 新闻页
   ======================================== */

.news {
    position: relative;
    overflow: hidden;
}

.news .news-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.news .news_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
}

.news_container .main {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.news_container .swiper {
    position: relative;
    height: 490px;
}

.news_container .swiper .swiper-container {
    height: 100%;
}

.news_container .swiper .swiper-wrapper {
    width: 688px;
    height: 446px;
}

.news_container .swiper .swiper-slide,
.news_container .swiper .swiper-slide img {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.news_container .swiper .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.news_container .swiper .swiper-pagination-bullet {
    display: inline-block;
    width: 9px;
    height: 6px;
    background: url("../images/swiper-pagination.png") no-repeat;
}

.news_container .swiper .swiper-pagination-bullet-active {
    background: url("../images/swiper-pagination-active.png") no-repeat;
}

.news_container .swiper .swiper-button-prev,
.news_container .swiper .swiper-button-next {
    width: 40px;
    height: 20px;
    background: url("../images/swiper_prov.png") no-repeat;
    top: auto;
    margin: 0;
}

.news_container .swiper .swiper-button-next {
    background: url("../images/swiper_next.png") no-repeat;
}

.news_container .swiper .swiper-button-prev:hover,
.news_container .swiper .swiper-button-next:hover {
    background-position-y: -20px;
}

.news_container .swiper .swiper-button-prev:after,
.news_container .swiper .swiper-button-next:after {
    display: none;
}

.news_container .swiper .pagination {
    position: relative;
    height: 44px;
    display: flex;
    line-height: 44px;
    width: 50%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.news_container .news {
    width: 690px;
}

.news_container .news .new-tab {
    display: flex;
    padding: 0 20px;
    border-bottom: 1px solid #6b5536;
}

.news_container .news .new-tab a {
    display: inline-block;
    width: 88px;
    height: 48px;
    background: url("../images/newsPage_newsBtn.png") no-repeat;
}

.news_container .news .new-tab a:nth-child(2) {
    background-position-x: -88px;
}

.news_container .news .new-tab a:nth-child(3) {
    background-position-x: -176px;
}

.news_container .news .new-tab a:nth-child(4) {
    background-position-x: -264px;
}

.news_container .news .new-tab a.is_act {
    background-position-y: -48px;
    border-bottom: 2px solid #988361;
    animation: ars 0.5s forwards !important;
}

@keyframes ars {
    0% {
        top: -10px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

.news_container .news .new-bom li {
    display: none;
    height: 400px;
    overflow: hidden;
}

.news_container .news .new-bom li:nth-child(1) {
    display: block;
}

.news_container .news .new-bom .neslist {
    display: flex;
    padding: 0 10px;
    width: 100%;
    height: 57px;
    line-height: 57px;
    font-size: 16px;
    border-bottom: 1px solid #6b5536;
    gap: 10px;
}

.news_container .news .new-bom .neslist:hover {
    filter: brightness(120%);
    opacity: 0.85\0;
}

.news_container .news .new-bom .neslist span {
    color: #d8b880;
    font-size: 16px;
}

.news_container .news .new-bom .neslist .text {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #d1d1d1;
    text-align: left;
}

.news_container .news .new-bom .neslist .text:hover {
    color: #fff;
}

.news_container .news .more {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.news_container .news .more a {
    display: inline-block;
    width: 92px;
    height: 32px;
    background: url(../images/newsPage_moreBtn.png) no-repeat;
}

.news_container .news .more a:hover {
    background-position-y: -32px;
}

/* ========================================
   8. 角色介绍页
   ======================================== */

.role {
    position: relative;
    overflow: hidden;
}

.role .role-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.role .role_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.role_container .main {
    position: relative;
    height: 100%;
}

.role_container .main .roleAvatar {
    position: absolute;
    top: 120px;
    right: 30px;
    z-index: 10;
}

.role_container .main .roleAvatar .buttom a {
    display: inline-block;
    width: 102px;
    height: 32px;
    background: url(../images/roleAvatar_btn.png) no-repeat;
}

.role_container .main .roleAvatar .buttom a:hover {
    background-position-y: -32px;
}

.role_container .main .roleAvatar .avatar {
    height: 730px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.role_container .main .roleAvatar .avatar img {
    cursor: pointer;
}

.role_container .main .roleAvatar .avatar .avatarAll {
    height: 670px;
    width: 80px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    text-align: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.role_container .main .roleAvatar .avatar .avatarAll::-webkit-scrollbar {
    display: none;
}

.role_container .main .roleAvatar .avatar .avatarAll a {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: url(../images/role_avatar.png) no-repeat;
    margin-bottom: 10px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(2) {
    background-position-y: -80px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(3) {
    background-position-y: -160px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(4) {
    background-position-y: -240px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(5) {
    background-position-y: -320px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(6) {
    background-position-y: -400px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(7) {
    background-position-y: -480px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(8) {
    background-position-y: -560px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(9) {
    background-position-y: -640px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(10) {
    background-position-y: -720px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(11) {
    background-position-y: -800px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(12) {
    background-position-y: -880px;
}


.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(13) {
    background-position-y: -960px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(14) {
    background-position-y: -1040px;
}

.role_container .main .roleAvatar .avatar .avatarAll a:nth-child(15) {
    background-position-y: -1120px;
}
.role_container .main .roleAvatar .avatar .avatarAll a:hover {
    background-position-x: -80px;
}

.role_container .main .roleAvatar .avatar .avatarAll a.active {
    background-position-x: -80px;
}

.role_container .main .roleInform {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
}

.role_container .main .roleInform ul {
    width: 86%;
    display: flex;
    justify-content: center;
}

.role_container .main .roleInform ul li {
    display: none;
    width: 100%;
    position: relative;
    background: url(../images/role_bg_nz.png?v=1.0.2) center no-repeat;
}
.role_container .main .roleInform ul li:nth-child(2) {
    background: url(../images/role_bg_wze.png) center no-repeat;
}
.role_container .main .roleInform ul li:nth-child(3) {
    background: url(../images/role_bg_bls.png) center no-repeat;
}
.role_container .main .roleInform ul li:nth-child(4) {
    background: url(../images/role_bg_kll.png) center no-repeat;
}
.role_container .main .roleInform ul li:nth-child(5) {
    background: url(../images/role_bg_xs.png) center no-repeat;
}

.role_container .main .roleInform ul li:nth-child(6) {
    background: url(../images/role_bg_bh.png) center no-repeat;
}

.role_container .main .roleInform ul li:nth-child(7) {
    background: url(../images/role_bg_kt.png) center no-repeat;
}

.role_container .main .roleInform ul li:nth-child(8) {
    background: url(../images/role_bg_lwe.png) center no-repeat;
}

.role_container .main .roleInform ul li:nth-child(9) {
    background: url(../images/role_bg_ybl.png) center no-repeat;
}

.role_container .main .roleInform ul li:nth-child(10) {
    background: url(../images/role_bg_sdy.png) center no-repeat;
}

.role_container .main .roleInform ul li:nth-child(11) {
    background: url(../images/role_bg_lnl.png) center no-repeat;
}

.role_container .main .roleInform ul li:nth-child(12) {
    background: url(../images/role_bg_dhj.png) center no-repeat;
}

.role_container .main .roleInform ul li:nth-child(13) {
    background: url(../images/role_bg_lwt.png) center no-repeat;
}

.role_container .main .roleInform ul li:nth-child(14) {
    background: url(../images/role_bg_blt.png) center no-repeat;
}

.role_container .main .roleInform ul li:nth-child(15) {
    background: url(../images/role_bg_hde.png) center no-repeat;
}

.role_container .main .roleInform ul li:first-child {
    display: block;
}

.role_container .main .roleInform ul li .roleInformList {
    position: relative;
    opacity: 0;
    transition: opacity 0.2s linear;
}

.role_container .main .roleInform ul li .roleInformList.show {
    opacity: 1;
}

.role_container .main .roleInform ul li .roleInformList img {
    width: 100%;
    height: auto;
}

.role_container .main .roleInform ul li .text {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 100%;
    height: 36px;
}

.role_container .main .roleInform ul li .text p {
    color: #fff;
    font-size: 14px;
    line-height: 36px;
	height: 36px;
}
.role_container .main .roleInform ul li .text p:first-child{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    width: 70%;
    text-align: left;
}
.role_container .main .roleInform ul li .text p:nth-child(2) {
    color: #d3b17a;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    width: 30%;
    text-align: right;
}

.role_container .roleInform_main {
    position: absolute;
    left: 0.5%;
    transform: translate(-0.5%, -50%);
    top: 51.5%;
    width: 40%;
    height: 470px;
}
role_container .roleInform_main .roleInform_con{
    min-height: 370px;
}
.role_container .roleInform_tab {
    margin-left: auto;
    width: 533px;
    position: relative;
    margin-top: 28px;
}

.role_container .roleInform_tabList {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.role_container li .roleInform_tabList a {
    display: inline-block;
    width: 66px;
    height: 66px;
    background: url(../images/role_nz_img.png?v=1.0.0) no-repeat;
    padding: 2px;
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
}

.role_container li .roleInform_tabList a:hover {
    transform: translateY(-1px) scale(1);
    filter: brightness(1.2);
}

.roleInform_tabList .highlight {
    transition: all 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.roleInform_tabList .highlight:hover {
    transform: translateY(-1px) scale(1) !important;
    filter: brightness(1.2) !important;
}

.role_container li .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第二组 */
.role_container li:nth-child(2) .roleInform_tabList a {
    background: url(../images/role_wze_img.png?v=1.0.0) no-repeat;
}
.role_container li:nth-child(2) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(2) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(2) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(2) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(2) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第三组 */
.role_container li:nth-child(3) .roleInform_tabList a {
    background: url(../images/role_bls_img.png) no-repeat;
}
.role_container li:nth-child(3) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(3) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(3) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(3) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(3) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第四组 */
.role_container li:nth-child(4) .roleInform_tabList a {
    background: url(../images/role_kll_img.png) no-repeat;
}
.role_container li:nth-child(4) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(4) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(4) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(4) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(4) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}
/* 角色图标 - 第五组 */
.role_container li:nth-child(5) .roleInform_tabList a {
    background: url(../images/role_xs_img.png) no-repeat;
}
.role_container li:nth-child(5) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(5) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(5) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(5) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(5) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第六组 */
.role_container li:nth-child(6) .roleInform_tabList a {
    background: url(../images/role_bh_img.png) no-repeat;
}
.role_container li:nth-child(6) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(6) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(6) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(6) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(6) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第七组 */
.role_container li:nth-child(7) .roleInform_tabList a {
    background: url(../images/role_kt_img.png) no-repeat;
}
.role_container li:nth-child(7) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(7) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(7) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(7) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(7) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}
/* 角色图标 - 第八组 */
.role_container li:nth-child(8) .roleInform_tabList a {
    background: url(../images/role_lwe_img.png) no-repeat;
}
.role_container li:nth-child(8) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(8) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(8) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(8) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(8) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第九组 */
.role_container li:nth-child(9) .roleInform_tabList a {
    background: url(../images/role_ybl_img.png) no-repeat;
}
.role_container li:nth-child(9) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(9) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(9) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(9) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(9) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第十组 */
.role_container li:nth-child(10) .roleInform_tabList a {
    background: url(../images/role_sdy_img.png) no-repeat;
}
.role_container li:nth-child(10) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(10) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(10) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(10) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(10) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第十一组 */
.role_container li:nth-child(11) .roleInform_tabList a {
    background: url(../images/role_lnl_img.png) no-repeat;
}
.role_container li:nth-child(11) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(11) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(11) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(11) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(11) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}
/* 角色图标 - 第十二组 */
.role_container li:nth-child(12) .roleInform_tabList a {
    background: url(../images/role_dhj_img.png) no-repeat;
}
.role_container li:nth-child(12) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(12) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(12) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(12) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(12) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第十三组 */
.role_container li:nth-child(13) .roleInform_tabList a {
    background: url(../images/role_lwt_img.png) no-repeat;
}
.role_container li:nth-child(13) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(13) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(13) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(13) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(13) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第十四组 */
.role_container li:nth-child(14) .roleInform_tabList a {
    background: url(../images/role_blt_img.png) no-repeat;
}
.role_container li:nth-child(14) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(14) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(14) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(14) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(14) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}

/* 角色图标 - 第十五组 */
.role_container li:nth-child(15) .roleInform_tabList a {
    background: url(../images/role_hde_img.png) no-repeat;
}
.role_container li:nth-child(15) .roleInform_tabList a:nth-child(2) {
    background-position-x: -67px;
}

.role_container li:nth-child(15) .roleInform_tabList a:nth-child(3) {
    background-position-x: -134px;
}

.role_container li:nth-child(15) .roleInform_tabList a:nth-child(4) {
    background-position-x: -201px;
}

.role_container li:nth-child(15) .roleInform_tabList a:nth-child(5) {
    background-position-x: -268px;
}

.role_container li:nth-child(15) .roleInform_tabList a:nth-child(6) {
    background-position-x: -335px;
}
.role_container .roleInform_tabList .highlight {
    display: block;
    position: absolute;
    top: -6px;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.role_container .highlight img {
    width: auto;
    height: auto;
}

/* ========================================
   9. 视听站页
   ======================================== */

.seeHear {
    position: relative;
    overflow: hidden;
}

.seeHear .seeHear-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.seeHear .seeHear_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.seeHear_container .main {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seeHear_container .tab_content {
    width: 917px;
}

.seeHear_container .tab_btn {
    text-align: center;
}

.seeHear_container .tab_btn_con {
    width: 180px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.seeHear_container .tab_btn_con a {
    display: inline-block;
    width: 82px;
    height: 30px;
    background: url(../images/seeHear_cutBtn.png) no-repeat;
}

.seeHear_container .tab_btn_con a:nth-child(2) {
    background-position-x: -82px;
}

.seeHear_container .tab_btn_con a:hover {
    background-position-y: -30px;
    transform: scale(1.05);
}

.seeHear_container .tab_btn_con a.active {
    background-position-y: -30px;
}

.seeHear_container .videoInform,
.seeHear_container .wallpaper {
    display: none;
    width: 470px;
    margin: 20px auto 0;
}

.seeHear_container .swiper_con {
    display: none;
    width: 917px;
    height: 516px;
}

.seeHear_container .swiper_con .video-wrapper {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.seeHear_container .swiper_con .video-wrapper.active {
    display: block;
}

.seeHear_container .wallpaper_con {
    display: none;
    width: 917px;
    height: 516px;
}

.seeHear_container .videoInform.show,
.seeHear_container .swiper_con.show {
    display: block;
}

.seeHear_container .wallpaper.show {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.seeHear_container .wallpaper_con.show {
    display: block;
}

.seeHear_container .textList {
    width: 401px;
    margin: 20px auto 0;
}

.seeHear_container .textList p {
    display: none;
    color: #e6d5aa;
    font-size: 18px;
    line-height: 26px;
    padding: 20px 15px;
    width: 401px;
    height: 153px;
    background: url(../images/seeHear_textList_bg.png) no-repeat;
    text-align: left;
    text-indent: 2em;
}

.seeHear_container .textList p.active {
    display: block;
}

.seeHear_container .swiper_con .video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
}

.seeHear_container .swiper_con .video-wrapper .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/seeHear_bz_img1.png') center/cover no-repeat;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.seeHear_container .swiper_con .video-wrapper .video-overlay .play-btn {
    width: 80px;
    height: 80px;
    background: url(../images/concertHall_play_btn.png) no-repeat center;
    background-size: contain;
    transition: transform 0.2s ease;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.seeHear_container .swiper_con .video-wrapper.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.seeHear_container .wallpaper_con img {
    display: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.seeHear_container .wallpaper_con img.active {
    display: block;
}

.seeHear_container .wallpaper_img {
    margin-bottom: 20px;
}

.seeHear_container .wallpaper_img img {
    width: 219px;
    height: 125px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    margin: 5px;
}

.seeHear_container .wallpaper_img img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.seeHear_container .wallpaper_img img.active {
    opacity: 1;
}

.seeHear_container .swiper {
    width: 450px;
    margin: 0 auto;
    position: relative;
}

.seeHear_container .swiper .swiper-container {
    height: 196px;
}

.seeHear_container .swiper img {
    width: 334px;
    height: 196px;
    cursor: pointer;
}

.seeHear_container .swiper .video-wrapper {
    width: 334px;
    height: 196px;
}

.seeHear_container .swiper .video-wrapper video {
    width: 100%;
    height: 100%;
}

.seeHear_container .swiper .swiper-pagination-bullet {
    display: inline-block;
    width: 9px;
    height: 6px;
    background: url("../images/swiper-pagination.png") no-repeat;
}

.seeHear_container .swiper .swiper-pagination-bullet-active {
    background: url("../images/swiper-pagination-active.png") no-repeat;
}

.seeHear_container .swiper .swiper-button-prev,
.seeHear_container .swiper .swiper-button-next {
    width: 40px;
    height: 20px;
    cursor: pointer;
}

.seeHear_container .swiper .swiper-button-prev {
    background: url("../images/swiper_prov.png") no-repeat;
}

.seeHear_container .swiper .swiper-button-next {
    background: url("../images/swiper_next.png") no-repeat;
}

.seeHear_container .swiper .swiper-button-prev:hover,
.seeHear_container .swiper .swiper-button-next:hover {
    background-position-y: -20px !important;
}

.seeHear_container .swiper .swiper-button-prev:after,
.seeHear_container .swiper .swiper-button-next:after {
    display: none;
}

.seeHear_container .more {
    margin-top: 10px;
}

.seeHear_container .more a {
    display: inline-block;
    width: 92px;
    height: 32px;
    background: url(../images/more_btn.png) no-repeat;
}

.seeHear_container .more a:hover {
    background-position-y: -32px;
    transform: scale(1.05);
}

/* ========================================
   10. 音乐厅页
   ======================================== */

.concertHall {
    position: relative;
    overflow: hidden;
}

.concertHall .concertHall-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.concertHall .concertHall_container {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -55%);
    z-index: 10;
}

.concertHall .concertHall_container .title {
    display: flex;
    justify-content: center;
    margin-bottom: -60px;
}

.concertHall_container .main {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.concertHall_container .main .left_music {
    flex: 1;
    position: relative;
    z-index: 2;
}

.concertHall_container .main .left_music .music_btn {
    width: 100%;
    height: 345px;
    text-align: right;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

.concertHall_container .main .left_music .music_btn a {
    font-size: 16px;
    color: #d8b880;
    height: 32px;
    line-height: 32px;
    transform: translateX(0);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: right;
}

.concertHall_container .main .left_music .music_btn a span {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d8b880;
}

.concertHall_container .main .left_music .music_btn a:hover span,
.concertHall_container .main .left_music .music_btn a.active span {
    background: #dac7a3;
}

.concertHall_container .main .left_music .music_btn a:hover {
    color: #ffe7bd;
    font-size: 18px;
    width: 360px;
    height: 32px;
    background: url(../images/concertHall_musicName_bg.png) center no-repeat;
}

.concertHall_container .main .left_music .music_btn a.active {
    color: #ffe7bd;
    font-size: 18px;
    width: 360px;
    height: 32px;
    background: url(../images/concertHall_musicName_bg.png) right no-repeat;
}

.concertHall_container .main .left_music .music_btn a:first-child span {
    margin-left: 30px;
    margin-right: 12px;
}

.concertHall_container .main .left_music .music_btn a:nth-child(2) span {
    margin-left: 28px;
    margin-right: 33px;
}

.concertHall_container .main .left_music .music_btn a:nth-child(3) span {
    margin-left: 25px;
    margin-right: 48px;
}

.concertHall_container .main .left_music .music_btn a:nth-child(4) span {
    margin-left: 25px;
    margin-right: 55px;
}

.concertHall_container .main .left_music .music_btn a:nth-child(5) span {
    margin-left: 28px;
    margin-right: 54px;
}

.concertHall_container .main .left_music .music_btn a:nth-child(6) span {
    margin-left: 25px;
    margin-right: 48px;
}

.concertHall_container .main .left_music .music_btn a:nth-child(7) span {
    margin-left: 28px;
    margin-right: 33px;
}

.concertHall_container .main .left_music .music_btn a:nth-child(8) span {
    margin-left: 30px;
    margin-right: 12px;
}

.concertHall_container .main .left_music .more {
    position: absolute;
    right: 0;
    bottom: -70px;
}

.concertHall_container .main .left_music .more a {
    display: inline-block;
    width: 92px;
    height: 32px;
    background: url(../images/newsPage_moreBtn.png) no-repeat;
}

.concertHall_container .main .left_music .more a:hover {
    background-position-y: -32px;
    transform: scale(1.05);
    filter: brightness(1.1);
}

.concertHall_container .main .middle_music {
    width: 723px;
    height: 724px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/concertHall_cd_bg.png) no-repeat;
    position: relative;
    margin: 0 -35px 0 -120px;
}

.concertHall_container .main .middle_music .music_bg {
    width: 296px;
    height: 296px;
    background: url(../images/concertHall_cd.png) no-repeat;
    position: relative;
    z-index: 0;
}

.concertHall_container .main .middle_music .music_bg.playing {
    animation: rotation 5s linear infinite;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.concertHall_container .main .middle_music .music_bg a {
    display: inline-block;
    width: 75px;
    height: 75px;
    background: url(../images/concertHall_play_btn.png) no-repeat;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.concertHall_container .main .middle_music .music_bg a.playing {
    background: url(../images/concertHall_closePlay_btn.png) no-repeat;
    animation: counter-rotation 5s linear infinite;
}

@keyframes counter-rotation {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.concertHall_container .main .right_music {
    flex: 1;
    width: 265px;
    height: 140px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.concertHall_container .main .right_music div {
    text-align: left;
}

.concertHall_container .main .right_music p {
    width: 120px;
    font-size: 16px;
    color: #d8b880;
}

/* ========================================
   11. 指南页
   ======================================== */

.guide {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.guide .guide-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.guide .guide_container {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.guide_container .main {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide_container .swiper {
    position: relative;
    width: 100%;
    height: 100%;
}

.guide_container .swiper .swiper-container {
    height: 100%;
}

.guide_container .swiper .swiper-slide,
.guide_container .swiper .swiper-slide img {
    display: inline-block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.guide_container .swiper .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 30px;
    background: url("../images/guide_swiper_pagination_bg.png") center no-repeat;
}

.guide_container .swiper .swiper-pagination-bullet {
    display: inline-block;
    width: 63px;
    height: 54px;
    background: url(../images/guide_pagination_btn.png) no-repeat;
    opacity: 1;
    cursor: pointer;
}

.guide_container .swiper .swiper-pagination-bullet:nth-child(2) {
    background-position-x: -63px;
}

.guide_container .swiper .swiper-pagination-bullet:nth-child(3) {
    background-position-x: -126px;
}

.guide_container .swiper .swiper-pagination-bullet:nth-child(4) {
    background-position-x: -189px;
}

.guide_container .swiper .swiper-pagination-bullet:nth-child(5) {
    background-position-x: -252px;
}

.guide_container .swiper .swiper-pagination-bullet-active {
    background-position-y: -54px !important;
}

.guide_container .swiper .swiper-button-prev,
.guide_container .swiper .swiper-button-next {
    width: 40px;
    height: 20px;
    background: url("../images/swiper_prov.png") no-repeat;
    top: auto;
    margin: 0;
}

.guide_container .swiper .swiper-button-prev:hover,
.guide_container .swiper .swiper-button-next:hover {
    background-position-y: -20px;
}

.guide_container .swiper .swiper-button-next {
    background: url("../images/swiper_next.png") no-repeat;
}

.guide_container .swiper .swiper-button-prev:after,
.guide_container .swiper .swiper-button-next:after {
    display: none;
}

.guide_container .swiper .pagination {
    position: absolute;
    top: 93%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 10%;
    width: 30%;
    z-index: 999;
}

/* ========================================
   12. 弹窗样式 (layui框架定制)
   ======================================== */


/* 壁纸预览弹窗样式 */
.seeHearWallpaperPreview {
    width: 80% !important;
    height: 80% !important;
}

.seeHearWallpaperPreview .layui-layer-content {
    padding: 0 !important;
    background: #000;
}

.seeHearWallpaperPreview .layui-layer-content img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover;
}

/* ========================================
   13. 响应式样式
   ======================================== */



/* 桌面端响应式：超大屏幕 2560px */
@media (min-width: 2560px) {
    .home .home_container{
        top: 80%;
    }
    /* 角色页 - 2560px */

    .role_container .main .roleInform ul li {
        background-size: cover !important;
    }

    .role_container .roleInform_main {
        width: 39.6%;
        transform: translate(0.3%, -50%);
		        top: 46.4%;
        height: 495px;
    }
    .role_container .roleInform_main .roleInform_con{
        min-height: 366px;
    }

    .role_container .roleInform_tab {
        width: 701px;
        margin-top: 42px;
    }

    .role_container .main .roleInform ul li .text p {
        font-size: 18px;
        line-height: 50px;
		        height: 50px;
    }

	.role_container .main .roleInform ul li .text {
        height: 50px;
    }
	
    .role_container li .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }
    .role_container li:nth-child(2) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(2) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(2) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(2) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(2) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(2) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }

    .role_container li:nth-child(3) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(3) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(3) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(3) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(3) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(3) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }

    .role_container li:nth-child(4) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(4) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(4) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(4) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(4) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(4) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }

    .role_container li:nth-child(5) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(5) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(5) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(5) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(5) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(5) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }

    .role_container li:nth-child(6) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(6) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(6) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(6) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(6) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(6) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }

    .role_container li:nth-child(7) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(7) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(7) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(7) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(7) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(7) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }

    .role_container li:nth-child(8) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(8) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(8) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(8) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(8) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(8) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }

    .role_container li:nth-child(9) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(9) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(9) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(9) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(9) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(9) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }

    .role_container li:nth-child(10) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(10) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(10) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(10) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(10) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(10) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }

    .role_container li:nth-child(11) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(11) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(11) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(11) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(11) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(11) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }

    .role_container li:nth-child(12) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(12) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(12) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(12) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(12) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(12) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }
    .role_container li:nth-child(13) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(13) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(13) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(13) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(13) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(13) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }



    .role_container li:nth-child(14) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(14) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(14) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(14) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(14) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(14) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }


    .role_container li:nth-child(15) .roleInform_tabList a {
        width: 85px;
        height: 85px;
        background-size: 510px 85px;
    }

    .role_container li:nth-child(15) .roleInform_tabList a:nth-child(2) {
        background-position-x: -85px;
    }

    .role_container li:nth-child(15) .roleInform_tabList a:nth-child(3) {
        background-position-x: -170px;
    }

    .role_container li:nth-child(15) .roleInform_tabList a:nth-child(4) {
        background-position-x: -255px;
    }

    .role_container li:nth-child(15) .roleInform_tabList a:nth-child(5) {
        background-position-x: -340px;
    }

    .role_container li:nth-child(15) .roleInform_tabList a:nth-child(6) {
        background-position-x: -425px;
    }




    .role_container .highlight img {
        width: 95px;
    }
    .guide_container .swiper .pagination{
        width: 22%;
    }

}




/* 新闻页 - 1600px */
@media (max-width: 1600px) {
    .news_container .main {
        max-width: 1200px;
    }

    .news_container .swiper .swiper-wrapper {
        width: 600px;
        height: 400px;
    }

    .news_container .news {
        width: 580px;
    }
}

/* 新闻页 - 1366px */
@media (max-width: 1366px) {
    .news_container .main {
        max-width: 1000px;
    }

    .news_container .swiper .swiper-wrapper {
        width: 500px;
        height: 350px;
    }

    .news_container .news {
        width: 480px;
    }

    .news_container .swiper {
        height: 420px;
    }
}

/* 角色页 - 1366px */
@media (max-width: 1366px) {
    .role_container .main .roleInform ul {
        width: 82%;
    }

    .role_container .main .roleAvatar {
        right: 15px;
        top: 100px;
    }

    .role_container .main .roleAvatar .avatar {
        height: 600px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll {
        height: 540px;
        width: 65px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a {
        width: 65px;
        height: 65px;
        background-size: 65px 715px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(2) {
        background-position-y: -65px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(3) {
        background-position-y: -130px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(4) {
        background-position-y: -195px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(5) {
        background-position-y: -260px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(6) {
        background-position-y: -325px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(7) {
        background-position-y: -390px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(8) {
        background-position-y: -455px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(9) {
        background-position-y: -520px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(10) {
        background-position-y: -585px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(11) {
        background-position-y: -650px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(12) {
        background-position-y: -715px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(13) {
        background-position-y: -780px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(14) {
        background-position-y: -845px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(15) {
        background-position-y: -910px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:hover,
    .role_container .main .roleAvatar .avatar .avatarAll a.active {
        background-position-x: -65px;
    }

    .role_container .roleInform_main {
        width: 45%;
        transform: translate(1%, -50%);
    }

    .role_container .roleInform_tab {
        width: 420px;
    }

    .role_container li .roleInform_tabList a {
        width: 55px;
        height: 55px;
        background-size: 55px 330px;
    }

    .role_container li .roleInform_tabList a:nth-child(2) {
        background-position-x: -55px;
    }

    .role_container li .roleInform_tabList a:nth-child(3) {
        background-position-x: -110px;
    }

    .role_container li .roleInform_tabList a:nth-child(4) {
        background-position-x: -165px;
    }

    .role_container li .roleInform_tabList a:nth-child(5) {
        background-position-x: -220px;
    }

    .role_container li .roleInform_tabList a:nth-child(6) {
        background-position-x: -275px;
    }
}

/* 角色页 - 1600px */
@media (max-width: 1600px) and (min-width: 1367px) {
    .role_container .main .roleInform ul {
        width: 84%;
    }

    .role_container .main .roleAvatar {
        right: 20px;
        top: 110px;
    }

    .role_container .main .roleAvatar .avatar {
        height: 660px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll {
        height: 600px;
        width: 70px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a {
        width: 70px;
        height: 70px;
        background-size: 70px 770px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(2) {
        background-position-y: -70px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(3) {
        background-position-y: -140px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(4) {
        background-position-y: -210px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(5) {
        background-position-y: -280px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(6) {
        background-position-y: -350px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(7) {
        background-position-y: -420px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(8) {
        background-position-y: -490px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(9) {
        background-position-y: -560px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(10) {
        background-position-y: -630px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(11) {
        background-position-y: -700px;
    }

    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(12) {
        background-position-y: -770px;
    }
    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(13) {
        background-position-y: -840px;
    }
    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(14) {
        background-position-y: -910px;
    }
    .role_container .main .roleAvatar .avatar .avatarAll a:nth-child(15) {
        background-position-y: -980px;
    }


    .role_container .main .roleAvatar .avatar .avatarAll a:hover,
    .role_container .main .roleAvatar .avatar .avatarAll a.active {
        background-position-x: -70px;
    }

    .role_container .roleInform_main {
        width: 42%;
        transform: translate(1%, -50%);
    }

    .role_container .roleInform_tab {
        width: 480px;
    }

    .role_container li .roleInform_tabList a {
        width: 62px;
        height: 62px;
        background-size: 62px 372px;
    }

    .role_container li .roleInform_tabList a:nth-child(2) {
        background-position-x: -62px;
    }

    .role_container li .roleInform_tabList a:nth-child(3) {
        background-position-x: -124px;
    }

    .role_container li .roleInform_tabList a:nth-child(4) {
        background-position-x: -186px;
    }

    .role_container li .roleInform_tabList a:nth-child(5) {
        background-position-x: -248px;
    }

    .role_container li .roleInform_tabList a:nth-child(6) {
        background-position-x: -310px;
    }
}

/* 视听站 - 1600px */
@media (max-width: 1600px) {
    .seeHear_container .main {
        max-width: 1200px;
    }

    .seeHear_container .tab_content {
        width: 800px;
    }

    .seeHear_container .swiper_con,
    .seeHear_container .wallpaper_con {
        width: 800px;
        height: 450px;
    }
}

/* 视听站 - 1366px */
@media (max-width: 1366px) {
    .seeHear_container .main {
        max-width: 1000px;
    }

    .seeHear_container .tab_content {
        width: 650px;
    }

    .seeHear_container .swiper_con,
    .seeHear_container .wallpaper_con {
        width: 650px;
        height: 366px;
    }

    .seeHear_container .videoInform,
    .seeHear_container .wallpaper {
        width: 400px;
    }
}

/* 音乐厅 - 1600px */
@media (max-width: 1600px) {
    .concertHall_container .main {
        max-width: 1200px;
    }

    .concertHall_container .main .left_music .music_btn a {
        font-size: 14px;
    }

    .concertHall_container .main .middle_music {
        width: 600px;
        height: 600px;
        background-size: contain;
    }

    .concertHall_container .main .middle_music .music_bg {
        width: 250px;
        height: 250px;
        background-size: contain;
    }

    .concertHall_container .main .middle_music .music_bg a {
        width: 60px;
        height: 60px;
        background-size: contain;
    }
}

/* 音乐厅 - 1366px */
@media (max-width: 1366px) {
    .concertHall_container .main {
        max-width: 1000px;
    }

    .concertHall_container .main .left_music .music_btn a {
        font-size: 12px;
    }

    .concertHall_container .main .left_music .music_btn a:hover,
    .concertHall_container .main .left_music .music_btn a.active {
        font-size: 14px;
        width: 280px;
    }

    .concertHall_container .main .middle_music {
        width: 500px;
        height: 500px;
        background-size: contain;
    }

    .concertHall_container .main .middle_music .music_bg {
        width: 200px;
        height: 200px;
        background-size: contain;
    }

    .concertHall_container .main .middle_music .music_bg a {
        width: 50px;
        height: 50px;
        background-size: contain;
    }

    .concertHall_container .main .right_music p {
        font-size: 14px;
    }
}

