@font-face {
    font-family: 'HanYi'; /* 自定义字体名称 */
    src: url('./font/HanYiZongYiTiJian.ttf') format('truetype'); /* 字体文件路径 */
}
@font-face {
    font-family: 'korean'; /* 自定义字体名称 */
    src: url('./font/KoreanGWS-B.woff2') format('woff2'); /* 字体文件路径 */
}
@font-face {
    font-family: 'hansan'; 
    src: url('./font/SourceHanSansCN-Regular.woff2') format('woff2'); 
}
/* 遮罩 */
.mask{
    position: fixed;
    top: 0;
    left:0;
    bottom: 0;
    right: 0;
	width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(0,0,0,0.65);
    display: none;
}
.test{
    z-index: 9999;
    position: fixed;
}
.mask-art{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	width: 100%;
    height: 100%;
    z-index: 20;
    background: rgb(0,0,0,0.75);
    display: none;
}
.show-big-art{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
    flex-direction: column;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	width: 50rem;
	height: 50rem;
}
.world-window{
	position: absolute;
    width: 108.2rem;
    height: 39.2rem;
    z-index: 100;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	opacity: 0;
	visibility: hidden;
}
.world-window-img{
    width: 69.8rem;
	height: 100%;
	position: absolute;
	opacity: 0;
	left: -10rem;
}
.world-window-txt{
	background-color: #262626;
    width: 38.4rem;
	height: 30.8rem;
	color: white;
	position: absolute;
    bottom: 0;
}
.world-window-content{
	position: absolute;
    right: 39rem;
    height: 100%;
    width: 38.4rem;
	z-index: -1;
	opacity:0;
}
.world-window-close{
	width: 10rem;
	height: 5rem;
	background: url(../images/v2/world-window-close.png) no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
	position: absolute;
    right: 0;
}
.world-window-div-1{
	width: 0.8rem;
	height: 14.8rem;
	background-color: blue;
	position: absolute;
    top: 0;
	right: 38rem;
	opacity: 0;
}
.world-window-div-2{
	width: 1rem;
	height: 1rem;
	background-color: blue;
	position: absolute;
    right: 0;
    bottom: 0;
	z-index: 1;
}
.art-show-img{
	width: 100%;
	height: 100%;
}
.show-big-art-sign{
	width: 106.6rem;
	height: 7rem;
	background: url(../images/v2/show-big-art-sign.png) no-repeat;
	background-size: 100% 100%;
	display: flex;
    align-items: center;
}
.art-download{
	width: 7rem;
	height: 2.6rem;
	background: url(../images/v2/art-download.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
    right: 12.5rem;
	cursor: pointer;
}
.art-copyright{
	color: white;
}
.art-logo{
	margin-left: auto;
}
.mask-video{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	width: 100%;
    height: 100%;
    z-index: 99;
	background-size: 192rem auto;
	opacity: 0.65;
    display: none;
}
.mask-world-window{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	width: 100%;
    height: 100%;
    z-index: 99;
	background-color: #ffffff;
	background-size: 192rem auto;
	opacity: 0.65;
    display: none;
}
.mask-video-close{
	width: 2.4rem;
	height: 2.4rem;
	background: url(../images/v3/reserve-close.png) no-repeat;
	background-size: 100% 100%;
	right: -5rem;
    position: absolute;
    z-index: 100;
    top: 0;
    cursor: pointer;
	transition: 0.5s;
}
.mask-video-close:hover{
	transition: 0.5s;
	transform: rotate(180deg);
}
/* 点击视频 */
.show-video{
    position: absolute;
	-webkit-transform: translate(-50%,-50%) scale(0.5);
	transform: translate(-50%,-50%) scale(0.5);
    top: 50%;
    left: 50%;
    bottom: 0;
    right: 0;
    width: 118.4rem;
    height: 66.6rem;
    z-index: 100;
    display: none;
}

.show-video-on{
	animation-name: show-video-on;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}
.show-video-off{
	animation-name: show-video-off;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}

@keyframes show-video-on {
	0% {
		opacity: 0;
		transform: translate(-50%,-50%) scale(0.8);
	}
	40%{
		opacity: 0;
	}
	80%{
		opacity: 1;
		transform: translate(-50%,-50%) scale(1.01);
	}
	100% {
		opacity: 1;
		transform: translate(-50%,-50%) scale(1);
	}
}
@keyframes show-video-off {
	0% {
		opacity: 1;
		transform: translate(-50%,-50%) scale(1);
	}
	20%{
		opacity: 1;
		transform: translate(-50%,-50%) scale(1.01);
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		transform: translate(-50%,-50%) scale(0.8);
	}
}
.show-video-play{
	width: 118.4rem;
    height: 66.6rem;
    position: absolute;
    bottom: 0;
    /* width: 100%;
    height: 100%; */
    margin: 0 auto;
}
.show-video-play video{
    width: 100%;
    height: 100%;
}
.body,.content{
	width: 100%;
	height: 100%;
	position: relative;
}


/* 首页 */
.index{
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-size: 100% 100%;
	overflow: hidden;
}
.index-slide:after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -99;
	background: url(../images/v3/official_index_bg.png) no-repeat;
	background-size: 100% 100%;
}
.index .logo{
	position: absolute;
	left: 5rem;
	top: -1.4rem;
	width: 27rem;   
	height: 13rem; 
}
.index .age{
	position: absolute;
	left: 12.4rem;
	bottom: 4.5rem;
	width: 7.6rem;
    height: 7.6rem;
}
.index .play{
	height: 7.3rem;
	width: 6.3rem;
	position: relative;
	top: 50%;
	transform: translate(0, -50%);
	margin: 0 auto;
	background-size: auto 100%;
	cursor: pointer;
}
.index .play:hover img{
	content:url(../images/play_check.png);
	animation-name: play-animation;
	animation-duration: 2.5s;	
	animation-fill-mode: forwards ;
	animation-iteration-count: infinite;
}

@keyframes play-animation {
	0% {
		filter: drop-shadow(0px 0px 10px white);
	}
	50%{
		filter: drop-shadow(0px 0px 0px white);
	}
	100% {
		filter: drop-shadow(0px 0px 10px white);
	}
}
.index .reserve-btn{
	width: 44rem;
	height: 5.8rem;
	background: url(../images/v3/reserve-btn.png) no-repeat;
	cursor: pointer;
    background-size: auto 100%;
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 21.2rem;
}
.index .reserve-btn:hover{
	filter: brightness(110%);
}
.index .reserve-num{
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 17.6rem;
	color: white;
	width: max-content;
	font-size: 1.4rem;
	text-shadow: 0 0 0.8rem #0f3e9a;

}
#reserve-main{
	position: absolute;
	width: 74.5rem;
	height: 51.8rem;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
	background: url(../images/v3/reserve-main.png) no-repeat;
    background-size: 100% 100%;
	z-index: 99;
	display: none;
}
.reserve-msg{
	position: absolute;
    min-width: 26rem;
    height: 8rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -100;
    background-color: #F1F1F1;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    color: #5a5a5a;
    justify-content: center;
    padding: 0 1rem;
    box-shadow: 0px 2px 10px 0px #9e9e9e;
    border-radius: 0.5rem;
	opacity: 0;
	visibility: hidden;
}
.reserve-main{
	width: 45rem;
    margin: 0 auto;
    top: 14rem;
    position: relative;
}
.reserve-system span{
	font-size: 1.2rem;
	color: #686c72;
}
.reserve-system-list{
	position: relative;
	margin-top: 0.5rem;
	outline: 1px solid #A8A8A8;
	height: 3.8rem;
	display: flex;
}
.reserve-system-and img{
	width: 7.2rem;
	height: 1.7rem;
}
.reserve-system-ios img{
	width: 4.2rem;
	height: 1.7rem;
}
.reserve-system-pc img{
	width: 4.2rem;
	height: 1.7rem;
}
.reserve-system-li{
	width: 15rem;
	height: 3.8rem;
	display: flex;
	justify-content: center;
    align-items: center;
	cursor: pointer;
}
.reserve-system-check{
	background-color: #1657D9;
}
.reserve-system-check img{
	filter: invert(1);
}
.reserve-phone{
	margin-top: 3rem;
    position: relative;
}
.reserve-phone input{
	width: 100%;
	height: 3.8rem;
	background-color: #CDCED0;
    outline: 1px solid #A8A8A8;
    border: none;
    text-indent: 20px;
	font-size: 1.6rem;
	color: #262626;
}
.reserve-sms{
	margin-top: 2rem;
    position: relative;
	display: flex;
}
.reserve-sms-code{
	width: 26.1rem;
	background-color: #CDCED0;
    outline: 1px solid #A8A8A8;
	border: unset;
    text-indent: 20px;
	font-size: 1.6rem;
	height: 3.8rem;
}
.reserve-sms-btn{
	margin-left: 0.6rem;
	width: 18.3rem;
	height: 3.8rem;
    outline: 1px solid #262626;
	border: unset;
	background-color: #262626;
	color: white;
	font-size: 1.6rem;
	cursor: pointer;
}
.reserve-agree{
	margin-top: 5rem;
    position: relative;
	display: flex;
}
.reserve-agree-check{
	width: 1.2rem;
	height: 1.2rem;
	cursor: pointer;
}
.reserve-agree-txt{
	font-size: 1.4rem;
	color: #262626;
	margin-left: 1rem;
	line-height: 1;
}
.reserve-agree-txt a{
	color: #262626;
}
.reserve-submit{
	margin-top: 1rem;
    position: relative;
}
.reserve-submit input{
	width: 100%;
	height: 4.8rem;
	background-color: #1657D9;
    outline: unset;
    border: none;
	font-size: 1.6rem;
	color: white;
	cursor: pointer;
}
.reserve-close{
	width: 2.4rem;
	height: 2.4rem;
	position: absolute;
    right: -1.3rem;
    top: 2.3rem;
	cursor: pointer;
	transition: 0.5s;
}
.reserve-close:hover{
	transition: 0.5s;
	transform: rotate(180deg);

}
.index .wenan{
	position: absolute;
	height: 3.9rem;
	width: 100rem;
	left: 12.4rem;
	bottom: 5.1rem;
	display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    font-style: italic;
	letter-spacing: 2.8rem;
	color: #656565;
}
.index .wenan-1{
	margin-bottom: 0.8rem;
}
.reg_btn {
    width: 600px;
    position: absolute;
    left: 50%;
    bottom: 88px;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all .1s;
}

.reg_btn img {
    width: 100%;
}

.mask-reg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, .7);
    z-index: -99;
    transition: all .0s;
    -webkit-transition: all .0s;
    opacity: 0;
}

.mask-reg.active {
    opacity: 1;
    z-index: 2;
}

.reg-wrap, .reg-success {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -99;
}

.reg-wrap.active, .reg-success.active {
    z-index: 2;
}

.reg-wrap .container {
    position: absolute;
    width: 489px;
    height: 443px;
    left: 50%;
    top: 50%;
    background: url(../images/v5/p1/reg_bg.png) top center/cover no-repeat;
    /* background-size: 100% 100%; */
    transform-origin: center center;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.reg-privacy {
    position: absolute;
    width: 107px;
    height: 16px;
    top: 254px;
    left: 206px;
    cursor: pointer;
    user-select: none;
    /* background: rgba(0, 0, 0, .7); */
}

.reg-user { 
    position: absolute;
    width: 93px;
    height: 16px;
    top: 254px;
    left: 340px;
    cursor: pointer;
    user-select: none;
    /* background: rgba(0, 0, 0, .7); */
}

.reg-wrap .container .must {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 255px;
    left: 32px;
    cursor: pointer;
    user-select: none;
    /* background: rgba(0, 0, 0, .7); */
}
.must img{
    width: 100%;
    display: none;
}
.must.active img{
    width: 100%;
    display: block;
}

.reg-success .container {
    position: absolute;
    width: 537px;
    height: 488px;
    left: 50%;
    top: 50%;
    background: url(../images/v5/p1/reg_success_bg.png) top center/cover no-repeat;
    transform-origin: center center;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.reg-wrap.active .container, .reg-success.active .container  {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.reg-wrap .container input {
    background: transparent !important;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    height: 56px;
    line-height: 56px;
    width: 420px;
    border: none;
    outline: none;
    margin: 0;
    color: #000000;
    font-size: 18px;
    position: absolute;
    top: 172px;
    left: 36px;
    text-align: center;
    font-family: "hansan";
}

.own_tip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,.8);
    color: #fff;
    padding: 16px 18px;
    z-index: 999999;
    font-size: 16px;
    border-radius: 10px;
}

.rs-icon-wrap {
    width: 448px;
    height: 265px;
    position: absolute;
    top: 120px;
    left: 44px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rs-icon-wrap span {
    width: 120px;
    height: 120px;
    /* background: rgba(0,0,0,0.75); */
    margin-bottom: 17px;
    user-select: none;
    cursor: pointer;
}

input::input-placeholder {
    color:  #666666 !important;
}

::-webkit-input-placeholder { /* WebKit browsers */ 
    color: #666666 !important; 
} 

.reg-submit {
    position: absolute;
    top: 330px;
    left: 55px;
    height: 60px;
    width: 380px;
    cursor: pointer;
}

.index .download{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 15rem;
	display: flex;
    align-items: center;
}
.index .download-phone{
	width: 18.2rem;
	height: 5.5rem;
	cursor: pointer;
}
.index .appstore{
	margin-top: 1rem;
}
.index .download-code{
	width: 10rem;
	height: 12rem;
	margin-left: 0.4rem;
	cursor: pointer;
}
.download-code-show{
	width: 9rem;
    height: 9rem;
    position: absolute;
    top: 0;
    margin: 0.5rem;
}
.index .download-pc{
	width: 7rem;
	height: 12rem;
	margin-left: 0.4rem;
	cursor: pointer;
}
.index .download-tap{
	width: 7rem;
	height: 12rem;
	margin-right: 0.4rem;
	cursor: pointer;
}
.index .download-mumu{
	width: 7rem;
	height: 12rem;
	margin-right: 1rem;
	cursor: pointer;
}

.video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -99;
}

#J_dotLine,#J_dotLine_news,#J_dotLine_world{
	position: absolute;
    width: 100%;
    bottom: 0;
	overflow: hidden;
	z-index: -1;
}

section {
	position: absolute;
    width: 100%;
    height: 12%;
    bottom: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: -1;
  }


  section .set {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 4rem;
	left: 0;
	pointer-events: none;
  }

  section .set div {
	position: absolute;
	display: block;
  }

  section .set div:nth-child(1) {
	left: 20%;
	animation: animate 30s linear infinite;
	animation-delay: -7s;
  }

  section .set div:nth-child(2) {
	left: 50%;
	animation: animate 40s linear infinite;
	animation-delay: -5s;
  }

  section .set div:nth-child(3) {
	left: 70%;
	animation: animate 40s linear infinite;
	animation-delay: 0s;
  }

  section .set div:nth-child(4) {
	left: 0%;
	animation: animate 30s linear infinite;
	animation-delay: -5s;
  }

  section .set div:nth-child(5) {
	left: 85%;
	animation: animate 36s linear infinite;
	animation-delay: -10s;
  }

  section .set div:nth-child(6) {
	left: 0%;
	animation: animate 24s linear infinite;
  }

  section .set div:nth-child(7) {
	left: 15%;
	animation: animate 28s linear infinite;
  }

  section .set div:nth-child(8) {
	left: 60%;
	animation: animate 30s linear infinite;
  }

  @keyframes animate {
	0% {
	  opacity: 0;
	  left: -10%;
	  transform: translateX(0px) rotate(0deg);
	}

	10% {
	  opacity: 1;
	}

	20% {
	  transform: translateX(-20px) rotate(45deg);
	}

	40% {
	  transform: translateX(-20px) rotate(90deg);
	}

	60% {
	  transform: translateX(20px) rotate(180deg);
	}

	80% {
	  transform: translateX(-20px) rotate(180deg);
	}

	100% {
		left: 110%;
	  transform: translateX(-20px) rotate(225deg);
	}
  }

  .set-2 {
	transform: scale(2) rotateY(180deg);
	filter: blur(2px);
  }

  .set-3 {
	transform: scale(0.8) rotateY(180deg);
	filter: blur(4px);
  }

  /* 里程碑 */
.preg {
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url(../images/v5/p2/bg.png) no-repeat;
	background-size: cover;
	background-position: top center;
	z-index: 0;
}
.preg_role {
    height: 110%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
}
.preg_bottom_mask {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.preg-head{
	opacity: 0;
	width: 46.7rem;
	height: 2.9rem;
	background: url(../images/v5/p2/preg_head.png?v=1.1) no-repeat;
	background-size: 100% 100%;
	top: 3.2rem;
	left: 12.7rem;
	position: absolute;
    z-index: 2;
}
.o-jia {
    /* opacity: 0; */
    width: 56rem;
    height: 2.2rem;
	background: url(../images/v5/p2/jia.png) no-repeat;
	background-size: 100% 100%;
	top: 10rem;
	left: 13.5rem;
	position: absolute;
    z-index: 2;
}
.o-title {
    width: 51rem;
    height: 3.35rem;
    margin: 0.6rem 0 1.5rem;
}
.o-title img {
    width: 100%;
}
.preg-footer-img{
	width: 73.5rem;
	height: 7.1rem;
}
.preg-footer-animate {
    z-index: 99;
}
.preg-container {
    position: absolute;
    width: 100rem;
    top: 53%;
    transform: translateY(-50%);
	left: 20rem;
    z-index: 999;
    opacity: 0;
}
.reg-num {
    font-size: 13.4rem;
    font-family: 'HanYi';
    color: #1657d9; /* 文字颜色 */
    text-shadow: 
    -2px -2px 0 #fff,  
    2px -2px 0 #fff,
    -2px  2px 0 #fff,
    2px  2px 0 #fff; /* 黑色描边 */
}
.preg-r {
    width: 100%;
    display: flex;

}
.preg-r-item {
    width: 18.32rem;
    height: 19.36rem; 
    margin-right: 1.2rem;
    position: relative;
}
.preg-r-item div {
    width: 100%;
    height: 100%; 
}
.preg-r-item.active div {
    filter: brightness(.5) ;
}
.preg-r-item img.pi-gou {
    width: 10rem;
    height: 8.8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
.preg-r-item.active img.pi-gou {
    display: block;
}
.preg-r-item img.pi-img {
    width: 100%;
    height: 100%;
}
.preg-last {
    margin-top: 20px;
    width: 76.88rem;  
    position: relative;
}
.preg-last div {
    width: 100%;
}
.preg-last.active div {
    filter: brightness(.5) ;
}
.preg-last div img.pi-img {
    width: 100%;
}
.preg-last.active img.pi-gou {
    display: block;
}
.preg-last img.pi-gou{
    width: 10rem;
    height: 8.8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

/* 新闻 */
.news{
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	/* background: url(../images/official_news_bg.png) no-repeat; */
	background: url(../images/v5/p4/bg.png?v=1.2) no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: 0;
}
.news-slide:after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -99;
}
.page-body{
    width: 166.6rem;
	height: 100%;
    left: 50%;
    margin: 0 auto;
    transform: translate(-50%);
    position: absolute;
}
.preg_role_animate{
	animation-name: preg_role_animate;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}
@keyframes preg_role_animate{
	0%{
		opacity: 0;
		margin-right: -3rem;
	}
	100%{
		opacity: 1;
		margin-right: 0rem;
	}
}
.preg-animate{
	animation-name: preg-animate;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}
@keyframes preg-animate{
	0%{
		opacity: 0;
		margin-left: -2rem;
	}
	100%{
		opacity: 1;
		margin-left: 0rem;
	}
}
.head-animate{
	animation-name: head-animate;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}
@keyframes head-animate{
	0%{
		opacity: 0;
		margin-left: -10rem;
	}
	100%{
		opacity: 1;
		margin-left: 0rem;
	}
}
.news-head{
	width: 21.1rem;
	height: 2.9rem;
	background: url(../images/v5/p4/news-head.png?v=1.1) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 3.2rem;
	left: 12.7rem;
	opacity: 0;
}
.news-body-show{
	top: 50%;
    left: 50%;
    width: 100%;
    height: 60rem;
    transform: translate(-50%, -50%);
    position: absolute;
	opacity: 0;
}
.news-img {
	width: 21.1rem;
	height: 4.2rem;
	background: url(../images/v2/news-img.png?v=1.1) no-repeat;
	background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: -6rem;
}
.news-icon1 {
	width: 1.9rem;
	height: 6.6rem;
	background: url(../images/v5/p4/icon1.png) no-repeat;
	background-size: 100% 100%;
    position: absolute;
    left: -4rem;
    top: 11rem;
}
.news-body{
	/* margin-top: 1rem; */
	width: 100%;
	/* height: 52.4rem; */
    height: 100%;
	/* overflow: hidden; */
	display: flex;
    justify-content: center;
	position: absolute;
}
.news-body-banner{
	height: 100%;
	width: 84rem;
	/* overflow: hidden; */
	background: url(../images/v5/p4/bg_left.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
}
.swiper-news{
	height: 44rem;
	width: 78rem;
	overflow: hidden;
    margin: 3.2rem auto 0;
}
.news-body-list{
	height: 100%;
	width: 54rem;
	background: url(../images/v5/p4/bg_right.png) no-repeat;
    background-size: 100% 100%;
    margin-left: 9rem;
    position: relative; 
}
.news-f2 {
    width: 21.9rem;
	height: 1.5rem;
	background: url(../images/v5/p4/f2.png) no-repeat;
	background-size: 100% 100%;
    position: absolute;
    right: 0.8rem;
    top: -3rem;  
}
.news-f1 {
    width: 3.5rem;
	height: 39.5rem;
	background: url(../images/v5/p4/f1.png) no-repeat;
	background-size: 100% 100%;
    position: absolute;
    right: -2rem;
    top: 5rem;
}
.news-f4 {
    width: 23rem; 
	height: 9.4rem;
	background: url(../images/v5/p4/f4.png) no-repeat;
	background-size: 100% 100%;
    position: absolute;
    right: -3rem;
    bottom: 2.3rem;
}
#news-swiper-pagination{
	position: sticky;
    width: 80%;
    bottom: 1.5rem;
    left: 3rem;
    z-index: 1;
    display: inline-block;
}
.news .swiper-pagination-bullet{
	width: 35px;
	height: 5px;
	background-color: white;
	display: inline-block;
	margin: 5px;
	cursor: pointer;
}
.news .swiper-pagination-bullet-active{
	background-color: #4DA1FF;
}
.news-body-list-body{
	margin: 3.2rem auto 0;
	width: 48rem;
    position: relative;
}
.news_iframe {
    width: 100%;
    height: 44rem;
    /* background: #000; */
}
.news_banner_more {
    width: 17rem;
    height: 4rem;
    /* background: rgba(0, 0, 0, .6); */
    position: absolute;
    right: 5rem;
    bottom: 2.4rem;
    cursor: pointer;
}
.news_iframe iframe {
    border: none;
    width: 100%;
    height: 100%;
}
.news-body-list-body a{
	text-decoration: none;
}
.news-list-head{
	margin-top: 5rem;
	border-bottom: 1px solid black;
}
.news-list-head ul{
	display: flex;
    justify-content: flex-end;
	margin-bottom: 1rem;
}
.news-list-head li{
	margin-left: 4rem;
	font-size: 2rem;
	color: #272727;
	font-weight: bold;
}
.news-list-head  .check{
	color: #1657d9;
}
.news-list-content{
	height: 8rem;
	border-bottom: 1px dashed #8c8c8c;
	display: flex;
    align-items: center;
}
.news-list-content:hover .news-list-content-type{
	width: 14.4rem;
}
.news-list-content-type{
	background-color: #1657D9;
	width: 7.4rem;
	height: 3rem;
	display: flex;
    align-items: center;
    justify-content: space-between;
	transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.news-type-1{
	width: 2.7rem;
	height: 1.4rem;
	padding-left: 1rem;
}
.news-type-2{
	width: 1rem;
	height: 0.7rem;
	background: url(../images/v2/zhankai.png) no-repeat;
	background-size: 100% 100%;
	margin-right: 1rem;
}
.news-list-content-title{
	height: 3rem;
	width: 35rem;
	font-size: 1.6rem;
	color: #4b4b4b;
	padding-left: 2rem;
	line-height: 3rem;
    overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap; 
}
.news-list-content-time{
	font-size: 1.6rem;
	color: #4b4b4b;
    margin-left: auto;
}
.news-list-more{
	cursor: pointer;
	width: 9rem;
	height: 1.4rem;
	background: url(../images/v2/news-more.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 47.5rem;
    right: 0rem;
	z-index: 2;
}
.page-footer{
	position: absolute;
	left: 12.7rem;
    right: 12.7rem;
	bottom: 4.5rem;
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
	opacity: 0;
	/* z-index: -2; */
}

.page-footer-animate{
	animation-name: page-footer-animate;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}
@keyframes page-footer-animate{
	0%{
		opacity: 0;
		bottom: 0rem;
	}
	100%{
		opacity: 1;
		bottom: 4.5rem;
	}
}

.news-footer-img{
	width: 54.8rem;
	height: 8.2rem;
}

/* 角色 */
.role{
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url(../images/v5/p3/bg.png) no-repeat;
	background-size: cover;
	background-position: top center;
	z-index: 0;
}
.role-slide:after{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 42rem;
    content: '';
    z-index: -99;
    background: url(../images/official_role_slide.png) no-repeat;
	background-size: cover;
	background-position: center bottom;
}
.role-head{
	opacity: 0;
	width: 30.7rem;
	height: 3rem;
	background: url(../images/v5/p3/role-head.png?v=1.2) no-repeat;
	background-size: 100% 100%;
	top: 3.2rem;
	left: 12.7rem;
	position: absolute;
    z-index: 9;
}
.role-left-change{
	width: 40rem;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	/* margin-left: 3rem;
	transform: perspective(40rem) rotateX(0deg) rotateY(15deg) translateY(-50%); */
}
.role-img{
	width: 40rem;
	height: 3.1rem;
	/* margin-top: 5.9rem; */
	background: url(../images/v2/role-img.png?v=1.1) no-repeat;
	background-size: 100% 100%;
}
.role-left{
	display: inline-block;
}
.role-left-list{
	position: relative;
	margin-top: 3rem;
}
.role-left-list ul{
	width: 100%;
	height: 100%;
}
.role-left-list li{
	width: 100%;
	height: 100%;
	margin-bottom: 1.5rem;
}
.role-left-list li:hover{
	filter: unset;
}
.role-left-list li:hover .role-mask-1{
    width: 15rem;
}
.role-left-list .role-left-activity{
	padding-bottom: 2rem;
}
.role-show{
	position: relative;
	display: flex;
}
.role-show-img{
	width: 12.6rem;
	height: 12.6rem;
	border: 0.3rem solid #1657D9;
}
/* .role-show-img:after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -99;
    background: url(../images/v2/role-show-img-slide.png) no-repeat;
	background-size: 100% 100%;
} */
.role-mask{
	height: 13.2rem;
    background-color: #1657D9;
    float: right;
    width: 13rem;
    position: absolute;
	/* box-shadow: 6px 6px 6px 0px #656565; */
	transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.role-shadow{
	box-shadow: 6px 6px 6px 0px #848587;
}
.role-mask-1{
	height: 13.2rem;
    background-color: #1657D9;
    float: right;
    width: 13rem;
    position: absolute;
	transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.role-mask-keyframes{
	animation-name: role-mask-keyframes;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}

@keyframes role-mask-keyframes {
    0% {
		width: 15rem;
    }
    100% {
		width: 40rem;
    }
}

.role-mask::after,.role-mask-1::after{
	content: "";
    position: absolute;
    top: 0;
    border-width: 13rem 0rem;
    border-style: solid;
    border-color: #1657D9 transparent transparent transparent;
}
.role-left-name{
	float: left;
	margin-left: 2.2rem;
	margin-top: 1.9rem;
	font-size: 2.4rem;
	color: white;
}
.role-left-en-name{
	font-size: 1.4rem;
	padding-left: 0.8rem;
	font-weight: bold;
	font-style: italic;
    color: white;
    position: absolute;
    bottom: 0;
	width: 13rem;
	height: 2.7rem;
	line-height: 2.7rem;
	background-image: linear-gradient(to right , #1657D9 8rem, rgba(0,0,0,0));
}
.role-left-name-sound{
	width: 2rem;
	height: 1.2rem;
	float: left;
	margin-top: 2rem;
	margin-left: 1rem;
}
.role-left-name-txt{
	font-size: 1.4rem;
	color: white;
	position: absolute;
    left: 15.2rem;
    top: 9.2rem;
}
.role-left-position-icon{
	width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    left: 15.2rem;
    top: 5rem;
}
.role-more{
	width: 24.6rem;
	height: 5.4rem;
	background-color: #252525;
	font-size: 1.6rem;
	text-align: center;
	line-height: 5.4rem;
	cursor: pointer;
	margin-top: 3rem;
	display: none;
}
.role-more:hover {
	background-color: #1657d9;
}
.role-more span{
	color: white;
	width: 100%;
	display: inline-block;
}
.role-user,.role-video{
	width: 100%;
    height: 100%;
	position: absolute;
    z-index: -10;
}
.role-user,.role-video video{
    top: 0;
    left: 50%;
    transform: translate(-50%);
    position: absolute;
    z-index: -10;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.role-user img{
	left: 50%;
    transform: translate(-50%);
    position: absolute;
}
.role-right{
	position: absolute;
	left: 127.9rem;
	top: 50%;
    transform: translateY(-50%);
	opacity: 0;
}

.role-right-show1{
	margin-left: -10rem;
	opacity: 0;
}
.role-right-show3{
	margin-left: -10rem;
	opacity: 0;
}
.role-right-show5{
	margin-left: -10rem;
	opacity: 0;
}
.role-right-show7{
	opacity: 0;
}

.role-right-txt{
	background: url(../images/Resistance-Bureau.png) no-repeat;
	background-size: 100% 100%;
	width: 11.8rem;
	height: 1.8rem;
}
.role-right-1{
	margin-top: 2rem;
	display: flex;
    align-items: flex-end;;
}
.role-right-name{ 	
	font-size: 5rem;
	float: left;
}
.role-right-enname{
    height: 2.6rem;
    padding-left: 1.2rem;
}
.role-right-2{
	margin-top: 0.7rem;
	height: 2.8rem;
	width: 25.4rem;
	background-color: white;
	display: flex;
    align-items: center;
	box-shadow: 6px 6px 6px 0px #848587;
}
.role-tank{
	background: url(../images/role-tank.png) no-repeat;
	background-size: 100% 100%;
	width: 26.4rem;
	height: 2.8rem;
}
.role-attack{
	background: url(../images/role-attack.png) no-repeat;
	background-size: 100% 100%;
	width: 26.4rem;
	height: 2.8rem;
}
.role-health{
	background: url(../images/role-health.png) no-repeat;
	background-size: 100% 100%;
	width: 26.4rem;
	height: 2.8rem;
}
.role-position-icon{
	width: 2rem;
	height: 2rem;
	background-color: #4DA1FF;
	float: left;
	border: 0.4rem solid #4DA1FF;
}
.role-position-txt{
	font-size: 1.8rem;
	color: #1657d9;
	margin-left: 4.2rem;
    font-weight: bold;
}
.role-position-attacktarget{
	font-size: 1.6rem;
	color: #4b4b4b;
	margin-left: 3rem;
	font-weight: bold;
}
.role-right-3{
	margin-top: 1rem;
	font-size: 1.6rem;
	color: #1a1a1a;
	border-left: 0.6rem solid #1657d9;
	padding-left: 0.8rem;
	font-weight: bold;
	display: flex;
    align-items: center;
}
.role-right-3 .bar{
	background-color: #1657d9;
}

.role-right-voice{
	display: inline-block;
	width: 3rem;
	cursor: pointer;
}
.role-footer-img{
	width: 38rem;
	height: 7.2rem;
}
.role3-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url(../images/v5/p3/role1/role1_left.png) no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: -1;
}
.role3-right-top {
    position: absolute;
    top: 4rem;
    right: 27rem;
    width: 24rem;
    height: 23.5rem;
	background: url(../images/v5/p3/right_top.png) no-repeat;
	background-size: 100% 100%;
	z-index: 1;
}
.role3-right {
    position: absolute;
    top: 33rem;
    right: 11rem;
    width: 38.3rem;
    height: 25.9rem;
	background: url(../images/v5/p3/role1/role1_right.png) no-repeat;
	background-size: 100% 100%;
	z-index: 1;
}
.role3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url(../images/v5/p3/role1/role1.png) no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: 0;
}
/* .role3 img {
    display: block;
    height: 100%;
    margin: 0 auto;
} */
.role-nav {
    position: absolute;
    bottom: 5.5rem;
    right: 11rem;
    /* width: 70rem; */
    height: 8.8rem;  
    z-index: 3;
    display: flex;
    /* background: rgba(0, 0, 0, .6); */
}
.rn-left, .rn-right {
    width: 5.6rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.rn-right {
    flex-direction: row-reverse;
}
.rn-left img {
    width: 3.7rem;
}
.rn-right img {
    width: 3.7rem;
}
.rn-content {
    width: 62.4rem;
    position: relative;
    overflow: hidden;
}
.rn-content ul {
    display: flex;
    width: 83.6rem;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .4s;
}
.rn-content ul li {
    width: 20rem;
    height: 8.7rem;
    margin: 0 0.6rem;
    position: relative;
}
.rn-content ul li img {
    width: 20rem;
    position: absolute;
    top: 0;
    left: 0;
}
.rn-content ul li img:first-child {
    display: none;
}
.rn-content ul li.active img:first-child {
    display: block;
    z-index: 1;
}

.footer-name{
	font-size: 4.2rem;
	color: #1657d9;
	position: absolute;
	bottom: -1.5rem;
}
/* 动画 */
.voice-show > rect {
    animation: move-forever 2s ease-in-out infinite;
    animation-duration: 2s;
}
.voice-show > rect:nth-child(1) {
    animation-delay: -0.25s;
}
.voice-show > rect:nth-child(2) {
    animation-delay: -0.5s;
}
.voice-show > rect:nth-child(3) {
    animation-delay: -0.75s;
}
.voice-show > rect:nth-child(4) {
    animation-delay: -1s;
}
.voice-show > rect:nth-child(5) {
    animation-delay: -1.25s;
}
.voice-show > rect:nth-child(6) {
    animation-delay: -1.5s;
}
.voice-show > rect:nth-child(7) {
    animation-delay: -1.75s;
}
.voice-show > rect:nth-child(7) {
    animation-delay: -2s;
}
@keyframes move-forever {
	100%,
    0% {
		transform: scaleY(1);
    	transform-origin: center;
    }
    50% {
        transform: scaleY(0.2);
    	transform-origin: center;
    }
}

.bars {
    display: flex;
    justify-content: center;
    align-items: center;
}
.bar {
    background: #ffffff;
    width: 0.2rem;
    margin-left: 0.1rem;
    border-radius: 0.5rem;
}
.sound-animation{
	animation: sound 0ms -600ms linear infinite alternate;
}
.sound-animation:nth-child(1)  { animation-duration: 474ms;  }
.sound-animation:nth-child(2)  { animation-duration: 433ms;  }
.sound-animation:nth-child(3)  { animation-duration: 407ms;  }
.sound-animation:nth-child(4)  { animation-duration: 458ms;  }
.sound-animation:nth-child(5)  { animation-duration: 400ms;  }
.sound-animation:nth-child(6)  { animation-duration: 427ms;  }
.sound-animation:nth-child(7)  { animation-duration: 427ms;  }
@keyframes sound {
    0% {
       opacity: .35;
        height: 2px; 
    }
    100% {
        opacity: 1;       
        height: 14px;        
    }
}

.bar:nth-child(1)  { height: 4px;   }
.bar:nth-child(2)  { height: 8px;   }
.bar:nth-child(3)  { height: 6px;  }
.bar:nth-child(4)  { height: 14px;  }
.bar:nth-child(5)  { height: 4px;  }
.bar:nth-child(6)  { height: 8px;   }
.bar:nth-child(7)  { height: 6px;   }

.role-right-4{
	margin-top: 4rem;
}
.role-active-skills{
	width: 16.2rem;
	height: 1.4rem;
	background: url(../images/v2/active-skills.png) no-repeat;
	background-size: 100% 100%;
}
.role-skills-list{
	margin-top: 0.8rem;
	margin-bottom: 7.8rem;
	display: flex;
}
.role-skills{
	width: 4.3rem;
	height: 5.1rem;
	margin-right: 1rem;
	cursor: pointer;
	display: flex;
    align-items: flex-end;
    justify-content: center;
}
.role-skilles-txt{
	position: absolute;
    background-color: #2A66DC;
    padding: 0 1rem;
    font-size: 1.2rem;
    color: white;
	height: 2rem;
    border-radius: 2rem;
	margin-bottom: -2.8rem;
	visibility: hidden;
	opacity: 0;
	width: max-content;
}
.role-skills:hover .role-skilles-txt{
	visibility: visible;
	opacity: 1;
}
.role-right-5{
	margin-top: 2.9rem;
}
.role-right-5-pic{
	background: url(../images/ROLE.png?v=1.1) no-repeat;
	background-size: 100% 100%;
	width: 22.8rem;
	height: 2rem;
}
.role-right-5-txt{
	margin-top: 1.8rem;
	width: 35rem;
	font-size: 1.6rem;
	color: #343434;
	font-weight: bold;
	text-align: justify;
	line-height: 2.4rem;
}
/* 世界观/设定 */
.world{
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url(../images/world_news_bg.png) no-repeat;
	background-size: cover;
	background-position: center bottom;
	z-index: 0;
}
.world:after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -99;
    background: url(../images/v2/world-yuan.png) no-repeat;
	background-size: cover;
	background-position: center center;
}
.world-head{
	width: 84.7rem;
	height: 15rem;
	background: url(../images/v2/world-head.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 12.7rem;
	top: 2.2rem;
	opacity: 0;
}
.world-body{
	width: 100%;
	height: 57.3rem;
	margin:  0 auto;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	z-index: 1;
	cursor: pointer;
	/* overflow: hidden; */
}
.world .swiper-slide .world-list-img ,.world .swiper-container-android .swiper-slide .world-list-img,.world .swiper-backface-hidden .swiper-slide .world-list-img{
	transform: scale(0.5);
	transition: 300ms;
}
.world .swiper-slide-active .world-list-img,.world .swiper-slide-duplicate-active .world-list-img,.world .swiper-container-android .swiper-slide-active .world-list-img,.world .swiper-container-android .swiper-slide-duplicate-active .world-list-img,.world .swiper-backface-hidden .swiper-slide-active .world-list-img{
	transform: scale(1);
	z-index: 1;
	/* margin-left: -5rem; */
}

.world .swiper-slide-prev{
	/* margin-left: -9rem; */
}
.world .swiper-slide-next{
	/* margin-left: 10rem; */
}
.world-list{
	width: 58rem;
	height: 58rem;
}
.world-move-1{
	width: 58rem;
	height: 58rem;
	position: absolute;
	z-index: 2;
}
.world-move{
	width: 58rem;
	height: 58rem;
	position: absolute;
	z-index: 1;
}
.world-list-img{
	width: 58rem;
	height: 58rem;
	margin: 0 auto;
}
.world-list-txt{
	width: 65rem;
	height: 31.2rem;
	background: url(../images/v2/world-list-txt-bg.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
    top: 30rem;
	opacity: 0;
	display: none;
}
.world-txt-close{
	width: 3rem;
	height: 3rem;
	background: url(../images/v2/world-list-txt-bg-close.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 5rem;
	top: 3rem;
	cursor: pointer;
}
.world-txt-1{
	margin: 0 3.2rem;
	/* margin: 0 5rem 0 3.4rem; */
}
.world-txt-2{
	font-size: 3.4rem;
    margin-top: 6rem;
    padding-bottom: 1rem;
}
.world-txt-4{
	font-size: 1rem;
    padding-bottom: 3rem;
}
.world-txt-5{
	height: 1px;
	background-color: black;
}
.world-txt-3{
	/* margin-top: 2.5rem; */
    height: 12rem;
	overflow: hidden;
	/* font-weight: bold; */
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
	font-size: 1.6rem;
	line-height: 2.4rem;
}
.world-footer-img{
	width: 95.4rem;
	height: 9.6rem;
}
.world-footer-txt-1{
	font-size: 4.2rem;
	color: #1657d9;
	position: absolute;
	bottom: -1rem;
}
.world-footer-txt-2{
	font-size: 1.4rem;
	position: absolute;
	bottom: 4.1rem;
	font-weight: bold;
	letter-spacing: 0.4rem;
}
.world-yuan{
	width: 70rem;
	height: 70rem;
	position: absolute;
	border-radius: 50%;
	border: 1px dashed #999999;
	top:50%;
	transform: translateY(-50%);
	opacity: 0.3;
	animation-name: world-yuan;
	animation-duration: 1s;
	animation-fill-mode: forwards ;
	animation-iteration-count:infinite;
}
@keyframes world-yuan{
	0% {
		transform: translateY(-50%) rotate(0deg);
	}
	50%{
		transform: translateY(-50%) rotate(180deg);
	}
	100% {
		transform: translateY(-50%) rotate(360deg);
	}
}
.right-yuan{
	right: -17rem;
}
.left-yuan{
	left: -17rem;
}

/* 资料 */
.art{
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 0;
	background-color: black;
}
.art-page-body{
    width: 100%;
	height: 100%;
    position: absolute;
}
.art-head{
	width: 55.8rem;
	height: 12.4rem;
	background: url(../images/v3/art-head.png?v=1.2) no-repeat;
	background-size: 100% 100%;
	top: 2.2rem;
	position: absolute;
	left: 12.7rem;
	opacity: 0;
}
.art-body{
	width: 100%;
	height: 100%;
}
.art-body::after{
	position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
    background: url(../images/v3/ziliaomengban.png) no-repeat;
	background-size: cover;
	background-position: center bottom;
}
.art-body .swiper-wrapper{
	z-index: -1;
}
.art-body .swiper-wrapper img,.art-thumbs-list img{
	object-fit:cover;
}
.art-thumbs{
	width: 49.7rem;
	position: absolute;
	bottom: 5rem;
	right: 13rem;
	z-index: 1;
	overflow: hidden;
	height: 20.5rem;
}
.art-thumbs-title{
	width: 8.8rem;
	height: 2.7rem;
	/* background: url(../images/v3/art-thumbs-title.png) no-repeat; */
	background-size: 100% 100%;
	margin-bottom: 0.8rem;
	margin-left: 7.1rem;
}
.art-thumbs-list,.art-thumbs-border{
	width: 35rem;
    height: 16.6rem;
	margin: 0 auto;
}
.art-thumbs-border{
	outline: 0.2rem solid #1657D9;
    position: absolute;
    margin-left: 7.4rem;
    z-index: 2;
}
.art-thumbs-page{
	background-color: #1657D9;
    width: max-content;
    bottom: 0;
    position: absolute;
    font-size: 1.4rem;
    color: white;
	padding-left: 0.5rem;
	padding-right: 1rem;
}
.art-thumbs-list .swiper-slide-next{
	z-index: 0;
	transform: translateX(-24rem) scale(0.8);
}
.art-thumbs-list .swiper-slide-prev{
	z-index: 0;
	transform: translateX(24rem) scale(0.8);
}
.art-thumbs-list .swiper-slide-active{
	z-index: 2;
	transform: scale(1);
}
.art-thumbs-list .swiper-slide-prev::before{
	transform: translateY(-50%);
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 0;
    background: black;
    opacity: 0.6;
}
.art-thumbs-list .swiper-slide-next::after{
	transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0%;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 0;
    background: black;
    opacity: 0.6;
}
.art-thumbs-txt{
	display: none;
}
.art-page{
	height: 3.4rem;
	width: 2rem;
	cursor: pointer;
	position: absolute;
	top: 50%;
    transform: translateY(-25%);
    z-index: 2;
}
.art-swiper-button-prev{
	left: 3rem;
}
.art-swiper-button-prev:hover{
	content:url(../images/v3/art-left-click.png);
}
.art-swiper-button-next{
	right: 3rem;
}
.art-swiper-button-next:hover{
	content:url(../images/v3/art-right-click.png);
}
.art-footer-img{
	width: 85.3rem;
	height: 9.7rem;
}
.art-footer-txt-1{
	font-size: 4.2rem;
	color: white;
	position: absolute;
	bottom: -1rem;
}
.art-footer-txt-2{
	font-size: 1.4rem;
	position: absolute;
	bottom: 4.1rem;
	color: white;
	font-weight: bold;
	letter-spacing: 0.4rem;
}
/* 特色 */
.feature{
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url(../images/world_news_bg.png) no-repeat;
	background-size: cover;
	background-position: center bottom;
	z-index: 0;
}
.feature-slide:after{
}
.feature-head{
	width: 82.8rem;
	height: 9rem;
	background: url(../images/v2/feature-head.png?v=1.1) no-repeat;
	background-size: 100% 100%;
	top: 2.2rem;
	position: absolute;
	left: 12.7rem;
	opacity: 0;
}
.feature-point{
	position: absolute;
	width: 20.8rem;
	height: 10.4rem;
	background: url(../images/feature-point.png) no-repeat;
	background-size: 100% 100%;
	top: calc(50% - 28rem);
    right: 45rem;
	transform-style: preserve-3d;
	transform: translateZ(0px);
	opacity: 0;
}
.feature-list{
	position: absolute;
    height: 52.4rem;
    width: 97.4rem;
    padding: 5rem 5rem 10rem 11rem;
    top: calc(50% - 57.4rem*.5);
    left: 50%;
    overflow: hidden;
    transform: translateX(-50%);
	opacity: 0;
}
.feature-img{
	width: 93rem;
	height: 52rem;
	transform-style: preserve-3d;
	transform: translateZ(10px);
}
.feature-img img{
	position: absolute;
	width: 100%;
	background-size: 100% 100%;
	height: 100%;
}
.feature-img:after{
	position: absolute;
    top: -5px;
    left: -5px;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -99;
    border: 1px solid #D1D2D2;
}
.feature-page{
	transform-style: preserve-3d;
	transform: translateZ(20px);
	position: absolute;
	bottom: 3rem;
    left: -5rem;
	font-size: 8.6rem;
	color: white;
	text-shadow: 2px 2px 5px #838382;
}
.feature-page span{
	letter-spacing: 2px;
}
.feature-txt{
	transform-style: preserve-3d;
	transform: translateZ(20px);
	background-color: #485367;
    color: white;
    opacity: 0.85;
    height: 7.4rem;
    position: absolute;
    bottom: 4rem;
    left: -5rem;
    font-size: 3.2rem;
    overflow: hidden;
}
.feature-txt span{
	line-height: 7.4rem;
	padding: 0 2.5rem;
}
#feature-swiper-pagination{
	transform-style: preserve-3d;
	transform: translateZ(20px);
	position: absolute;
	right: 8rem;
	bottom: 7rem;
}
#feature-swiper-button-prev{
	position: absolute;
	width: 4.2rem;
	height: 7.1rem;
	background: url(../images/feature-swiper-button-1.png) no-repeat;
	background-size: 100% 100%;
	top: 50%;
	transform: translate(0, -50%);
	left: calc(50% - 68.3rem);
	cursor: pointer;
	opacity: 0;
}
#feature-swiper-button-next{
	position: absolute;
	width: 4.2rem;
	height: 7.1rem;
	background: url(../images/feature-swiper-button-2.png) no-repeat;
	background-size: 100% 100%;
	top: 50%;
	transform: translate(0, -50%);
	/* right: 23.7rem; */
	right: calc(50% - 68.3rem);
	cursor: pointer;
	opacity: 0;
}
#feature-swiper-button-next:hover{
	content:url(../images/feature-swiper-button-check-2.png);
}
#feature-swiper-button-prev:hover{
	content:url(../images/feature-swiper-button-check-1.png);
}
.feature .swiper-pagination-bullet{
	width: 8px;
	height: 8px;
	background-color: black;
	margin: 2.2rem 1.3rem 0;
	display: inline-block;
	cursor: pointer;
}
.feature .swiper-pagination-bullet-active{
	background-color: #1657d9;
	width: 30px;
}
.feature-footer-img{
	width: 96.2rem;
	height: 9.6rem;
}
/* 版权信息 */
.footer {
	z-index: 15;
	position: fixed;
    bottom: -99rem;
    width: 100%;
}
.footer-2 {
	z-index: 15;
	position: fixed;
    width: 100%;
}
.footer-2 .content {
    height: 160px;
    width: 100%;
    background-color: #f9f9f9;
    border-top: 1px solid black;
}
.footer-mask{
	width: 100%;
	position: fixed;
	height: 100%;
	display: none;
	z-index: 15;
	left: 0;
	top: 0;
}
/* nav和cookie弹窗 */
.nav{
	position: fixed;
    background: white;
    z-index: 100;
	width: 100%;
	height: 3rem;
}
.nav-ul{
	display: flex;
    justify-content: center;
	align-items: center;
    height: 60%;
	position: relative;
	top: 20%;
	font-size: 1.4rem;
}
.nav-ul-li{
	cursor: pointer;
	padding: 0.1rem 2rem;
}
.nav-ul a{
	color: black;
    text-decoration: unset;
}
.nav-li-border{
	border-right: 1px solid #ceaeae;
}
.dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.dropdown-menu-new,.dropdown-menu-hot{
	position: absolute;
	background-color: white;
	border: 1px solid #ceaeae;
    border-radius: 0.5rem;
	margin-left: -2rem;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	display: none;
}
.new-games:hover #dropdown-menu-new,.hot-games:hover #dropdown-menu-hot{
	color: red;
	display: block;
	opacity: 1;
}
.dropdown-menu-new li,.dropdown-menu-hot li{
	padding: 1rem 2rem;
}
.dropdown-li-border{
	border-bottom: 1px solid #ceaeae;
}

.cookie-show{
	max-height: 100%;
    max-width: 100%;
	position: fixed;
	width: 40rem;
	height: 30rem;
	background-color: white;
	right: 0;
	bottom: 0;
	z-index: 999;
	margin: 2rem;
	padding: 2rem;
	border-radius: 1rem;
	overflow: hidden;
	display: none;
	border: 1px solid #ceaeae;
}
.cookie-show h3{
	font-size: 3rem;
	margin: 2rem;
	text-align: center;
}
.cookie-txt{
	margin: 2rem;
	font-size: 2rem;
}
.cookie-btn{
	background: #0d6efd;
    border: 1px solid #0d6efd;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: block;
    font: inherit;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1em;
    margin: 0;
    overflow: hidden;
    padding: .86em 1em;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    transition: opacity .2s ease-out;
    white-space: nowrap;
	margin-bottom: 1rem;
}
.cookie-self-txt,.cookie-self-txt2{
	align-items: center;
    color: #2c2e30;
    display: flex;
    font-size: 1.4rem;
    font-weight: bold;
    justify-content: space-between;
    line-height: 1em;
    padding: 1.3em 0;
    position: relative;
    text-decoration: none;
	cursor: pointer;
}
.cookie-self-txt:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-bottom: .5em solid;
    border-right: .5em solid transparent;
    border-top: 0;
    border-left: .5em solid transparent;
}
.cookie-self-txt2:after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .5em solid;
	border-right: .5em solid transparent;
	border-bottom: 0;
	border-left: .5em solid transparent;
}
.cookie-self-info,.cookie-self-info-list{
	display: none;
}
.cookie-self-info-need{
	margin-top: 2rem;
	font-size: 1.6rem;
	position: relative;
	font-weight: bolder;
}
.cookie-self-info-need:after{
	background: #0d6efd;
	height: 1.4em;
	margin-top: -.7em;
	right: 0;
	transition: background .2s ease-out, opacity .2s ease-out;
	width: 2.5em;
	z-index: 0;
	border-radius: 1.4em;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
	opacity: 0.6;
	cursor: pointer;
}
.cookie-self-info-need:before{
	border-radius: 1.4em;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
	background: #fff;
    height: 1em;
    margin-top: -.5em;
    right: .75em;
    transform: translateX(-.55em);
    transition: transform .2s ease-out;
    width: 1em;
    z-index: 1;
	cursor: pointer;
}
.cookie-self-info-txt{
	margin-top: 3rem;
	font-size: 1.4rem;
}
.cookie-self-info-detail{
	margin: 4rem 0 3rem;
	color: blue;
    text-decoration: underline;
	font-size: 1.4rem;
	cursor: pointer;
}
.cookie-self-info ul{
	padding-left: 1.2rem;
	font-size: 1.6rem;
}
.cookies__cookie{
	color: #676767;
	font-size: 1.2rem;
    line-height: 1.2rem;
	margin: 2rem 0;
}
.cookies__name{
	color: #1d2731;
    display: inline;
    font-weight: bolder;
    line-height: 2.2rem;
}
.cookies__duration{
	color: #8a8e92;
    display: inline;
    text-align: right;
}
.cookies__description{
    color: #8a8e92;
    display: block;
    line-height: 120%;
    padding-top: .3em;
    text-align: left;
    width: 100%;
}