@font-face {
	font-family: 'SourceHanSansSC-Regular';
	src: url('../fonts/SourceHanSansSC-Regular.otf');
}
@font-face {
	font-family: 'SourceHanSansSC-Medium';
	src: url('../fonts/SourceHanSansSC-Medium.otf');
}



@font-face {
	font-family: 'DouyinSans-Bold';
	src: url('../fonts/DouyinSansBold.otf');
}

@font-face {
	font-family: 'MiSans-Regular';
	src: url('../fonts/MiSans-Regular.otf');
}

@font-face {
	font-family: 'MiSans-Bold';
	src: url('../fonts/MiSans-Bold.otf');
}




/* 瀛椾綋 */


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-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-family: SourceHanSansSC-Regular, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.16rem;
	color: #676767;
}




.page_wrap {
	padding-top: 1.1rem;
	background: url('../images/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: 16rem;
	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;
	left: 0;
	top: 0;
	z-index: 50;
	width: 100%;
	height: 1rem;
	transition: background 0.3s ease, box-shadow 0.3s ease;
	border-bottom: 0.01rem solid rgba(255, 255, 255, 0.2);
}

.header .main {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.head_logo {
	width: auto;
	height: 0.53rem;
	filter: brightness(0) invert(1);
}

.head_logo img {
	width: auto;
	height: 100%;
	object-fit: contain;
}

.head_box {
	display: flex;
	align-items: center;
}

.head_nav {
	display: flex;
	align-items: center;
	column-gap: 0.5rem;
	margin-left: auto;
	margin-right: 0.5rem;
}

.head_nav .nav_tiem {
	position: relative;
}

.head_nav .nav_tiem>a {
	display: block;
	font-size: 0.18rem;
	color: #fff;
	transition: color 0.3s ease;
	padding: 0.38rem 0;
	font-family: SourceHanSansSC-Regular;
}

.head_nav .nav_tiem>a:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0rem;
	width: 100%;
	height: 0.02rem;
	background: #ffffff;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	transition: transform 0.5s ease;
}

.head_nav .nav_tiem.active>a,
.head_nav .nav_tiem:hover>a {
	font-weight: bold;
	color: #fff;
}

.head_nav .nav_tiem.active>a:after,
.head_nav .nav_tiem:hover>a:after {
	transform: translateX(-50%) scaleX(1);
}

.head_nav .nav_tiem .nav_box {
	position: absolute;
	top: calc(100% - 0.01rem);
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	padding: 0.37rem 0.56rem 0.07rem 0.31rem;
	box-shadow: 0rem 0rem 0.35rem 0.01rem rgba(0, 0, 0, 0.07);
	border-radius: 0 0 0.15rem 0.15rem;
	display: none;
}

.head_nav .nav_tiem .nav_box .nav_li {
	display: flex;
	align-items: center;
	column-gap: 0.1rem;
	margin-bottom: 0.28rem;
	font-size: 0.18rem;
	color: #000000;
	white-space: nowrap;
	cursor: pointer;
	position: relative;
}

.head_nav .nav_tiem .nav_box .nav_li img {
	width: 0.18rem;
	height: 0.18rem;
	object-fit: contain;
	filter: brightness(0);
}

.head_nav .nav_tiem .nav_box .nav_li::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.12rem;
	height: 0.12rem;
	background: url(../images/nav_icon.png) center center no-repeat;
	background-size: contain;
	opacity: 0;
	transition: all 0.3s ease;
}

.head_nav .nav_tiem .nav_box .nav_li:hover {
	color: #0A50B4;
}

.head_nav .nav_tiem .nav_box .nav_li:hover img {
	filter: brightness(1) invert(0);
}

.head_nav .nav_tiem .nav_box .nav_li:hover::before {
	opacity: 1;
	right: -0.22rem;
}

.head_search {
	width: 0.15rem;
	height: 0.15rem;
	background: url(../images/search_icon.png) center center no-repeat;
	background-size: contain;
	filter: brightness(0) invert(1);
}

.nav_add,
.navbar-default {
	display: none;
}




.header.dark {
	border-color: rgba(75, 75, 75, 0.2);
}

.header.dark .head_logo,
.header.dark .head_search,
.header.bg .head_logo,
.header.bg .head_search {
	filter: brightness(1) invert(0);
}

.header.dark .nav_tiem>a,
.header.bg .nav_tiem>a {
	color: #000000;
}

.header.dark .nav_tiem>a::after,
.header.bg .nav_tiem>a::after {
	background: #F85A2C;
}

.header.dark .nav_tiem.active>a,
.header.dark .nav_tiem:hover>a,
.header.bg .nav_tiem.active>a,
.header.bg .nav_tiem:hover>a {
	color: #0A50B4;
}

.header.bg {
	background: #fff;
	box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.05);
	border-color: transparent;
}



/* 左侧悬浮 */
.float_tools {
	position: fixed;
	right: 0.2rem;
	top: 50%;
	z-index: 45;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	row-gap: 0.05rem;
}

.float_tools .float_item {
	position: relative;
}

.float_tools .float_icon,
.float_tools .back_top {
	width: 0.62rem;
	height: 0.62rem;
	background: #FFFFFF;
	border-radius: 0.05rem;
	border: 0.01rem solid #E5E5E5;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.float_tools .float_icon img,
.float_tools .back_top img {
	width: 61%;
	height: auto;
}

.float_tools a:first-child {
	margin-top: 0;
}

.float_tools .back_top {
	background: #0963c3;
	border-color: #0963c3;
}

.float_tools .float_item:hover .float_icon,
.float_tools .back_top:hover {
	background: #F85A2D;
	border-color: #F85A2D;
}

.float_tools .float_item:hover .float_icon img,
.float_tools .back_top:hover img {
	filter: brightness(0) invert(1);
}
.float_tools .float_item .float_code{
	position: absolute;
	top: 0;
	right: -1.84rem;
	width: 1.84rem;
	height: auto;
	background: #FFFFFF;
	box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0,0,0,0.1);
	padding: 0.19rem 0.2rem 0.05rem;
	opacity: 0;
	transition: all 0.5s;
}
.float_tools .float_item .float_code span{
	display: block;
	font-weight: 400;
	font-size: 0.14rem;
	color: #676767;
	text-align: center;
	margin-bottom: 0.07rem;
}
.float_tools .float_item .float_code .code_img{
	width: 1.45rem;
	height: 1.45rem;
}
.float_tools .float_item .float_code .code_img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.float_tools .float_item .float_code .code_close{
	position: absolute;
	top: 0.11rem;
	right: 0.09rem;
	width: 0.11rem;
	height: 0.11rem;
	background: url(../images/modal_close.png) center center no-repeat;
	background-size: contain;
}

.float_tools .float_item .float_txt {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -500px;
	background: #F85A2D;
	border-radius: 0.05rem;
	font-size: 0.18rem;
	color: #ffffff;
	line-height: 1;
	padding: 0.22rem 0.14rem;
	white-space: nowrap;
	z-index: -1;
	transition: all 0.5s;
	opacity: 0;
}

.float_tools .float_item:hover .float_txt {
	right: calc(100% + 0.04rem);
	opacity: 1;
}
.float_tools .float_item:hover .float_code{
	right: calc(100% + 0.12rem);
	opacity: 1;
}


/* banner */
.banner{
	position: relative;
	width: 100%;
	height: 5.5rem;
	overflow: hidden;
	z-index: -1;
}
.banner_box{
	position: fixed;
	top: 0;
	width: 100%;
	height: 5.5rem;
}

.banner .banner_pic {
	position: absolute;
	inset: 0;
}

.banner .banner_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner .banner_info {
	position: relative;
	z-index: 2;
	padding-top: 2.32rem;
	color: #fff;
}

.banner .banner_info h2 {
	font-family: DouyinSans-Bold;
	font-size: 0.45rem;
	line-height: 1;
	font-weight: bold;
}

.banner .banner_info i {
	display: block;
	width: 0.25rem;
	height: 0.03rem;
	margin-top: 0.12rem;
	background: #fff;
}

.banner .banner_info p {
	font-family: SourceHanSansSC-Regular;
	font-weight: 300;
	margin-top: 0.28rem;
	font-size: 0.2rem;
	line-height: 1;
	color: rgba(255, 255, 255);
}





/* 公共面包屑 */
.position{
	background: #fff;
	position: relative;
	z-index: 1;
}
.position .main {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 0.01rem solid #E2E2E2;
}
.position .position_nav {
	display: flex;
	height: 100%;
	align-items: center;
	column-gap: 0.8rem;
}
.position .position_nav a {
	position: relative;
	font-size: 0.18rem;
	color: #484848;
	transition: color 0.3s ease;
	padding: 0.33rem 0;
}
.position .position_nav a:after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 0rem;
	height: 0.03rem;
	background: #ff5a3d;
	transition: width 0.3s ease;
}

.position .position_nav a.active,
.position .position_nav a:hover {
	color: #0a65c7;
	font-weight: bold;
}

.position .position_nav a.active:after,
.position .position_nav a:hover:after {
	width: 100%;
}

.position .crumb {
	font-size: 0.16rem;
	color: #ADADAD;
	display: flex;
	align-items: center;
	gap: 0.08rem;
}
.position .crumb img {
	height: 0.14rem;
	object-fit: contain;
	margin-right: 0.05rem;
}
.position .crumb span {
	margin: 0 0.02rem;
}
.position .crumb a:hover,
.position .crumb a:last-child {
	color: #1E40AF;
}






/* 更多按钮 */
.more_btn {
	display: inline-flex;
	align-items: center;
	column-gap: 0.16rem;
	border: 0.01rem solid rgba(255,255,255,0.5);
	font-family: SourceHanSansSC-Regular;
	padding: 0.18rem 0.43rem;
	font-weight: 400;
	font-size: 0.18rem;
	line-height: 1;
	transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.more_btn i {
	width: 0.06rem;
	height: 0.11rem;
	background: url(../images/more_btn.png) no-repeat center center;
	background-size: contain;
	filter: brightness(1) invert(0);
}

.more_btn.white {
	border: 0.01rem solid rgba(255, 255, 255, 0.58);
	color: #fff;
}
.more_btn.white i {
	filter: brightness(0) invert(1);
}
.more_btn.blue {
	border: 0.01rem solid #0b6ed4;
	color: #0b6ed4;
}
.more_btn:hover {
	background: #0b6ed4;
	border-color: #0b6ed4;
	color: #fff;
}
.more_btn:hover i {
	filter: brightness(0) invert(1);
}



/* 底部信息 */
.footer {
  background: #EBEFF5;
  padding-top: 0.6rem;
}
.footer .main {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.15rem;
  min-height: 4.75rem;
}
.footer .main .foot_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.32rem;
  border-bottom: 0.01rem solid #BFBFBF;
}
.footer .main .foot_top .footer_logo {
  width: auto;
  height: 0.68rem;
}
.footer .main .foot_top .footer_logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.footer .main .foot_top .footer_slogan {
  font-family: DouyinSans-Bold;
  font-weight: bold;
  font-size: 0.25rem;
  color: #000000;
}
.footer .main .footer_bottom {
  width: 100%;
  padding-bottom: 0.49rem;
  padding-top: 0.4rem;
  display: flex;
  justify-content: space-between;
}
.footer .main .footer_bottom .footer_title {
  display: block;
  font-weight: bold;
  font-size: 0.2rem;
  color: #000000;
  position: relative;
  line-height: 1;
}
.footer .main .footer_bottom .footer_title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.17rem;
  width: 0.2rem;
  height: 0.02rem;
  background: #F85A2D;
}
.footer .main .footer_bottom .footer_left {
  position: relative;
}
.footer .main .footer_bottom .footer_left .footer_contact {
  width: fit-content;
}
.footer .main .footer_bottom .footer_left .footer_contact .footer_title {
  margin-bottom: 0.55rem;
}
.footer .main .footer_bottom .footer_left .footer_contact .address_name {
  font-weight: 500;
  font-size: 0.18rem;
  color: #000000;
}
.footer .main .footer_bottom .footer_left .footer_contact .address {
  margin-bottom: 0.24rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #676767;
  margin-top: 0.12rem;
}
.footer .main .footer_bottom .footer_left .footer_contact .phone {
  font-weight: 400;
  font-size: 0.16rem;
  color: #676767;
  margin-top: 0.12rem;
}
.footer .main .footer_bottom .footer_left .footer_code {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.29rem;
  height: 1.29rem;
}
.footer .main .footer_bottom .footer_left .footer_code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .main .footer_bottom .footer_nav {
  display: flex;
  column-gap: 0.65rem;
}
.footer .main .footer_bottom .footer_nav .footer_title {
  margin-bottom: 0.71rem;
}
.footer .main .footer_bottom .footer_nav a:not(:first-child) {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #676767;
  line-height: 1;
}
.footer .main .footer_bottom .footer_nav a:not(:first-child):hover {
  color: #F85A2D;
}
.footer .copyright {
  border-top: 1px solid #BFBFBF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 0.16rem;
  color: #A6A6A6;
  padding: 0.32rem 0;
}





/* 页码 */
.page_box {
	width: fit-content;
	margin: 0.88rem 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: #0A50B4;
	border-color: #0A50B4;
	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-weight: 400;
	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-weight: 400;
	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);
}








@media screen and (max-width: 1042px) {
	.header {
		height: 82px;
		background: #fff;
		padding: 15px 0;
	}

	.head_box {
		column-gap: 20px;
	}

	.head_logo {
		height: 52px;
		filter: brightness(1) invert(0);
	}

	.nav_add,
	.navbar-default {
		display: block;
	}

	.head_btn {position: relative !important;float: right;padding: 0;background-color: transparent;background-image: none;border: 0;border-radius: 0}
	.head_btn:focus {outline: 0}
	.head_btn .icon-bar {display: block;width: 22px;height: 2px;border-radius: 1px}
	.head_btn .icon-bar+.icon-bar {margin-top: 4px}
	.navbar-default .head_btn .icon-bar {background-color: #606060}
	.head_btn .icon-bar {position: relative}
	.head_btn .icon-bar+.icon-bar {margin-top: 6px}
	.head_btn .icon-bar:nth-child(2) {-moz-transition: background .3s ease 0s;-o-transition: background .3s ease 0s;-webkit-transition: background .3s ease;-webkit-transition-delay: 0s;transition: background .3s ease 0s;background: transparent}
	.transform-fallback-fix .head_btn .icon-bar:nth-child(2) {background: #606060}
	.head_btn .icon-bar:nth-child(1),
	.head_btn .icon-bar:nth-child(3) {-moz-transition: top .3s ease, -moz-transform .3s ease .4s;-o-transition: top .3s ease, -o-transform .3s ease .4s;-webkit-transition: top .3s ease, -webkit-transform .3s ease;-webkit-transition-delay: 0s, .4s;transition: top .3s ease, transform .3s ease .4s}
	.head_btn .icon-bar:nth-child(1) {top: 8px;-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-webkit-transform: rotate(45deg);transform: rotate(45deg)}
	.transform-fallback-fix .head_btn .icon-bar:nth-child(1) {top: 0}
	.head_btn .icon-bar:nth-child(3) {top: -8px;-moz-transform: rotate(-45deg);-ms-transform: rotate(-45deg);-webkit-transform: rotate(-45deg);transform: rotate(-45deg)}
	.transform-fallback-fix .head_btn .icon-bar:nth-child(3) {top: 0}
	.head_btn.collapsed .icon-bar:nth-child(2) {-moz-transition: background .3s ease .4s;-o-transition: background .3s ease .4s;-webkit-transition: background .3s ease;-webkit-transition-delay: .4s;transition: background .3s ease .4s;background-color: #606060}
	.head_btn.collapsed .icon-bar:nth-child(1),
	.head_btn.collapsed .icon-bar:nth-child(3) {top: 0;-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-webkit-transform: rotate(0deg);transform: rotate(0deg);-moz-transform-origin: 50% 50%;-ms-transform-origin: 50% 50%;-webkit-transform-origin: 50% 50%;transform-origin: 50% 50%;-moz-transition: top .3s ease .4s, -moz-transform .3s ease;-o-transition: top .3s ease .4s, -o-transform .3s ease;-webkit-transition: top .3s ease, -webkit-transform .3s ease;-webkit-transition-delay: .4s, 0s;transition: top .3s ease .4s, transform .3s ease}

	.head_search {
		width: 18px;
		height: 18px;
		filter: brightness(1) invert(0);
	}

	.header .head_nav {
		position: fixed;
		width: 100%;
		height: calc(100vh - 82px);
		left: 0;
		bottom: 0;
		padding: 20px 3% 0;
		background: #fff;
		transform: translateX(100%);
		transition: all 0.5s;
		pointer-events: all;
		overflow: auto;
		flex-direction: column;
		gap: 0;
		z-index: -1;
	}

	.header .head_nav.on {
		transform: translateX(0);
		overflow-x: hidden;
	}

	.head_nav .nav_tiem {
		width: 100%;
		height: auto;
		padding: 15px 0;
		border-bottom: 1px solid #DFDFDF;
		position: relative;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.head_nav .nav_tiem>a {
		color: #000;
		font-size: 20px;
		padding: 0;
	}
	.head_nav .nav_tiem.active>a, 
	.head_nav .nav_tiem:hover>a{
		color: #0A50B4;
	}
	.header.dark .nav_tiem>a::after {
		display: none;
	}

	.head_nav .nav_tiem .nav_add {
		position: absolute;
		top: 4px;
		left: auto;
		right: 0;
		width: 50px;
		height: 50px;
		background: url(../images/fm_add.svg) no-repeat center;
		background-size: 14px 14px;
		transform: rotate(0deg);
		transition: transform 0.5s;
	}

	.head_nav .nav_tiem .nav_add.active {
		transform: rotate(135deg);
	}

	.head_nav .nav_tiem .nav_box {
		position: initial;
		transform: none;
		padding: 20px 0 0 20px;
		background: none;
		box-shadow: none;
	}

	.head_nav .nav_tiem .nav_box .nav_li {
		font-size: 18px;
		margin-bottom: 16px;
		width: fit-content;
		column-gap: 8px;
	}

	.head_nav .nav_tiem .nav_box .nav_li img {
		width: 18px;
		height: 18px;
	}

	/* 左侧悬浮工具 */
	.float_tools .float_icon, .float_tools .back_top{
		width: 56px;
		height: 56px;
	}
	.float_tools .float_item .float_txt{
		font-size: 16px;
        padding: 20px 15px;
	}
	.float_tools .float_item .float_code{
		width: auto;
		padding: 15px 15px 5px;
	}
	.float_tools .float_item .float_code span{
		font-size: 16px;
	}
	.float_tools .float_item .float_code .code_img{
		width: 140px;
		height: 140px;
	}


	/* 更多按钮 */
	.more_btn{
		font-size: 18px;
        padding: 14px 26px;
	}


	/* banner*/
	.banner,
	.banner_box{
		height: 5rem;
	}
	.banner .banner_info {
		padding-top: 0;
		top: 50%;
		transform: translateY(-50%);	
	}
	.banner .banner_info h2{
		font-size: 36px;
	}
	.banner .banner_info i{
		width: 30px;
		height: 3px;
		margin-top: 10px;
	}
	.banner .banner_info p{
		font-size: 24px;
		margin-top: 30px;
	}





	/* 面包屑 */
	.position .position_nav{
		column-gap: 30px;
	}
	.position .position_nav a{
		font-size: 16px;
		padding: 20px 0;
	}
	.position .position_nav a:after{
		height: 2px;
	}
	.position .crumb{
		font-size: 14px;
	}
	.position .crumb img{
		height: 14px;
	}




	/* 底部信息 */
	.footer{
		padding-top: 50px;
	}
	.footer .main .foot_top{
		flex-wrap: wrap;
		row-gap: 20px;
	}
	.footer .main .foot_top .footer_logo{
		height: 56px;
	}
	.footer .main .foot_top .footer_slogan{
		font-size: 22px;
	}
	.footer .main .footer_bottom{
		flex-direction: column-reverse;
        row-gap: 30px;
	}
	.footer .main .footer_bottom .footer_nav{
		justify-content: space-between;
		column-gap: normal;
	}
	.footer .main .footer_bottom .footer_title,
	.footer .main .footer_bottom .footer_left .footer_contact .address,
	.footer .main .footer_bottom .footer_left .footer_contact .address_name{
		font-size: 18px;
	}
	.footer .main .footer_bottom .footer_nav .footer_title{
		margin-bottom: 36px;
	}
	.footer .main .footer_bottom .footer_nav a:not(:first-child){
		font-size: 16px;
		margin-bottom: 20px;
	}
	.footer .main .footer_bottom .footer_left .footer_contact .phone{
		font-size: 16px;
	}
	.footer .copyright{
		font-size: 16px;
		padding: 20px 0;
	}
}

@media screen and (max-width: 768px) {
	body{
		font-size: 14px;
	}
	
	.header{
		height: 66px;
	}
	.header .head_nav{
		height: calc(100vh - 66px);
	}


	.more_btn{
		font-size: 14px;
		border-radius: 30px;
		padding: 8px 14px;
	}
	.more_btn i{
		width: 6px;
		height: 11px;
	}
	

	.head_logo{
		height: 36px;
	}







	.float_tools .float_icon, .float_tools .back_top {
        width: 46px;
        height: 46px;
    }
	.float_tools .float_item .float_txt{
		padding: 15px;
	}


	.banner, .banner_box {
        height: 400px;
    }
	.banner .banner_info {
		transform: none;
	}
	.banner .banner_info h2{
		font-size: 24px;
	}
	.banner .banner_info i{
		width: 32px;
		height: 2px;
		margin-top: 9px;
	}
	.banner .banner_info p{
		font-size: 16px;
		margin-top: 24px;
		line-height: 1.5;
	}



	.position .main{
		flex-direction: column-reverse;
		padding-top: 15px;
	}
	.position .crumb{
		margin: 0 auto 20px 0;
	}
	.position .position_nav{
		overflow-x: auto;
		max-width: 100%;
	}
	.position .position_nav a{
		white-space: nowrap;
		padding: 15px 0;
	}



	.footer .main .foot_top .footer_logo{
		height: 44px;
		max-width: 100%;
	}
	.footer .main .foot_top .footer_slogan{
		font-size: 20px;
	}
	.footer .main .footer_bottom .footer_nav{
		flex-wrap: wrap;
		justify-content: flex-start;
		row-gap: 20px;
	}
	.footer .main .footer_bottom .footer_nav .foot_item{
		width: 25%;
	}
	.footer .main .footer_bottom .footer_nav .footer_title{
		margin-bottom: 22px;
		font-size: 16px;
	}
	.footer .main .footer_bottom .footer_nav a:not(:first-child){
		font-size: 14px;
		margin-bottom: 14px;
	}
	.footer .main .footer_bottom .footer_title,
	.footer .main .footer_bottom .footer_left .footer_contact .address_name{
		font-size: 16px;
	}
	.footer .main .footer_bottom .footer_left .footer_contact .address,
	.footer .main .footer_bottom .footer_left .footer_contact .phone{
		font-size: 14px;
	}
	.footer .main .footer_bottom .footer_left .footer_code{
		width: 120px;
        height: 120px;
	}
	.footer .copyright {
        font-size: 14px;
        padding: 14px 4%;
        text-align: center;
    }




	.page_box{
		margin: 40px auto 0;
	}

	.page_box .pages .item, .page_box .btn{
		width: 24px;
		height: 24px;
		font-size: 12px;
	}
	.page_box .toPage{
		font-size: 12px;
	}
	.page_box .toPage input{
		width: 42px;
		height: 24px;
		font-size: 12px;
	}
}


