@font-face {
	font-family: 'SourceHanSansCN-Regular';
	src: url('../font/SourceHanSansCN-Regular.otf');
}

@font-face {
	font-family: 'Poppins-SemiBold';
	src: url('../font/SourceHanSansCN-Regular.otf');
}

@font-face {
	font-family: 'Poppins-Medium';
	src: url('../font/Poppins-Medium.otf');
}



/* 瀛椾綋 */


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Microsoft YaHei, Microsoft YaHei;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/* For some Androids */
	/* 英文开启 */
	word-wrap: break-word !important;
	word-break: normal !important;
}

body{
	font-weight: 400;
	font-size: 0.16rem;
	color: #535353;
	line-height: 1.875;
}






:root {
	--c: #1C488F;
	--s_tran: 0.3s ease-in-out;
	--l_tran: 0.5s ease-in-out;
}

.main {
	max-width: 14rem;
	width: 94%;
	margin: 0 auto;
}

.flex_box {
	display: flex;
}
.hc_flex_box {
	display: flex;
	align-items: flex-start;
}

[class*="fb"] {
	flex: 1;
	margin-left: 0;
	margin-right: 0;
	min-width: 0;
}

.flex_list {
	display: flex;
	flex-wrap: wrap;
}

.lmx_h1 {
	width: 0px;
	height: 0px;
	margin: 0;
	text-indent: -9999em;
}

html {
	font-size: 100px;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	outline: none;
}

span {
	color: inherit;
	font-size: inherit;
}


input,
textarea {
	outline: 0;
	border: none;
}


hr {
	border-top: 0.01rem solid rgba(222, 222, 222, 1);
	margin-top: 0.47rem;
	margin-bottom: 0.4rem;
}

/*文字描边*/
/* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
/* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*多行溢出*/
.line1 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.line2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 2;
}

.line3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 3;
}

.line4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 4;
}

.line5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 5;
}




/* 水波纹效果 */
.btn-ripple {
	vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
	opacity: 1;
	position: relative;
	overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
	animation: ani_ripple 0.75s;
	z-index: 1;
	content: "";
	position: absolute;
	display: block;
	transition: all 0.6s;
	width: 100%;
	height: 0;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	padding-top: 100%;
	transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
	0% {
		background: rgba(0, 0, 0, 0.25);
		transform: translateX(-50%) translateY(-50%) scale(0);
	}

	to {
		background: transparent;
		transform: translateX(-50%) translateY(-50%) scale(1);
	}
}




/* hover-图片放大1.1 */
.scale_box {
	display: block;
	width: auto;
	overflow: hidden;
}

.scale_box .scale_img {
	width: 100%;
	height: 100%;
	transition: var(--s_tran);
	cursor: pointer;
	object-fit: cover;
}

.hover_box:hover .scale_img {
	transform: scale(1.1);
}


/* hover-图片旋转向上位移 */
.rotate_box {
	display: block;
	width: auto;
	overflow: hidden;
}

.rotate_box .rotate_img {
	transition: var(--s_tran);
	object-fit: cover;
}

.hover_box:hover .rotate_img {
	transform: rotateY(180deg) translateY(-0.1rem);
}




/* 头部导航 */
.header{
	position: fixed;
	z-index: 999;
	top: 0;
	width: 100%;
	background: #000000;
	padding: 0 0.6rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .head_logo{
	width: auto;
	height: 1.1rem;
}
.header .head_logo img{
	width: auto;
	height: 100%;
}
.header .head_box{
	display: flex;
	align-items: center;
	column-gap: 0.4rem;
}
.header .head_box .language{
	position: relative;
}
.header .head_box .language .language_txt{
	display: flex;
	align-items: center;
	column-gap: 0.05rem;
	padding: 0.08rem 0.16rem;
	background: #C9A03D;
	border-radius: 0.2rem;
	font-family: SourceHanSansCN-Regular;
	font-weight: 400;
	font-size: 0.14rem;
	color: #FFFFFF;
}
.header .head_box .language .language_txt img{
	width: 0.16rem;
	height: 0.16rem;
	object-fit: contain;
}
.header .head_box .head_nav{
	width: 0.3rem;
	height: 0.3rem;
	background: url(../img/nav_icon.png) center center no-repeat;
	background-size: contain;
	cursor: pointer;
}
.header .head_box .head_nav.active{
	background: url(../img/close.png) center center no-repeat;
	background-size: contain;
}
.header .nav_box{
	position: absolute;
	top: 100%;
	right: 0;
	width: fit-content;
	height: fit-content;
	background: #000000;
	padding: 0.72rem 0.96rem 1.93rem;
	display: none;
}
.header .nav_box a{
	display: block;
	font-family: SourceHanSansCN-Regular;
	font-weight: 400;
	font-size: 0.24rem;
	color: #FFFFFF;
	margin-bottom: 0.33rem;
}
.header .nav_box a:last-child{
	margin-bottom: 0;
}



/* banner */
.banner{
	width: 100%;
	height: 8rem;
	background: #000;
	position: relative;
	z-index: 0;
}
.banner::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3.56rem;
	background: linear-gradient( 180deg, #000000 0%, rgba(0,0,0,0) 100%);
	z-index: 1;
}
.banner>img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner .main{
	position: absolute;
	top: 3.85rem;
	left: 50%;
	transform: translateX(-50%);
}
.banner .main h2{
	font-family: SourceHanSansCN-Regular;
	font-weight: 400;
	font-size: 0.5rem;
	color: #FFFFFF;
}





/* 底部信息 */
.footer{
	background: #000000;
	padding-top: 0.47rem;
}
.footer .main{
	display: flex;
	justify-content: space-between;
}
.footer .foot_title{
	font-family: SourceHanSansCN-Regular;
	font-weight: 400;
	font-size: 0.16rem;
	color: #FFFFFF;
	margin-bottom: 0.16rem;
}
.footer .foot_list{
	height: 0.93rem;
	display: flex;
	align-items: center;
	column-gap: 0.21rem;
}
.footer .foot_list .foot_logo{
	display: flex;
	align-items: center;
	column-gap: 0.21rem;
	font-family: SourceHanSansCN-Medium;
	font-weight: 500;
	font-size: 0.22rem;
	color: #FFFFFF;
}
.footer .foot_item:nth-child(1){
    width: 60%;
}
.footer .foot_item:nth-child(2){
    max-width: 40%;
}
.footer .foot_item:nth-child(1) .foot_list .foot_logo:nth-child(1){
    max-width: 60%;
}
.footer .foot_list .foot_logo img{
	width: .93rem;
	height: .93rem;
	max-width: 1.42rem;
	max-height: 100%;
	object-fit: contain;
}
.footer .foot_list .foot_logo .foot_logo_txt{
    display: flex;
    flex-direction: column;
}
.footer .foot_list .foot_logo span{
    font-size: 0.14rem;
}
.footer .foot_bottom{
	margin-top: 0.5rem;
	border-top: 0.01rem solid #636363;
	padding: 0.17rem 0;
}
.footer .foot_bottom .main{
	align-items: center;
}
.footer .foot_bottom .foot_banquan,
.footer .foot_bottom .foot_code a,
.footer .foot_bottom .foot_code span{
	font-family: SourceHanSansCN-Regular;
	font-weight: 400;
	font-size: 0.14rem;
	color: #ACACAC;
	position: relative;
}
.footer .foot_bottom .foot_code{
	display: flex;
	align-items: center;
	column-gap: 0.14rem;
}




/* 页码 */
.page_box {
	width: fit-content;
	margin: 1rem auto 0;
	display: flex;
	align-items: center;
	column-gap: 0.05rem;
}
.page_box .pages {
	display: flex;
	align-items: center;
	column-gap: 0.05rem;
}
.page_box .pages .item,
.page_box .btn{
	width: 0.3rem;
	height: 0.3rem;
	background: #FFFFFF;
	border-radius: 0.02rem;
	border: 0.01rem solid #E6E6E6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 0.16rem;
	color: #9A9A9A;
	cursor: pointer;
	overflow: hidden;
}
.page_box .pages .item:hover,
.page_box .pages .active,
.page_box .btn:hover{
	background: #0068B7;
	color: white;
}
.page_box .pages span{
	border: none !important;
	background: none !important;
	color: #9A9A9A !important;
}
.page_box .btn img {
	height: 0.13rem;
	object-fit: contain;
}
.page_box .btn:hover img{
	filter: brightness(0) invert(1);
}
.page_box .toPage {
	margin-left: 0.08rem;
	display: flex;
	align-items: center;
	font-family: Montserrat-Light;
	font-weight: 300;
	font-size: 0.16rem;
	color: #9A9A9A;
}
.page_box .toPage input {
	width: 0.54rem;
	height: 0.3rem;
	margin: 0 0.12rem 0 0.1rem;
	background: #FFFFFF;
	border-radius: 0.02rem;
	border: 0.01rem solid #E6E6E6;
	outline: none;
	font-family: Montserrat-Light;
	font-weight: 300;
	font-size: 0.16rem;
	color: #9A9A9A;
	text-align: center;
}
.page_box .btn.disabled {
    background-color: #f4f4f5;
    color: #c0c4cc;
    border-color: #f4f4f5;
    cursor: not-allowed;
}
.page_box .btn.disabled:hover img{
	filter: brightness(1) invert(0);
}








/*视频弹窗*/
.video_pop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}
.video_pop.act {
  display: flex;
}
.video_pop .video_pop_box {
  width: 13.54rem;
  max-width: 86vw;
  position: relative;
}
.video_pop .video_pop_box video {
  display: block;
  width: 100%;
  max-height: 82vh;
  background: #000000;
}
.video_pop .video_close {
  position: absolute;
  right: 0.26rem;
  top: 0.2rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  z-index: 2;
}
.video_pop .video_close::before,
.video_pop .video_close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.26rem;
  height: 0.04rem;
  border-radius: 0.04rem;
  background: #5A5A5A;
}
.video_pop .video_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.video_pop .video_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}



@media (max-width: 1042px) {
	.header{
		padding: 10px 3%;
	}
	.header .head_logo{
	    height: 78px;
	}


    
	.footer .main{
	    flex-wrap: wrap;
	    row-gap: 20px;
	}
	.footer .foot_title{
	    font-size: 20px;
	}
	.footer .foot_list{
	    height: auto;
	}
	.footer .foot_item{
	    max-width: 100% !important;
	    width: 100% !important;
	}
	.footer .foot_list .foot_logo{
	    font-size: 20px;
	   max-width: 100%;
	}
	.footer .foot_list .foot_logo img{
	    webkit-align-content: 80px;
	    height: 80px;
	}
	.footer .foot_list .foot_logo span{
	    font-size: 16px;
	}
	.footer .foot_bottom .foot_banquan, 
	.footer .foot_bottom .foot_code a, 
	.footer .foot_bottom .foot_code span{
	    font-size: 14px;
	}
	
	
	
	.banner{
		height: 600px;
	}
	.banner .main{
		top: calc(50% - 40px);
		z-index: 2;
	}
	.banner .main h2{
		font-size: 36px;
	}

}


@media (max-width: 768px) {
    .header{
        padding: 0 3%;
    }
    .header .head_logo {
        height: 68px;
    }
    .header .nav_box{
        max-width: 100%;
    }
	.header .head_box .language .language_txt {
		font-size: 14px;
		padding: 4px 20px;
		border-radius: 20px;
		column-gap: 5px;
	}

	.header .head_box .language .language_txt img {
		width: 16px;
		height: 16px;
	}

	.header .head_box .head_nav{
		width: 22px;
		height: 22px;
	}
	.header .nav_box a{
		font-size: 16px;
		/*white-space: nowrap;*/
		line-height: 1.2;
	}
	
	.footer .foot_list{
	    flex-wrap: wrap;
	    width: 100%;
	}
	.footer .foot_item,
	.footer .foot_list .foot_logo{
	           max-width: 100% !important;
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
	}
	 .footer .foot_list .foot_logo span {
        font-size: 12px;
        line-height: 1;
    }
	.footer .foot_bottom .main{
	   row-gap: 0px;
	}
	.footer .foot_bottom .foot_banquan, 
	.footer .foot_bottom .foot_code a, 
	.footer .foot_bottom .foot_code span{
	    font-size: 12px;
	}
	
	
	
	
	.banner {
        height: 360px;
    }
	.banner .main{
		top: calc(50% - 6px);
	}
	.banner .main h2{
		font-size: 28px;
	}
}