@font-face {
	font-family: 'md';
	src: url('../font/MiSans-Demibold.ttf');
}

@font-face {
	font-family: 'anton';
	src: url('../font/Anton.ttf');
}

/* 瀛椾綋 */


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: .18rem;
	/* font-family: Source Han Sans CN, Source Han Sans CN; */
	font-family: Microsoft YaHei, Microsoft YaHei;
	/* font-weight: 400; */
	color: #333;
	-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;
}

.page_wrap {
	padding-top: 1.1rem;
	background: url('../img/bg.png') rgba(251, 251, 251, 1) no-repeat bottom center;
	background-size: contain;
	padding-bottom: 0.87rem;
}

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

.main {
	max-width: 17rem;
	width: 17rem;
	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;
	display: block;
	width: 100%;
	height: 100%;
	outline: none;
	cursor: pointer !important;
}

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

ul {
	list-style: none;
}

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

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	display: block;
}

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);
	}
}







/* 公共面包屑 */
/* 栏目、导航 */
.position {
	height: 1rem;
	background: #FAFAFA;
	box-shadow: 0rem 0.02rem 0.05rem 0.01rem rgba(0, 0, 0, 0.09);
	position: relative;
}
.position .main{
	position: relative;
}
.position .position_fl a{
	display: inline-block;
	width: auto;
	height: auto;
	font-weight: 400;
	font-size: 0.18rem;
	color: #000000;
	margin-right: 0.75rem;
	margin-top: 0.38rem;
	position: relative;
	cursor: pointer;
}
.position .position_fl a::before{
	content: "";
	position: absolute;
	width: 0.32rem;
	height: 0.03rem;
	background: linear-gradient( 90deg, #4FCCE8 0%, #0071FF 100%);
	border-radius: 0.02rem;
	left: 50%;
	bottom: -0.12rem;
	margin-left: -0.16rem;
	display: none;
}
.position .position_fl a.act,
.position .position_fl a:hover{
	font-weight: bold;
	color: #000000;
}
.position .position_fl a.act::before,
.position .position_fl a:hover::before{
	display: block;
}




.position .position_fr{
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	height: 1rem;
	white-space: nowrap;
}
.position .position_fr .position_list a,
.position .position_fr .position_list span{
	font-weight: 400;
	font-size: 0.16rem;
	color: #717171 ;
    float: left;
    display: block;
    width: auto;
	cursor: pointer;
}
.position .position_fr .position_list span{
	margin: 0 0.06rem;
}
.position .position_fr .position_list a.active{
	color: #020202;
}














/* 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);
}



/* 栏目样式 */
.class_name {
	width: 100%;
	font-weight: bold;
	font-size: 0.36rem;
	color: #000000;
	padding-top: 1.02rem;
	margin-bottom: 0.82rem;
}

.class_lanmu {
	width: 100%;
	height: auto;
}

.class_lanmu .class_cont {
	font-weight: 400;
	font-size: 0.16rem;
	color: #707477;
}

.class_lanmu .center {
	text-align: center;
}







/* 页码 */
.page_box {
	width: fit-content;
	margin: 0 auto;
	margin-top: 1rem;
	/* margin-bottom: 0.72rem; */
	display: flex;
	align-items: center;
}

.page_box .pages {
	display: flex;
	align-items: center;
}

.page_box .pages .item {
	display: block;
	width: 0.3rem;
	height: 0.3rem;
	margin-right: 0.07rem;
	border: 0.01rem solid #DEDEDE;
	background-color: #fff;
	text-align: center;
	line-height: 0.3rem;
	font-size: 0.13rem;
	color: #7D7D7D;
	cursor: pointer;
	overflow: hidden;
}

.page_box .pages .item:hover,
.page_box .pages .active {
	background: #49ABED;
	color: white;
}

.page_box .pages span {
	border: none !important;
}

.page_box .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.3rem;
	height: 0.3rem;
	margin-right: 0.1rem;
	border: 0.01rem solid #E6E6E6;
	background-color: #fff;
	cursor: pointer;
	overflow: hidden;
}

.page_box .btn img {
	height: 0.13rem;
	object-fit: contain;
}

.page_box .btn:hover {
	background: #49ABED;
}

.page_box .total {
	margin-right: 0.23rem;
	font-size: 0.14rem;
	color: #333333;
}

.page_box .prev {
	margin-left: 0.22rem;
}

.page_box .toPage {
	font-weight: 400;
	font-size: 0.13rem;
	color: #9A9A9A;
	display: flex;
	align-items: center;
	margin-left: 0.19rem;
}

.page_box .toPage input {
	width: 0.54rem;
	height: 0.3rem;
	background: #FFFFFF;
	border-radius: 0.02rem;
	border: 0.01rem solid #E6E6E6;
	margin: 0 0.08rem;
	padding-left: 0.08rem;
	box-sizing: border-box;
	outline: none;
	font-size: 0.13rem;
	color: #4D4D4D;
}

.page_box .toPage span {
	width: 0.68rem;
	height: 0.3rem;
	background: #49ABED;
	margin-left: 0.2rem;
	font-weight: 400;
	font-size: 0.13rem;
	color: #FFFFFF;
	line-height: 0.3rem;
	text-align: center;
	cursor: pointer;
}







.animate-on-scroll {
	opacity: 0;
	transform: translateY(0.5rem);
	transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-on-scroll.show {
	opacity: 1;
	transform: translateY(0);
}
.animate-on-left{
	opacity: 0;
	transform: translateX(0.5rem);
	transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-on-left.show {
	opacity: 1;
	transform: translateX(0);
}
.animate-on-right{
	opacity: 0;
	transform: translateX(0);
	transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-on-right.show {
	opacity: 1;
	transform: translateX(0.5rem);
}







@media only screen and (max-width: 1024px) {
	.main{
		width: 100% !important;
		padding: 0 0.3rem;
	}
	.class_lanmu .class_cont{
		font-size: 12px !important;
	}
	.banner{
        height: auto !important;
		padding-bottom: 0.4rem !important;
    }
    .banner .banner_body{
        display: block;
    }
    .banner .banner_fl,.banner .banner_fr{
        width: auto;
    }
	.banner .banner_fl .content{
		font-size: 12px !important;
	}
	.body_list{
        flex-wrap: wrap;
    justify-content: space-between;
    }
    .body_item{
        flex: 0 0 48%;
        margin-right: 0 !important;
        margin-top: 0.2rem;
    }
    .body_item .body_txt{
        width: 100%;
    }
    .body1 .body1_list{
        justify-content: space-between !important;
    }
    .body1_item{
        flex: 0 0 48%;
        margin-right: 0 !important;
    }
    .body1_item:nth-child(1), .body1_item:nth-child(2), .body1_item:nth-child(3), .body1_item:nth-child(4){
        margin-top: 0.46rem !important;
    }
    .body1_item .item_cont{
        font-size: 12px !important;
    }
    .body1_item .item_cont{
        width: auto !important;
    }
	.body5{
		height: auto !important;
	}
    .body5_list{
        display: block !important;
        height: auto !important;
    }
    .body5_list .bd, .body5_list .bd .body5_img,.body5_list .hd{
        width: 100% !important;
    }
    .tempWrap{
        width: 100%;
        margin: auto;
    }
    .body5_list .hd{
        margin-top: 0.2rem;
    }
    .body5_list .hd .body5_txt .body5_cont{
        font-size: 12px !important;
		line-height: inherit !important;
		display: block !important;
    }
    .body5_list .hd ul{
        width: 100% !important;
		padding-bottom: 0.2rem;
    }
	.body_item .body_txt{
		font-size: 12px !important;
	}
	.body5 .body5_stxt{
		line-height: initial !important;
	}
	.class_lanmu .class_cont p{
        font-size: 12px !important;
    }
	.position{
		display: none;
	}
	.body5_list .hd .body5_txt{
		flex: 0 0 100% !important;
	}
	.animate-on-right.show{
		transform: translateX(0rem);
	}
}