@charset "utf-8";
.wrap {
	width: 83.333%;
	margin: 0 auto
}
.wrap_top {
	width: 88%;
	margin: 0 auto
}
.wrap_left{
	padding-left: 8.335%;
	box-sizing: border-box;
}
.wrap_right{
	padding-right: 8.335%;
	box-sizing: border-box;
}
@media screen and (max-width:1600px) {
	.wrap {
		width: 90%
	}
	.wrap_left{padding-left:5%;}
	.wrap_right{padding-right: 5%;}
}
@media screen and (max-width:1440px) {
	.wrap {
		width: 94%
	}
	.wrap_left{padding-left: 3%;}
	.wrap_right{padding-right: 3%;}
}
@media screen and (max-width:1366px) {
	.wrap_top {
		width: 96%;
	}
}
@media screen and (max-width:1024px) {
	.wrap_top {
		position: initial;
	}
}
:root {
	/*--i_color: #FAA511;*/
	--i_color: #FAA511;
	/* 全局颜色 */
	--i_color2: #2EACEB;
	/* 副颜色 */
	--i_color3: #200C5D;
	/*--i_color4: #e25257;*/
	--i_color4:#FAA511;
	--header_height: 0.9rem;
	/* 头部高度 */
	--border_color: rgba(0, 0, 0, .1);
	/* 默认边框颜色 */
	--f_menu_height: 50px;
	/* 移动端底部菜单 */
}
@media screen and (max-width:1024px) {
	:root,
	header {
		--header_height: .6rem;
	}
}
@media screen and (max-width:768px) {
	:root {
		--border_color: rgba(0, 0, 0, .06)
	}
}
/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2014;
	background: rgba(0, 0, 0, 0.24);
}
header::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 1px;
	background: var(--border_color);
	z-index: 2014;
}
.top_cont {
	position: relative;
	z-index: 2013;
}
.top_cont::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: -1;
	transition: all 0.3s ease;
}
.top {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}
.TopHeader {
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
	background: rgba(0, 0, 0, 0.95);
}
@media screen and (max-width:1024px) {
	header {
		top: 0;
		top: 0;
		width: 100%;
		box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
	}
	/* .top_cont {
		background: #333 !important;
	} */
}
@media screen and (min-width:1024px){
}
/* logo */
.logo {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: var(--header_height);
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}
.logo a {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
.logo img {
	height: 0.55rem;
}
@media screen and (max-width:1600px) {
	.logo img {
		height: 0.4rem;
	}
}
@media screen and (max-width:1440px) {
	.logo img {
		height: 0.4rem;
	}
}
@media screen and (max-width:1024px) {
	.logo img {
		max-height: 50%;
	}
}
/* 导航 */
@media screen and (min-width:1025px) {
	.i_nav {
		margin-left: auto;
		margin-right: auto;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		z-index: 2014;
	}
	.i_nav>li {
		position: relative;
		margin: 0 .25rem;
	}
	.i_nav>li>a {
		display: block;
		font-size: .18rem;
		color: #fff;
		line-height: var(--header_height);
		white-space: nowrap;
		-webkit-border-radius: .08rem;
		border-radius: .08rem;
		text-transform: capitalize;
		position: relative;
		z-index: 2;
	}
	.i_nav>li>a::after{
		content: '';
		position: absolute;
		top: 0%;
		left: 50%;
		transform: translate(-50%,0) skewX(-15deg);
		width: 140%;
		height: 100%;
		background: linear-gradient(to top,rgba(250,165,17,1),rgba(250,165,17,0));
		/* background: linear-gradient(to top,rgba(30,88,189,1),rgba(193,39,45,0)); */
		transition: all 0.3s ease;
		z-index: -1;
		opacity: 0;
	}
	.i_nav>.current-menu-item>a,
	.i_nav>.current-category-ancestor>a,
	.i_nav>.current-post-ancestor>a,
	.i_nav>.current-menu-ancestor>a,
	.i_nav>.current-menu-parent>a,
	.i_nav>li:hover>a,
	.i_nav .curr>a {
		color: #fff !important;
	}
	.i_nav>.current-menu-item>a::after,
	.i_nav>.current-category-ancestor>a::after,
	.i_nav>.current-post-ancestor>a::after,
	.i_nav>.current-menu-ancestor>a::after,
	.i_nav>.current-menu-parent>a::after,
	.i_nav>li:hover>a::after,
	.i_nav .curr>a::after{
		opacity: 1;
	}
	.i_nav .sub-menu {
		display: none;
		position: absolute;
		left: -35%;
		border-top: 2px solid var(--i_color);
		background: rgb(255 255 255 / 100%);
		min-width: 1.88rem;
		/* overflow: hidden; */
	}
	.i_nav .sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu li::before,
	.i_nav .sub-menu li::after {
		content: '';
		position: absolute;
		bottom: 0;
		height: 1px;
	}
	.i_nav .sub-menu li::before {
		left: 0;
		width: 100%;
		background: rgb(0 0 0 / 8%);
	}
	.i_nav .sub-menu li::after {
		right: 0;
		width: 0;
		background: var(--i_color);
	}
	.i_nav .sub-menu>li>a {
		display: block;
		padding: 0 .2rem 0 .2rem;
		font-size: 0.15rem;
		color: #222;
		line-height: 0.44rem;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: relative;
		left: 0;
	}
	.i_nav .sub-menu>li>a::before {
		content: "\f324";
		font-family: "Font Awesome 5 Pro";
		font-weight: 300;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
		left: -.16rem;
		font-size: 0.14rem;
		color: var(--i_color);
	}
	.i_nav .sub-menu>li:hover::after {
		right: initial;
		left: 0;
		width: 100%;
	}
	.i_nav .sub-menu>li:hover>a {
		left: .14rem;
	}
	.i_nav .sub-menu>li:hover>a {
		color: var(--i_color);
	}
	.i_nav .sub-menu>li:hover>a::before {
		left: 0;
	}
	.i_nav .sub-menu>li,
	.i_nav .sub-menu>li::after,
	.i_nav .sub-menu>li>a,
	.i_nav .sub-menu>li>a::before {
		-webkit-transition: all .5s ease;
		transition: all .5s ease
	}
    .i_nav .sub-menu .sub-menu{
		position: absolute;
		top: -2px;
		left: 101%;
	}
}
@media screen and (max-width:1440px) {
	.i_nav>li {
		margin: 0 .2rem;
	}
	.i_nav>li>a {
		font-size: .16rem;
	}
}
@media screen and (max-width:1366px) {
	.i_nav>li {
		margin: 0 .16rem;
	}
	.i_nav>li>a {
		font-size: 0.15rem;
	}
}
@media screen and (max-width:1200px) {
	.i_nav>li {
		margin: 0 .14rem;
	}
	.i_nav>li>a {
		font-size: 0.14rem;
	}
}
@media screen and (max-width:1024px) {
	.i_nav {
		display: none;
		position: fixed;
		top: var(--header_height);
		left: 0;
		width: 100%;
		width: 100vw;
		max-height: calc(100vh - var(--header_height));
		background: #FFF;
		overflow-y: auto;
		z-index: 2
	}
	/*滚动条*/
	.i_nav::-webkit-scrollbar {
		width: 3px;
		height: 8px
	}
	.i_nav::-webkit-scrollbar-thumb {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		background: #555
	}
	.i_nav::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		border-radius: 0;
		background: #F1F1F1
	}
	.i_nav>li {
		margin: 0 0 !important;
		border-bottom: 1px solid var(--border_color);
		position: relative
	}
	.i_nav>.menu-item-has-children i {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: .44rem;
		height: .44rem;
		background: #F1F1F1;
	}
	.i_nav>.menu-item-has-children i::before {
		content: '\f107';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 0.26rem;
		color: #222;
	}
	.i_nav>.menu-item-has-children i.on::before {
		content: '\f106';
	}
	.i_nav>li>a {
		padding: 0 .2rem;
		font-size: .15rem;
		color: #222;
		line-height: .44rem;
		text-transform: uppercase;
	}
	.i_nav>li>.sub-menu {
		display: none
	}
	.i_nav>li>.sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu a {
		padding: 0 .4rem;
		font-size: .14rem;
		color: #555;
		line-height: .4rem;
		position: relative
	}
	.i_nav .sub-menu li:not(:last-child) {
		border-bottom: 1px solid var(--border_color)
	}
	.i_nav>li>.sub-menu b {
		position: absolute;
		top: 0;
		right: 0;
		width: .4rem;
		height: .4rem;
		background: url(../fonts/arrow_down_hollow_hei.svg) no-repeat center;
		background-size: .16rem;
	}
	.i_nav>li>.sub-menu b.on {
		background: url(../fonts/arrow_up_hollow_hei.svg) no-repeat center;
		background-size: .16rem;
	}
	.i_nav .sub-menu .sub-menu {
		display: none;
	}
	.i_nav .sub-menu .sub-menu a {
		padding: 0 .6rem;
		font-size: .13rem;
		color: #888;
		line-height: .36rem;
		position: relative;
	}
	.i_nav a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis
	}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
/* 移动端导航按钮 */
.nav_menu {
	/* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
	position: relative;
	width: 0.22rem;
	height: 0.15rem;
	display: none;
	cursor: pointer
}
.nav_menu i {
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	background: #fff;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before {
	top: 0;
}
.nav_menu::after {
	bottom: 0;
}
.nav_menu.on i {
	opacity: 0
}
.nav_menu.on::before {
	transform: rotate(45deg);
	top: 50%;
	margin-top: -1px
}
.nav_menu.on::after {
	transform: rotate(-45deg);
	top: 50%;
	margin-top: -1px
}
@media screen and (max-width:1024px) {
	.nav_menu {
		display: block !important
	}
}
.top_r {
	--size: .22rem
}
.top_r {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: var(--header_height)
}
.top_email{
}
.top_email a{
    display: block;
	margin-right: 0.2rem;
}
.top_email a iconify-icon{
	font-size: var(--size);
	color: #333;
	transition: all 0.3s ease;
}
.top_email a iconify-icon:hover{
	color: var(--i_color);
}
.top_search_ico {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: var(--header_height);
	margin-right: 0.2rem;
	position: relative;
}
.top_search_ico i{
	display: block;
	box-sizing: border-box;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.top_search_ico::after{
	content: '';
	position: absolute;
	top: 50%;
	right: -0.2rem;
	transform: translate(0,-50%);
	width: 0.01rem;
	height: 0.2rem;
	background-color: rgba(255,255,255,0.2);
}
.top_search_ico iconify-icon {
	font-size: var(--size);
	cursor: pointer;
	color: #fff;
	transition: all 0.3s ease;
}
.top_search_ico.on iconify-icon {
	color: var(--i_color2);
}
.top_language {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: var(--header_height);
	position: relative;
}
.top_language_all{
   display: inline-block;
   height: 0.46rem;
   display: flex;
   display: -webkit-flex;
   align-items: center;
   box-sizing: border-box;
   padding: 0 0.2rem;
   cursor: pointer;
}
.top_language_all p{
   font-size: 0.18rem;
   color: #fff;
   margin-right: 0.05rem;
   transition: all 0.3s ease;
   font-family: 'Roboto';
}
.top_language_all iconify-icon{
	font-size: var(--size);
	cursor: pointer;
	color: #fff;
	line-height: 100%;
	transition: all 0.3s ease;
}
.lan_park{
	font-size: 0.14rem !important;
}
.top_language.on p{
	color: var(--i_color2);
}
.top_language.on iconify-icon {
	color: var(--i_color2);
}
.language_list{
	opacity: 0;
	visibility: hidden;
	position: absolute;top: calc(var(--header_height) + .2rem);right: 0;
	background: #FFF;
	min-width: 1.2rem;
	z-index: 2016;
	box-shadow: 0 0 .1rem rgb(0 0 0 / 10%);
	-webkit-transition:all .4s ease; transition:all .4s ease;
	padding: .16rem .2rem;
}
.language_list.on{
	opacity: 1;
	visibility: visible;
	top: var(--header_height);
}
.language_list dt>h6{margin-bottom: 0.08rem; font-size: 0.17rem;font-weight: bold;white-space: nowrap;}
.curr_lang{margin-bottom: 0.12rem;padding-bottom: 0.12rem;border-bottom: 1px solid #EEE;}
.lang_list a{display: block; padding: .06rem 0;}
.lang_list span img{display: none;}
.lang_list .trp-ls-language-name{padding-left: 0.3rem; font-size: 14px;position: relative;}
.lang_list .trp-ls-language-name::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);left: 0;width: 0.18rem;height: 0.18rem;box-sizing: border-box;border: 1px solid #AAA;-webkit-border-radius:50%; border-radius:50%;}
.lang_list .trp-ls-language-name::after{display: none; content: '';position:absolute; top:50%; transform:translate(0,-50%);left: 0.06rem;width: 0.06rem;height: 0.06rem;background: var(--i_color);-webkit-border-radius:50%; border-radius:50%;}
.lang_list li:hover .trp-ls-language-name::after,
.curr_lang .trp-ls-language-name::after{display: block;}
.lang_list li:hover .trp-ls-language-name,
.curr_lang .trp-ls-language-name{color: var(--i_color);}
@media screen and (max-width:1600px) {
	.top_language_all p{
		font-size: 0.16rem;
	}
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:768px) {
}
.top_language,
.top_language>iconify-icon {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}
@media screen and (max-width:1024px) {
	.top_language {
		margin-left:  .2rem;
	}
	.top_language_all{
		height: 0.4rem
	}
	.top_r {
		--size: .18rem
	}
	.top_language_all p {
		font-size: 0.16rem;
	}
}
@media screen and (max-width:768px) {
	.top_language_all{
		height: 0.35rem
	}
}
@media screen and (max-width:560px) {}
header,
.top_cont,
.logo,
.logo img,
.i_nav>li,
.i_nav>li>a,
.top_r {
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	-ms-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease
}
/* search main */
.top_search {
	--search_height: .38rem
}
.top_search {
	position: fixed;
	top: -1rem;
	left: 0;
	width: 100%;
	padding: .16rem 0;
	background: #FFF;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 2000;
	opacity: 0;
}
.top_search.on {
	top: var(--header_height);
	box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
	opacity: 1;
}
.top_search form {
	width: 80%;
	margin: 0 auto;
	max-width: 5rem;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	overflow: hidden;
}
.top_search_ipt {
	width: calc(100% - var(--search_height));
	height: var(--search_height);
	box-sizing: border-box;
	padding: 0 0 0 .12rem;
	border-radius: 0;
}
.top_search_btn {
	font-size: 0;
	width: calc(var(--search_height));
	height: var(--search_height);
	background: var(--i_color) url(../images/search.svg) no-repeat center;
	background-size: .2rem;
	cursor: pointer;
	border-radius: 0;
}
@media screen and (max-width:1366px) {
	.top_search_ico {
		margin-right: 0.3rem;
	}
}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.top_r {
		margin-left: auto;
	}
	.top_search_ico {
		margin-right: 0;
	}
}
@media screen and (max-width:768px) {
	.top_search {
		--search_height: .34rem
	}
	.top_search {
		padding: .12rem 0;
	}
}
@media screen and (max-width:560px) {
	.top_search form {
		width: 94%;
	}
	.top_search_btn {}
}
/* 导航下拉 */
/* products */
@media screen and (min-width:1025px) {
    .xiala{
		position: fixed;
		top: var(--header_height);
		left: 50%;
		transform: translate(-50%,0);
		width: 100%;
		background-color: rgba(255, 255, 255, 1);
		box-sizing: border-box;
		padding:0.4rem 0;
		transition: top 0.3s ease;
		display: none;
		border-top: 1px solid rgba(51,51,51,0.2);
		box-shadow: 0 0.04rem 0.1rem rgba(0, 0, 0, .1);
	}
	.TopHeader .xiala{
	}
    .products_drop_ul{
        display: flex;
		display: -webkit-flex;
		flex-wrap: wrap;
		gap: 0.4rem 0.2rem;
	}
	.products_drop_ul li{
        width: calc((100% - 1rem) / 6);
	}
	.products_drop_ul li a{
		display: block;
		width: 100%;
		display: flex;
		display: -webkit-flex;
		align-items: center;
	}
	.products_drop_img{
        position: relative;
		overflow: hidden;
		width: 32.2%;
		background: linear-gradient(45deg,rgba(244,244,244,1),rgba(244,244,244,0.23),rgba(244,244,244,1));
		border-radius: 0.08rem;
		border: 1px solid transparent;
		transition: all 0.3s ease;
	}
	.products_drop_img::after{
        content: '';
		display: block;
		padding-bottom: 100%;
	}
	.products_drop_img img{
        position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.products_drop_ul li p{
		width: 67.8%;
		font-size: 0.16rem;
		color: #222;
		text-transform: capitalize;
		transition: all 0.3s ease;
		box-sizing: border-box;
		padding-left: 0.2rem;
	}
	.products_drop_ul li a:hover .products_drop_img{
		border: 1px solid var(--i_color);
	}
	.products_drop_ul li a:hover p{
		color: var(--i_color);
	}
    .products_nav ul,
	.applications_nav ul,
	.news_nav ul{
		display: none !important;
	}
    .applications_drop,.news_drop{
       box-sizing: border-box;
	   padding: 0.25rem 0 0 0;
	}
    .applications_drop_ul{
       display: flex;
	   display: -webkit-flex;
	   justify-content: center;
	   flex-wrap: wrap;
	   gap: 0rem 4%;
	}
	.applications_ul li{
	}
	.applications_drop_ul li a{
       display: block;
	   width: 100%;
	   font-size: 0.16rem;
	   color: #333;
	   text-transform: capitalize;
	   transition: all 0.3s ease;
	   position: relative;
	   box-sizing: border-box;
	   padding-bottom: 0.25rem;
	}
	.applications_drop_ul li a::after{
       content: '';
	   position: absolute;
	   bottom: 0;
	   right: 0;
	   width: 0;
	   height: 0.03rem;
	   background-color: var(--i_color);
	   transition: all 0.3s ease;
	}
	.applications_drop_ul li a:hover{
		color: var(--i_color);
	}
	.applications_drop_ul li a:hover::after{
		width: 100%;
		right: auto;
		left: 0;
	}
	@media screen and (max-width:1880px){
	}
	@media screen and (max-width:1600px){
		.products_drop_ul li{
			width: calc((100% - 0.8rem) / 5);
		}
		.products_drop_ul li p {
			font-size: 0.14rem;
			margin-top: 0.15rem;
		}
	}
	@media screen and (max-width:1440px){
	}
	@media screen and (max-width:1366px){
	}
	@media screen and (max-width:1200px){
		.applications_drop_ul li a{
			font-size: 0.14rem;
		}
	}
}
@media screen and (max-width:1024px) {
	.xiala{display: none;}
}
.top_phone{
   display: inline-block;
   box-sizing: border-box;
   padding: 0 0.4rem;
   background-color: var(--i_color2);
}
.top_phone a{
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: var(--header_height);
}
.top_phone a iconify-icon{
   font-size: 0.24rem;
   color: var(--i_color);
}
.top_phone a p{
   font-size: 0.2rem;
   color: #fff;
   font-weight: bold;
   margin-left: 0.1rem;
}
@media screen and (max-width:1440px){
	.top_phone a iconify-icon{
		font-size: 0.22rem;
	}
	.top_phone a p{
		font-size: 0.18rem;
	}
	.top_phone{
		padding: 0 0.35rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.top_phone a iconify-icon{
		font-size: 0.2rem;
	}
	.top_phone a p{
		font-size: 0.16rem;
	}
	.top_phone{
		padding: 0 0.3rem;
	}
}
@media screen and (max-width:1024px){
	.top_phone{margin-left: 0.2rem;}
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
}
@media screen and (max-width:560px){
}
@media screen and (max-width:425px){
}
/* banner */
.banner {
	position: relative;
}
.banner .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
.banner .swiper-wrapper {
	display: flex;
	position: relative;
	width: 100%;
	z-index: 1
}
.banner .swiper-slide {
	height: 0;
	padding-bottom: 45.99%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-shrink: 0;
	position: relative;
	overflow: hidden
}
.banner .swiper-slide>img,.banner .swiper-slide video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}
.banner-button-prev,
.banner-button-next {
	position: absolute;
	top: 48%;
	transform: translate(0, -50%);
	width: .5rem;
	height: .5rem;
	background: rgb(0 0 0 / 30%);
	z-index: 999;
	outline: none;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	-webkit-border-radius: .05rem;
	border-radius: .05rem;
	overflow: hidden;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}
.banner-button-prev {
	left: -.6rem;
}
.banner-button-next {
	right: -.6rem;
}
.banner-button-prev i,
.banner-button-next i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.24rem;
	color: #FFF;
}
.banner:hover .banner-button-prev {
	left: .3rem
}
.banner:hover .banner-button-next {
	right: .3rem
}
.banner-button-prev:hover,
.banner-button-next:hover {
	background-color: var(--i_color)
}
.banner-pagination {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: 6%;
	cursor: pointer;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	z-index: 3;
}
.banner-pagination .swiper-pagination-bullet {
	display: block;
	width: 0.7rem;
	height: 0.02rem;
	margin: 0 .05rem;
	background: rgb(255 255 255 / 40%);
	position: relative;
	outline: none
}
.banner-pagination .swiper-pagination-bullet-active::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--i_color);
}
@media screen and (max-width:1024px) {
	.banner-button-prev,
	.banner-button-next {
		display: none
	}
	.banner-pagination .swiper-pagination-bullet {
		width: 0.6rem;
	}
}
@media screen and (max-width:768px) {
	.banner-pagination {
		bottom: 0.3rem;
	}
	.banner-pagination .swiper-pagination-bullet {
		width: 0.5rem;
	}
}
@media screen and (max-width:560px) {
	.banner-pagination {
		bottom: 0.2rem;
	}
	.banner-pagination .swiper-pagination-bullet {
		width: 0.4rem;
	}
}
/* banner 文字 */
.banner_text1{
   position: absolute;
   top: 40%;
   left: 50%;
   transform: translate(-50%,-50%);
}
.banner_text1 h3{
   font-size: 0.54rem;
   line-height: 122%;
   font-weight: bold;
   color: #fff;
   text-transform: capitalize;
}
.banner_text1 h4{
   font-size: 0.24rem;
   line-height: 141%;
   color: #fff;
   text-transform: capitalize;
   margin: 0.2rem 0 0.4rem 0;
}
.banner_text3{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.banner_text3_box{
    margin-left: auto;
	width: 42%;
}
.banner_text3_box h3{
	font-size: 0.54rem;
    line-height: 122%;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
	margin-bottom: 0.4rem;
}
@media screen and (max-width:1440px){
	.banner_text1 h3,
	.banner_text3_box h3 {
		font-size: 0.5rem;
	}
	.banner_text1 h4 {
		font-size: 0.2rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.banner_text1 h3,
	.banner_text3_box h3 {
		font-size: 0.45rem;
	}
	.banner_text1 h4 {
		font-size: 0.18rem;
		margin: 0.15rem 0 0.3rem 0;
	}
	.banner_text3_box{
		width: 50%;
	}
}
@media screen and (max-width:1024px){
	.banner_text1 h3,
	.banner_text3_box h3 {
		font-size: 0.4rem;
	}
	.banner_text1 h4 {
		font-size: 0.16rem;
		margin: 0.1rem 0 0.2rem 0;
	}
}
@media screen and (max-width:960px){
	.banner_text1 h3,
	.banner_text3_box h3 {
		font-size: 0.35rem;
	}
	.banner_text1 h4 {
		font-size: 0.14rem;
	}
}
@media screen and (max-width:767px){
	.banner_text1 h3,
	.banner_text3_box h3 {
		font-size: 0.3rem;
		margin-bottom: 0.2rem;
	}
	.banner_text1 h4{
		display: none;
	}
	.banner_text1 {
		top: 45%;
	}
	.banner_text3_box{
		width: 100%;
		margin-left: unset;
	}
}
@media screen and (max-width:560px){
	.banner_text1 h3,
	.banner_text3_box h3 {
		font-size: 0.22rem;
	}
	.banner_text1 h3 br,
	.banner_text3_box h3 br{display: none;}
}
@media screen and (max-width:425px){
	.banner_text1 h3,
	.banner_text3_box h3 {
		font-size: 0.18rem;
	}
}
.home_btn{
}
.home_btn a{
   background-color: var(--i_color);
   display: inline-block;
   box-sizing: border-box;
   padding: 0.16rem 0.4rem 0.16rem 0.2rem;
   clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
   transition: all 0.3s ease;
}
.home_btn_flex{
   display: flex;
   display: -webkit-flex;
   gap: 0.1rem;
   align-items: center;
}
.home_btn_flex p{
   font-size: 0.18rem;
   color: #fff;
   line-height: 100%;
   text-transform: capitalize;
   transition: all 0.3s ease;
}
.home_btn_flex iconify-icon{
   font-size: 0.2rem;
   color: #fff;
   transition: all 0.3s ease;
}
.home_btn a:hover{
	/*background-color: #333;*/
	background-color: #c1272d;
	color: #fff;
	transform: translateY(-0.05rem);
}
.home_btn a:hover p,
.home_btn a:hover iconify-icon{
	/*color: var(--i_color);*/
	color: #fff;
}
.home_btn_white a{
	background-color: #fff;
}
.home_btn_white a p,
.home_btn_white a iconify-icon{
	color: var(--i_color);
}
@media screen and (max-width:1440px){
	.home_btn a{
		padding: 0.12rem 0.35rem 0.12rem 0.15rem;
	}
	.home_btn_flex p{
		font-size: 0.18rem;
	}
	.home_btn_flex iconify-icon{
		font-size: 0.18rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.home_btn a{
		padding: 0.12rem 0.3rem 0.12rem 0.15rem;
	}
	.home_btn_flex p{
		font-size: 0.16rem;
	}
	.home_btn_flex iconify-icon{
		font-size: 0.16rem;
	}
	.home_btn_flex {
		gap: 0.1rem;
	}
}
@media screen and (max-width:1024px){
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
	.home_btn a{
		padding: 0.15rem 0.4rem 0.15rem 0.2rem;
	}
	.home_btn_flex p{
		font-size: 0.22rem;
	}
	.home_btn_flex iconify-icon{
		font-size: 0.22rem;
	}
	.home_btn_flex {
		gap: 0.05rem;
	}
}
@media screen and (max-width:560px){
}
@media screen and (max-width:425px){
}
/* category */
.category_bac{
   background: url('../images/category_bac.webp') center no-repeat;
   background-size: cover;
   box-sizing: border-box;
   padding: 0.8rem 0;
}
.category{
}
.category_box{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	margin-top: 0.5rem;
	align-items: center;
}
.category_left{
   width: 35.5%;
   box-sizing: border-box;
   padding-right: 4%;
}
.category_left h3{
	font-size: 0.2rem;
	line-height: 200%;
	color: #222;
}
.category_right{
	width: 64.5%;
}
/*  */
.cate_partner_box{}
.cate_partner{position:relative}
.cate_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.cate_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.cate_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
}
.cate_partner_list li a{
	display: block;
	width: 100%;
}
.cate_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden}
.cate_partner_list .img:before{content:""; display:block; padding-bottom:100%}
.cate_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}
.cate_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}
.cate_partner_list p{
	font-size: 0.2rem;
	color: #333;
	font-weight: bold;
	text-transform: capitalize;
	text-align: center;
	background-color: #fff;
	padding: 0.18rem 4%;
	transition: all 0.3s ease;
}
.cate_partner_list li a:hover p{
	background-color: var(--i_color);
	color: #fff;
}
/* 指示器 */
.cate_partner .pt-pagination{display:none; text-align:center; margin:0.4rem auto 0}
.cate_partner .pt-pagination .swiper-pagination-bullet{width:0.08rem; height:0.08rem;cursor: pointer; display:inline-block; margin:0 0.05rem;border: 0.02rem solid var(--i_color); background:var(--i_color); border-radius:0%; outline:none}
.cate_partner .pt-pagination .swiper-pagination-bullet-active{position:relative; background:transparent}
/* 左右箭头 */
.category_pt{
	display: flex;
	display: -webkit-flex;
	gap: 0.2rem;
	margin-top: 0.4rem;
}
.category_box .pt-button-prev, .category_box .pt-button-next{
	width:0.5rem; 
	height:0.5rem; 
	border: 1px solid #333;
	box-sizing: border-box;
	z-index:999; 
	cursor:pointer; 
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.category_box .pt-button-prev iconify-icon, .category_box .pt-button-next iconify-icon{
	font-size: 0.26rem;
	color: #333;
	transition: all 0.3s ease;
}
.category_box .pt-button-prev:hover, .category_box .pt-button-next:hover{
	background-color: var(--i_color);
	border: 1px solid var(--i_color);
}
.category_box .pt-button-prev:hover iconify-icon, .category_box .pt-button-next:hover iconify-icon{
	color: #fff;
}
@media screen and (max-width:1440px){
	.category_left h3 {
		font-size: 0.18rem;
	}
	.cate_partner_list p {
		font-size: 0.18rem;
		padding: 0.15rem 4%;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.cate_partner .pt-button-prev, .cate_partner .pt-button-next{display:none}
	.cate_partner .pt-pagination{display:block}
	.category_left h3 {
		font-size: 0.16rem;
	}
	.category_bac {
		padding: 0.6rem 0;
	}
	.cate_partner_list p {
		font-size: 0.16rem;
		padding: 0.12rem 4%;
	}
}
@media screen and (max-width:959px){
	.category_pt{
		display: none;
	}
	.cate_partner_list p {
		font-size: 0.14rem;
	}
}
@media screen and (max-width:767px){
	.category_left h3 {
		font-size: 0.14rem;
	}
	.category_left{
		width: 100%;
	}
	.category_right{
		width: 100%;
		margin-top: 0.4rem;
	}
	.category_box {
		margin-top: 0.4rem;
	}
}
@media screen and (max-width:560px){
	.category_box {
		margin-top: 0.2rem;
	}
	.category_right {
        margin-top: 0.2rem;
    }
}
.title{
   display: flex;
   display: -webkit-flex;
} 
.title i{
   display: block;
   width: 0.24rem;
   height: 0.32rem;
   background: url('../images/title_i1.png') center no-repeat;
   background-size: contain;
   margin-top: 0.06rem;
}
.title_text{
   width: calc(100% - 0.24rem);
   box-sizing: border-box;
   padding-left: 0.1rem;
}
.title_text p{
   font-size: 0.44rem;
   color: #222;
   line-height: 100%;
   text-transform: capitalize;
   position: relative;
   box-sizing: border-box;
   padding-bottom: 0.25rem;
   font-weight: bold;
}
.title_text p span{
	font-size: 0.44rem;
	text-transform: capitalize;
	color: var(--i_color4);
	font-weight: bold;
} 
.title_text p::after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 87.5%;
	height: 0.02rem;
	background-color: rgba(0, 0, 0, 0.2);
}
.title_text p::before{
	content: '';
	position: absolute;
	bottom: 0.08rem;
	left: 0;
	width: 27.5%;
	height: 0.02rem;
	background-color: var(--i_color);
}
.title_white{
}
.title_white i{
	background: url('../images/title_i2.png') center no-repeat;
	background-size: contain;
}
.title_white p{
	color: #fff;
}
.title_white p::after{
   background-color: rgba(255,255,255,0.2);
}
.title_white p::before{
   background-color: #fff;
}
@media screen and (max-width:1440px){
	.title_text p,
	.title_text p span{
		font-size: 0.4rem;
	}
	.title i{
		background-size: 0.2rem;
		margin-top: 0rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.title_text p,
	.title_text p span{
		font-size: 0.35rem;
	}
	.title i{
		background-size: 0.18rem;
	}
}
@media screen and (max-width:1024px){
	.title_text p,
	.title_text p span{
		font-size: 0.3rem;
	}
}
@media screen and (max-width:960px){
	.title_text p,
	.title_text p span{
		font-size: 0.28rem;
	}
}
@media screen and (max-width:767px){
	.title_text p,
	.title_text p span{
		font-size: 0.26rem;
	}
	.title i{
		background-size: 0.16rem;
	}
}
@media screen and (max-width:560px){
	.title_text p,
	.title_text p span{
		font-size: 0.24rem;
	}
}
@media screen and (max-width:425px){
	.title_text p,
	.title_text p span{
		font-size: 0.22rem;
	}
}
/* popular_products */
.popular_products_bac{
	box-sizing: border-box;
	padding-top: 0.8rem;
	background-color: #333;
}
.popular_products{
}
.popular_products_box{
}
.popular_products_box h3{
   font-size: 0.2rem;
   line-height: 200%;
   color: #fff;
   text-transform: capitalize;
   margin: 0.3rem 0 0.8rem 0;
}
.popular_products_ul{
   display: flex;
   display: -webkit-flex;
   gap: 1.2rem;
   justify-content: center;
   width: 100%;
}
.popular_products_ul li{
   font-size: 0.24rem;
   color: #fff;
   box-sizing: border-box;
   text-transform: capitalize;
   padding-bottom: 0.2rem;
   position: relative;
   transition: all 0.3s ease;
   cursor: pointer;
}
.popular_products_ul li::after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 0.03rem;
	background-color: var(--i_color4);
	transition: all 0.3s ease;
}
.popular_products_ul li:hover::after,
.popular_products_ul li.current::after{
	width: 100% !important;
	left: 0 !important;
	right: unset !important;
}
.popular_products_ul li:hover,
.popular_products_ul li.current{
	color: var(--i_color4) !important;
}
.popular_products_dl{
   margin-top: 0.4rem;
}
.popular_products_dl dt{
}
.popular_products_list{
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   gap: 0.25rem;
}
.popular_products_list li{
   width: calc((100% - 0.75rem) / 4);
}
.popular_products_list li a{
   display: block;
   width: 100%;
}
.popular_products_img{
   position: relative;
   overflow: hidden;
}
.popular_products_img::after{
   content: '';
   display: block;
   padding-bottom: 100%;
}
.popular_products_img img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.3s ease;
}
.popular_products_text{
   background-color: #F4F4F4;
   box-sizing: border-box;
   padding: 0.25rem 0.3rem;
   display: flex;
   display: -webkit-flex;
   align-items: center;
   transition: all 0.3s ease;
}
.popular_products_text p{
   width: calc(100% - 0.22rem);
   box-sizing: border-box;
   padding-right: 0.2rem;
   font-size: 0.2rem;
   color: #333;
   text-align: center;
   line-height: 100%;
   transition: all 0.3s ease;
   overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}
.popular_products_text iconify-icon{
   font-size: 0.22rem;
   color: #333;
   transition: all 0.3s ease;
}
.popular_products_list li a:hover img{
	width: 110%;
	height: 110%;
}
.popular_products_list li a:hover .popular_products_text{
   background-color: var(--i_color);
}
.popular_products_list li a:hover p{
	color: #fff;
}
.popular_products_list li a:hover iconify-icon{
	color: #fff;
}
@media screen and (max-width:1440px){
	.popular_products_ul{
		gap: 0.8rem;
	}
	.popular_products_box h3 {
		font-size: 0.18rem;
		margin: 0.2rem 0 0.6rem 0;
	}
	.popular_products_ul li {
		font-size: 0.22rem;
	}
	.popular_products_text p {
		font-size: 0.18rem;
	}
	.popular_products_list {
		gap: 0.2rem;
	}
	.popular_products_list li {
		width: calc((100% - 0.6rem) / 4);
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.popular_products_ul{
		gap: 0.6rem;
	}
	.popular_products_box h3 {
		font-size: 0.16rem;
		margin: 0.2rem 0 0.4rem 0;
	}
	.popular_products_ul li {
		font-size: 0.2rem;
	}
	.popular_products_text {
		padding: 0.2rem 0.25rem;
	}
	.popular_products_text p {
		font-size: 0.16rem;
	}
	.popular_products_list {
		gap: 0.2rem 0.1rem;
	}
	.popular_products_list li {
		width: calc((100% - 0.3rem) / 4);
	}
	.popular_products_bac {
		padding-top: 0.6rem;
	}
}
@media screen and (max-width:1024px){
	.popular_products_ul li {
		font-size: 0.18rem;
	}
	.popular_products_ul{
		gap: 0.4rem;
	}
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
	.popular_products_box h3 {
		font-size: 0.14rem;
	}
	.popular_products_ul li {
		font-size: 0.16rem;
	}
	.popular_products_text p {
		font-size: 0.14rem;
	}
	.popular_products_list li {
		width: calc((100% - 0.1rem) / 2);
	}
}
@media screen and (max-width:560px){
	.popular_products_ul li {
		font-size: 0.14rem;
	} 
	.popular_products_ul{
        gap: 0.1rem;
		flex-wrap: wrap;
		padding-bottom: 0.1rem;
	}
	.popular_products_ul li{
		text-align: center;
		padding: 0.1rem;
		border: 1px solid #fff;
	}
	.popular_products_ul li::after {
		height: 1px;
	}
	.popular_products_text {
        padding: 0.15rem 0.2rem;
    }
	.popular_products_dl {
		margin-top: 0.2rem;
	}
	.popular_products_ul li:hover, .popular_products_ul li.current {
		border: 1px solid var(--i_color4) !important;
	}
}
@media screen and (max-width:425px){
	.popular_products_text {
        padding: 0.12rem 0.2rem;
    }
}
/* company_profile */
.company_profile_bac{
   background: url('../images/company_profile_bac.webp') center no-repeat;
   background-size: cover;
   box-sizing: border-box;
   padding: 1rem 0;
}
.company_profile{
}
.company_profile_box{
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   margin-top: 0.4rem;
}
.company_profile_left{
   width: 52%;
   position: relative;
   border-right: 0.02rem solid rgba(250,165,17,0.4);
   box-sizing: border-box;
   display: flex;
   display: -webkit-flex;
   flex-direction: column;
   justify-content: center;
}
.company_profile_left::after{
	content: '';
	position: absolute;
    top: 0;
	right: -0.09rem;
	width: 0.16rem;
	height: 0.16rem;
	background-color: var(--i_color);
	border-radius: 50%;
}
.company_profile_left::before{
	content: '';
	position: absolute;
	top: 0;
	right: -0.02rem;
	width: 0.02rem;
	height: 40%;
	background-color: var(--i_color);
}
.company_profile_left h3{
   font-size: 1.4rem;
   color: var(--i_color);
   line-height: 100%;
   text-transform: uppercase;
   margin-bottom: 0.6rem;
}
.company_profile_text{
   display: flex;
   display: -webkit-flex;
   gap: 0.2rem;
   align-items: flex-end;
}
.company_profile_text h4{
   font-size: 1.6rem;
   color: var(--i_color);
   font-weight: 900;
   line-height: 80%;
}
.company_profile_right{
   width: 48%;
   box-sizing: border-box;
   padding-left: 4.5%;
   padding-top: 0.4rem;
   padding-bottom: 0.4rem;
}
.company_profile_right h5{
   font-size: 0.32rem;
   color: #222;
   font-weight: bold;
   line-height: 111%;
   margin-bottom: 0.2rem;
}
.company_profile_right h6{
   font-size: 0.2rem;
   color: #222;
   line-height: 0.4rem;
   height: 3.6rem;
   box-sizing: border-box;
   padding-right: 2%;
   overflow: auto;
}
/*滚动条*/
.company_profile_right h6::-webkit-scrollbar{width:1px; height:1px}
.company_profile_right h6::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); background:var(--i_color)}
.company_profile_right h6::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); border-radius:0; background:#F1F1F1}
.company_profile_ul{
   border: 1px solid rgba(255,255,255,0.5);
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   box-sizing: border-box;
   margin-top: 0.7rem;
   background: rgba(255,255,255,0.1);
}
.company_profile_ul li{
   width: calc(100% / 3);
   display: flex;
   display: -webkit-flex;
   flex-direction: column;
   align-items: center;
   box-sizing: border-box;
   padding: 0.6rem 2%;
   position: relative;
   z-index: 2;
}
.company_profile_ul li::after{
	content: '';
	position: absolute;
	width: 50%;
	height: 50%;
	top: 50%;
	left: 50%;
	background-color: #0657D0;
	transform: translate(-50%,-50%) scale(0.5);
	opacity: 0;
	transition: all 0.5s ease;
	z-index: -1;
}
.company_profile_ul li:not(:last-child){
	border-right: 1px solid rgba(255,255,255,0.5);
}
.company_profile_i{
	position: relative;
}
.company_profile_ul li img{
   width: 1.2rem;
   height: 1.2rem;
   object-fit: contain;
   transition: all 0.3s ease;
}
.company_profile_i2{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    opacity: 0;
	transition: all 0.3s ease;
}
.company_profile_ul li h3{
   font-size: 0.24rem;
   color: #fff;
   text-align: center;
   text-transform: capitalize;
   margin: 0.2rem 0;
} 
.company_profile_ul li h4{
   font-size: 0.2rem;
   color: #fff;
   line-height: 200%;
   text-align: center;
}
.company_profile_ul li:hover::after{
	opacity: 1;
	transform: translate(-50%,-50%) scale(1);
	width: 100%;
	height: 100%;
}
.company_profile_ul li:hover .company_profile_i1{
	opacity: 0;
}
.company_profile_ul li:hover .company_profile_i2{
	opacity: 1;
}
.company_profile_ul li:hover h3,
.company_profile_ul li:hover h4{
	color: #fff !important;
}
@media screen and (max-width:1440px){
	.company_profile_left h3 {
		font-size: 1.2rem;
	}
	.company_profile_text h4 {
		font-size: 1.4rem;
	}
	.company_profile_left h3 {
		margin-bottom: 0.4rem;
	}
	.company_profile_right h5 {
		font-size: 0.3rem;
	}
	.company_profile_right h6 {
		font-size: 0.18rem;
		line-height: 0.35rem;
		height: 2rem;
	}
	.company_profile_ul li img {
		width: 1rem;
		height: 1rem;
	}
	.company_profile_ul li h3 {
		font-size: 0.22rem;
	}
	.company_profile_ul li h4 {
		font-size: 0.18rem;
	}
	.company_profile_bac{
		padding: 0.8rem 0;
	}
}
@media screen and (max-width:1366px){
	.company_profile_right h5 {
		font-size: 0.28rem;
	}
}
@media screen and (max-width:1200px){
	.company_profile_left h3 {
		font-size: 1rem;
	}
	.company_profile_text h4 {
		font-size: 1.2rem;
	}
	.company_profile_right h5 {
		font-size: 0.26rem;
	}
	.company_profile_ul {
		margin-top: 0.6rem;
	}
	.company_profile_ul li img {
		width: 0.8rem;
		height: 0.8rem;
	}
	.company_profile_ul li h3 {
		font-size: 0.2rem;
	}
	.company_profile_ul li h4 {
		font-size: 0.16rem;
	}
	.company_profile_ul li {
		padding: 0.4rem 2%;
	}
	.company_profile_bac{
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	.company_profile_left h3 {
		font-size: 0.8rem;
	}
	.company_profile_text h4 {
		font-size: 1rem;
	}
	.company_profile_right h5 {
		font-size: 0.24rem;
	}
	.company_profile_ul li img {
		width: 0.6rem;
		height: 0.6rem;
	}
}
@media screen and (max-width:960px){
	.company_profile_left h3 {
		font-size: 0.6rem;
	}
	.company_profile_text h4 {
		font-size: 0.8rem;
	}
	.company_profile_left h3 {
		margin-bottom: 0.2rem;
	}
}
@media screen and (max-width:767px){
	.company_profile_left {
		width: 100%;
	}
	.company_profile_right {
		width: 100%;
		padding-left: 0%;
	}
	.company_profile_left h3 {
		font-size: 0.4rem;
	}
	.company_profile_text h4 {
		font-size: 0.6rem;
	}
	.company_profile_right h6 {
        font-size: 0.16rem;
        line-height: 0.3rem;
        height: 1.8rem;
    }
	.company_profile_ul {
        margin-top: 0rem;
    }
	.company_profile_ul li {
        width: 100%;
    }
	.company_profile_ul li:not(:last-child){
		border-right: 0px solid rgba(255,255,255,0.5);
		border-bottom: 1px solid rgba(255,255,255,0.5);
	}
	.company_profile_ul li.company_active::after{
		opacity: 1 !important;
		transform: translate(-50%,-50%) scale(1) !important;
		width: 100% !important;
		height: 100% !important;
	}
	.company_profile_ul li.company_active .company_profile_i1{
		opacity: 0 !important;
	}
	.company_profile_ul li.company_active .company_profile_i2{
		opacity: 1 !important;
	}
}
@media screen and (max-width:560px){
}
@media screen and (max-width:425px){
}
/* purchase_process */
.purchase_process_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
}
.purchase_process{
}
.title_h3{
	font-size: 0.2rem;
    line-height: 200%;
    color: #222;
    text-transform: capitalize;
	margin-top: 0.3rem;
}
.purchase_process_ul{
   display: flex;
   display: -webkit-flex;
   gap: 0.4rem;
   margin-top: 0.4rem;
   flex-wrap: wrap;
}
.purchase_process_ul li{
   width: calc((100% - 1.6rem) / 5);
}
.purchase_process_img{
	position: relative;
}
.purchase_process_img img{
   width: 100%;
}
.purchase_process_text{
   position: absolute;
   top: 0.45rem;
   right: 0.5rem;
   display: flex;
   display: -webkit-flex;
   flex-direction: column;
   align-items: flex-end;
} 
.purchase_process_text p{
   font-size: 0.6rem;
   color: #fff;
   font-weight: bold;
   line-height: 100%;
}
.purchase_process_text span{
   font-size: 0.3rem;
   font-weight: bold;
   color: #fff;
}
.purchase_process_ul li>img{
   width: 0.8rem;
   height: 0.8rem;
   object-fit: contain;
   margin-left: auto;
   margin-right: auto;
   display: block;
   margin-top: 0.4rem;
}
.purchase_process_ul li h4{
   font-size: 0.24rem;
   color: #222;
   text-align: center;
   font-weight: bold;
   margin: 0.2rem 0;
   text-transform: capitalize;
}
.purchase_process_ul li h5{
   font-size: 0.2rem;
   color: #666;
   text-align: center;
}
@media screen and (max-width:1440px){
	.purchase_process_text p{
		font-size: 0.5rem;
	}
	.purchase_process_text span{
		font-size: 0.24rem;
	}
	.title_h3 {
		font-size: 0.18rem;
	}
	.purchase_process_ul li>img {
		width: 0.6rem;
		height: 0.6rem;
	}
	.purchase_process_ul li h4 {
		font-size: 0.22rem;
	}
	.purchase_process_ul li h5 {
		font-size: 0.18rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.purchase_process_text p{
		font-size: 0.4rem;
	}
	.purchase_process_text span{
		font-size: 0.22rem;
	}
	.purchase_process_ul li>img {
		width: 0.5rem;
		height: 0.5rem;
	}
	.purchase_process_ul li h4 {
		font-size: 0.2rem;
	}
	.purchase_process_ul li h5 {
		font-size: 0.16rem;
	}
	.purchase_process_ul li h4 {
		margin: 0.15rem 0;
	}
	.purchase_process_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	.purchase_process_text p{
		font-size: 0.3rem;
	}
	.purchase_process_text span{
		font-size: 0.2rem;
	}
	.title_h3 {
		font-size: 0.16rem;
	}
	.purchase_process_ul li h4 {
		font-size: 0.18rem;
	}
	.purchase_process_ul li h5 {
		font-size: 0.14rem;
	}
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
	.title_h3 {
		font-size: 0.14rem;
		margin-top: 0.2rem;
	}
	.purchase_process_ul li {
		width: calc((100% - 0.8rem) / 3);
	}
}
@media screen and (max-width:560px){
	.purchase_process_ul li {
		width: calc((100% - 0.4rem) / 2);
	}
}
@media screen and (max-width:425px){
}
/* home_contact */
.home_contact_bac{
	box-sizing: border-box;
	padding: 0.8rem 0;
    background: url('../images/home_contact.webp') center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.home_contact{
}
.home_contact h3{
   font-size: 0.42rem;
   color: #fff;
   font-weight: bold;
   margin-bottom: 0.4rem;
}
@media screen and (max-width:1440px){
	.home_contact h3{
		font-size: 0.4rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.home_contact h3{
		font-size: 0.35rem;
		margin-bottom: 0.3rem;
	}
	.home_contact_bac{
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	.home_contact h3{
		font-size: 0.3rem;
	}
}
@media screen and (max-width:960px){
	.home_contact h3{
		font-size: 0.28rem;
	}
}
@media screen and (max-width:767px){
	.home_contact h3{
		font-size: 0.26rem;
		margin-bottom: 0.2rem;
		text-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
	}
	.home_contact_bac{
		background-attachment: unset;
	}
}
@media screen and (max-width:560px){
	.home_contact h3{
		font-size: 0.24rem;
	}
}
@media screen and (max-width:425px){
}
/* home_news */
.home_news_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
}
.home_news{
}
/*  */
.news_partner_box{
	margin-top: 0.5rem;
}
.news_partner{position:relative}
.news_partner_list{width:100%; padding:0.12rem 0;box-sizing: border-box; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.news_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.news_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-wrap: wrap;
	align-items: center;
}
.news_partner_list .img{width:45.2%; box-sizing:border-box;display: block; position:relative;}
.news_partner_list .img:before{content:""; display:block; padding-bottom:64%}
.news_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}
.news_partner_list .img::after{
   content: '';
   position: absolute;
   bottom: -0.12rem;
   right: -0.12rem;
   width: 80%;
   height: 80%;
   background-color: #0657D0;
   z-index: -1;
}
.news_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}
.news_box{
   width: 54.8%;
   box-sizing: border-box;
   padding-left: 5%;
}
.news_box>a{
   font-size: 0.32rem;
   color: #222;
   font-weight: bold;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
}
.news_box h3{
   font-size: 0.18rem;
   color: #222;
   line-height: 200%;
   margin: 0.2rem 0;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
}
.news_box h4{
   font-size: 0.2rem;
   color: #666;
   margin-left: auto;
   padding-top: 0.2rem;
   border-top: 1px solid rgba(0, 0, 0, .12);
   margin-top: 0.3rem;
   display: flex;
   display: -webkit-flex;
   justify-content: flex-end;
}
/* 指示器 */
.news_partner .pt-pagination{display:none; text-align:center; margin:0.4rem auto 0}
.news_partner .pt-pagination .swiper-pagination-bullet{width:0.1rem; height:0.1rem;cursor: pointer; display:inline-block;border: 1px solid var(--i_color); margin:0 0.05rem; background:var(--i_color); border-radius:0%; outline:none}
.news_partner .pt-pagination .swiper-pagination-bullet-active{position:relative; background:transparent}
/* 左右箭头 */
.news_partner .pt-button-prev, .news_partner .pt-button-next{
	position:absolute; 
	top:50%; 
	transform:translate(0,-50%); 
	width:0.5rem; 
	height:0.5rem; 
	border: 1px solid var(--i_color);
	box-sizing: border-box;
	z-index:999; 
	cursor:pointer; 
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.news_partner .pt-button-prev iconify-icon, .news_partner .pt-button-next iconify-icon{
	font-size: 0.2rem;
	color: var(--i_color);
	transition: all 0.3s ease;
}
.news_partner .pt-button-prev{left:-5%;}
.news_partner .pt-button-next{right:-5%;}
.news_partner .pt-button-prev:hover, .news_partner .pt-button-next:hover{
	background-color: var(--i_color);
}
.news_partner .pt-button-prev:hover iconify-icon, .news_partner .pt-button-next:hover iconify-icon{
	color: #fff;
}
@media screen and (max-width:1440px){
	.news_box>a {
		font-size: 0.3rem;
	}
	.news_box h3 {
		font-size: 0.16rem;
	}
	.news_box h4 {
		font-size: 0.18rem;
	}
}
@media screen and (max-width:1366px){
	.news_box>a {
		font-size: 0.28rem;
	}
}
@media screen and (max-width:1200px){
	.news_partner .pt-button-prev, .news_partner .pt-button-next{display:none}
	.news_partner .pt-pagination{display:block}
	.news_box>a {
		font-size: 0.25rem;
	}
	.news_box h3 {
		font-size: 0.14rem;
	}
	.news_box h4 {
		font-size: 0.16rem;
	}
	.news_partner_box {
		margin-top: 0.3rem;
	}
	.home_news_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	.news_box>a {
		font-size: 0.2rem;
	}
}
@media screen and (max-width:767px){
	.news_partner_list .img {
		width: 100%;
	}
	.news_box {
		width: 100%;
		margin-top: 0.4rem;
		padding-left: 0%;
	}
	.news_partner_box {
		margin-top: 0.1rem;
	}
}
@media screen and (max-width:560px){
}
/*---------------------------- footer---------------------------- */
.footer_bac{
   background-color: rgba(0, 0, 0, 0.8);
   box-sizing: border-box;
   padding-top: 0.5rem;
}
.footer{
}
.footer_ul{
   display: flex;
   display: -webkit-flex;
   gap: 0.3rem;
   justify-content: flex-end;
   box-sizing: border-box;
   padding-bottom: 0.2rem;
   border-bottom: 2px solid rgba(255,255,255,0.2);
}
.footer_ul ul{
	display: none;
}
.footer_ul li{
}
.footer_ul li a{
   font-size: 0.2rem;
   color: #fff;
   border-bottom: 1px solid transparent;
   transition: all 0.3s ease;
   text-transform: capitalize;
}
.footer_ul li a:hover{
	color: var(--i_color);
	border-bottom: 1px solid var(--i_color);
}
.footer_box{
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   margin: 0.4rem 0 0 0;
}
.footer_left{
	width: 45.5%;
	display: flex;
	display: -webkit-flex;
	align-items: flex-start;
}
.footer_left img{
    width: 22%;
	object-fit: contain;
}
.footer_text{
   width: 78%;
   box-sizing: border-box;
   padding: 0 0.4rem 0 0.2rem;
}
.footer_text h3{
   font-size: 0.24rem;
   color: #fff;
   font-weight: bold;
   margin-bottom: 0.2rem;
} 
.footer_text h4{ 
   font-size: 0.18rem;
   color: #fff;
   line-height: 150%;
}
.footer_right{
   width: 54.5%;
   box-sizing: border-box;
   padding-left: 0.4rem;
   border-left: 1px solid rgba(255,255,255,0.2);
   display: flex;
   display: -webkit-flex;
   align-items: center;
   justify-content: space-between;
}
.footer_contact{
   display: flex;
   display: -webkit-flex;
   flex-direction: column;
   gap: 0.2rem;
}
.footer_contact li{
}
.footer_contact li a{
   font-size: 0.2rem;
   color: #fff;
   line-height: 120%;
   transition: all 0.3s ease;
}
.footer_contact li a:hover{
	color: var(--i_color);
}
.footer_dl{
   display: flex;
   display: -webkit-flex;
   gap: 0.2rem;
}
.footer_dl dt{
}
.footer_dl dt a{
   width: 0.48rem;
   height: 0.48rem;
   border-radius: 50%;
   display: block;
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
   background: rgba(158,158,158,0.15);
   transition: all 0.3s ease;
}
.footer_dl dt a iconify-icon{
   color: #9E9E9E;
   font-size: 0.2rem;
   transition: all 0.3s ease;
}
.footer_dl dt a:hover{
   background-color: rgba(250,165,17,0.16);
   transform: translateY(-0.05rem);
}
.footer_dl dt a:hover iconify-icon{
   color: var(--i_color);
}
.footer_down{
   border-top: 1px solid rgba(255,255,255,0.2);
   margin-top: 0.4rem;
   box-sizing: border-box;
   padding: 0.25rem 0;
}
.footer_down p{
   font-size: 0.14rem;
   color: #fff;
}
.footer_down p a{
	font-size: 0.14rem;
	color: #fff;
	border-bottom: 1px solid #fff;
	transition: all 0.3s ease;
}
.footer_down p a:hover{
	color: var(--i_color);
	border-bottom: 1px solid var(--i_color);
}
@media screen and (max-width:1440px){
	.footer_text h3 {
		font-size: 0.22rem;
	}
	.footer_text h4 {
		font-size: 0.16rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.footer_text h3 {
		font-size: 0.2rem;
	}
	.footer_text h4 {
		font-size: 0.14rem;
	}
	.footer_contact li a {
		font-size: 0.18rem;
	}
}
@media screen and (max-width:1024px){
	.footer_ul{display: none;}
	.footer_right{display: none;}
	.footer_left {
		width: 100%;
	}
	.footer_left img {
		width: 1.4rem;
	}
	.footer_text {
		width: calc(100% - 1.4rem);
		padding: 0 0rem 0 0.2rem;
	}
	.footer_box {
		margin:0;
	}
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
	.footer_left img {
		width: 1.2rem;
	}
	.footer_text {
		width: calc(100% - 1.2rem);
	}
	.footer_down{
		padding: 0.25rem 0 0.8rem 0;
	}
}
@media screen and (max-width:560px){
	.footer_left img {
		width: 1rem;
	}
	.footer_text {
		width: calc(100% - 1rem);
	} 
}
@media screen and (max-width:425px){
}
/* about_banner */
.banner_about{
   position: relative;
   width: 100%;
}
.banner_about::after{
   content: '';
   display: block;
   padding-bottom: 31.35%;
}
.banner_about img{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%,-50%);
}
.banner_about_text{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
}
.banner_about_text h3{
   font-size: 0.5rem;
   color: #fff;
   font-weight: bold;
   text-transform: capitalize;
   line-height: 100%;
}
.banner_about_text h4{
   font-size: 0.24rem;
   color: #fff;
   margin-top: 0.2rem;
   text-transform: capitalize;
}
@media screen and (max-width:1440px){
	.banner_about_text h3{
		font-size: 0.45rem;
	}
	.banner_about_text h4{
		font-size: 0.22rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.banner_about_text h3{
		font-size: 0.4rem;
	}
	.banner_about_text h4{
		font-size: 0.2rem;
		margin-top: 0.15rem;
	}
}
@media screen and (max-width:1024px){
	.banner_about_text h3{
		font-size: 0.35rem;
	}
	.banner_about_text h4{
		font-size: 0.18rem;
		margin-top: 0.1rem;
	}
}
@media screen and (max-width:960px){
	.banner_about_text h3{
		font-size: 0.3rem;
	}
	.banner_about_text h4{
		font-size: 0.16rem;
	}
}
@media screen and (max-width:767px){
	.banner_about_text h3{
		font-size: 0.25rem;
	}
	.banner_about_text h4{
		display: none;
	}
}
@media screen and (max-width:560px){
	.banner_about_text h3{
		font-size: 0.2rem;
	}
}
@media screen and (max-width:425px){
}
/* 当前位置 */
.in_position{padding:0.14rem 0;background-color: #fff;}
.in_position a{display:block; float:left; font-size:0.14rem; color:#333; position:relative; line-height:0.2rem; text-transform:capitalize}
.in_position a:first-child{padding-left:0.24rem; background:url(../images/home_b.svg) no-repeat left center; background-size:0.16rem}
.in_position a:not(:last-child):after{content:">"; margin:0 0.1rem; color:#333}
.in_position a:last-child{color:var(--i_color)!important}
.in_position a:hover{color:var(--i_color)}
@media screen and (max-width:959px){
    .in_position{
	  display: none;
    }
}
@media screen and (max-width:767px){
}
@media screen and (max-width:560px){
}
/* about_us */
.about_us_bac{
	box-sizing: border-box;
	padding: 0.8rem 0;
}
.about_us_i{
	display: block;
	width: 2.12rem;
	height: 0.23rem;
	background: url('../images/about_us_i.png') center no-repeat;
	background-size: contain;
}
.about_us_bac .company_profile_ul{
	background-color: rgba(6,87,208,0.1);
}
.about_us_bac .company_profile_ul li h3{
	color: #333;
}
.about_us_bac .company_profile_ul li h4 {
    color: #333;
}
@media screen and (max-width:1440px){
	.about_us_i {
		width: 1.8rem;
		height: 0.2rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.about_us_bac{
		padding: 0.6rem 0;
	}
	.about_us_i {
		width: 1.5rem;
		height: 0.15rem;
	}
}
@media screen and (max-width:1024px){
	.about_us_i {
		width: 1rem;
		height: 0.12rem;
	}
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
}
@media screen and (max-width:560px){
}
@media screen and (max-width:425px){
}
/* environment */
.environment_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
   background: url('../images/environment_bac.webp') center no-repeat;
   background-size: cover;
}
.environment{
}
.title_h3_white{
	color: #fff;
}
/*  */
.env_partner_box{
	margin-top: 0.4rem;
}
.env_partner{position:relative}
.env_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.env_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.env_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
}
.env_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden}
.env_partner_list .img:before{content:""; display:block; padding-bottom:72%}
.env_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}
.env_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}
/* 指示器 */
.env_partner .pt-pagination{display:none; text-align:center; margin:0.4rem auto 0}
.env_partner .pt-pagination .swiper-pagination-bullet{width:0.1rem; height:0.1rem;cursor: pointer; display:inline-block;border: 1px solid var(--i_color); margin:0 0.05rem; background:var(--i_color); border-radius:0%; outline:none}
.env_partner .pt-pagination .swiper-pagination-bullet-active{position:relative; background:transparent}
/* 左右箭头 */
.env_flex{
	display: flex;
	display: -webkit-flex;
	gap: 0.2rem;
	justify-content: center;
	margin-top: 0.4rem;
}
.env_partner .pt-button-prev, .env_partner .pt-button-next{
	width:0.5rem; 
	height:0.5rem; 
	border: 1px solid #fff;
	box-sizing: border-box;
	z-index:999; 
	cursor:pointer; 
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.env_partner .pt-button-prev iconify-icon, .env_partner .pt-button-next iconify-icon{
	font-size: 0.25rem;
	color: #fff;
	transition: all 0.3s ease;
}
.env_partner .pt-button-prev:hover, .env_partner .pt-button-next:hover{
	background-color: var(--i_color);
	border: 1px solid var(--i_color);
}
.env_partner .pt-button-prev:hover iconify-icon, .env_partner .pt-button-next:hover iconify-icon{
	color: #fff;
}
@media screen and (max-width:1440px){
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.env_flex{display:none}
	.env_partner .pt-pagination{display:block}
	.environment_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:959px){
}
@media screen and (max-width:767px){
}
@media screen and (max-width:560px){
}
/* frequently */
.frequently_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
}
.frequently{
}
.frequently_ul{
   margin-top: 0.4rem;
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   gap: 0.35rem;
}
.frequently_ul li{  
   background-color: #F4F4F4;
   box-sizing: border-box;
   padding: 0.3rem 0.3rem 0.4rem 0.3rem;
   display: flex;
   display: -webkit-flex;
   width: calc((100% - 0.35rem) / 2);
   transition: all 0.3s ease;
}
.frequently_ul li i{
   display: block;
   font-size: 0.2rem;
   color: #fff;
   background-color: #0657D0;
   width: 0.45rem;
   height: 0.45rem;
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
   position: relative;
}
.frequently_ul li i::after{
	content: '';
    position: absolute;
	width: 0.1rem;
	height: 0.1rem;
	background-color: #0657D0;
	bottom: 0;
	right: -0.09rem;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.frequently_text{
   width: calc(100% - 0.45rem);
   box-sizing: border-box;
   padding-left: 0.2rem;
}
.frequently_text h4{
   font-size: 0.25rem;
   color: #333;
   font-weight: bold;
   line-height: 140%;
   transition: all 0.3s ease;
}
.frequently_text h5{
   font-size: 0.18rem;
   line-height: 150%;
   color: #666;
   margin-top: 0.1rem;
}
.frequently_ul li:hover h4{
	color: var(--i_color);
}
.frequently_ul li:hover {
	background-color: #fff;
	box-shadow:  0 0.04rem 0.1rem rgba(250,165,17,0.12);
}
@media screen and (max-width:1440px){
	.frequently_text h4 {
		font-size: 0.22rem;
	}
	.frequently_text h5 {
		font-size: 0.16rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.frequently_text h4 {
		font-size: 0.2rem;
	}
	.frequently_text h5 {
		font-size: 0.14rem;
	}
	.frequently_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	.frequently_text h4 {
		font-size: 0.18rem;
	}
	.frequently_text h5 {
		font-size: 0.16rem;
	}
	.frequently_ul li {
		width: 100%;
	}
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
	.frequently_ul li i {
		font-size: 0.16rem;
		width: 0.4rem;
        height: 0.4rem;
	}
	.frequently_text {
		width: calc(100% - 0.4rem);
	}
}
@media screen and (max-width:560px){
}
@media screen and (max-width:425px){
}
/* welcome */
.welcome_bac{
   box-sizing: border-box;
   padding:0.4rem 0 0.8rem 0;
}
.welcome{
}
.welcome_title{
   display: flex;
   display: -webkit-flex;
   flex-direction: column;
   align-items: center;
}
.welcome_title p{
   font-size: 0.4rem;
   color: #222;
   font-weight: bold;
   text-align: center;
   text-transform: capitalize;
}
.welcome_title span{
   font-size: 0.18rem;
   color: #666;
   text-align: center;
   margin-top: 0.1rem;
}
.welcome_ul{
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   gap: 0.35rem;
   margin-top: 0.4rem;
}
.welcome_ul li{
	background-color: #F4F4F4;
	width: calc((100% - 0.35rem) / 2);
	box-sizing: border-box;
	padding: 0.4rem;
	transition: all 0.3s ease;
}
.welcome_i{
   display: flex;
   display: -webkit-flex;
   gap: 0.25rem;
   align-items: center;
   box-sizing: border-box;
   padding-bottom: 0.2rem;
   margin-bottom: 0.2rem;
   border-bottom: 0.02rem solid rgba(0, 0, 0, 0.2);
}
.welcome_i i{
   display: block;
   width: 0.54rem;
   height: 0.54rem;
   border-radius: 50%;
   background-color: #fff;
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
   transition: all 0.3s ease;
}
.welcome_i i iconify-icon{
   font-size: 0.3rem;
   color: var(--i_color);
   transition: all 0.3s ease;
}
.welcome_i p{
   font-size: 0.24rem;
   color: #666;
   line-height: 100%;
   font-weight: 900;
}
.welcome_ul li h3{
   font-size: 0.2rem;
   line-height: 0.3rem;
   color: #222;
   font-weight: bold;
   min-height: 0.9rem;
}
.welcome_ul li h3 a{
	font-size: 0.2rem;
	line-height: 0.3rem;
	color: #222;
	transition: all 0.3s ease;
}
.welcome_ul li h3 a:hover{
	color: var(--i_color);
}
.welcome_ul li:hover{
	background-color: #fff;
	box-shadow:  0 0.04rem 0.1rem rgba(250,165,17,0.1);
}
.welcome_ul li:hover i{
	background-color: var(--i_color);
}
.welcome_ul li:hover i iconify-icon{
	color: #fff;
}
.welcome_ul li:hover p{
	color: var(--i_color);
}
@media screen and (max-width:1440px){
	.welcome_title p {
		font-size: 0.35rem;
	}
	.welcome_i p {
		font-size: 0.22rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.welcome_title p {
		font-size: 0.3rem;
	}
	.welcome_title span {
		font-size: 0.16rem;
	}
	.welcome_ul {
		gap: 0.2rem;
	}
	.welcome_ul li {
		width: calc((100% - 0.2rem) / 2);
	}
	.welcome_ul li h3 a {
		font-size: 0.16rem;
		line-height: 0.25rem;
	}
	.welcome_ul li h3{
		font-size: 0.16rem;
		line-height: 0.25rem;
		min-height: 0.75rem;
	}
	.welcome_i p {
		font-size: 0.2rem;
	}
	.welcome_i i {
		width: 0.5rem;
		height: 0.5rem;
	}
	.welcome_i i iconify-icon {
		font-size: 0.26rem;
	}
	.welcome_bac {
		padding: 0.4rem 0 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	.welcome_title p {
		font-size: 0.28rem;
	}
	.welcome_i p {
		font-size: 0.18rem;
	}
	.welcome_i i {
		width: 0.45rem;
		height: 0.45rem;
	}
	.welcome_i i iconify-icon {
		font-size: 0.22rem;
	}
}
@media screen and (max-width:960px){
	.welcome_title p {
		font-size: 0.26rem;
	}
}
@media screen and (max-width:767px){
	.welcome_title p {
		font-size: 0.24rem;
	}
	.welcome_ul li {
        width: 100%;
    }
	.welcome_ul li h3{
		min-height: unset;
	}
}
@media screen and (max-width:560px){
	.welcome_title p {
		font-size: 0.22rem;
	}
}
@media screen and (max-width:425px){
}
.contact_map{
	height: 9.3rem;
	width: 100%;
}
.contact_map #simpleMap,
.contact_map .fluid-width-video-wrapper,
.contact_map iframe {
    width: 100%;
    height: 100% !important;
}
.contact_form_bac{
}
.contact_form{
   position: relative;
}
.contact_form>img{
	width: 100%;
	margin-top: -1.5rem;
	object-fit: cover;
	display: block;
}
.contact_form_box{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: flex-end;
}
.contact_form_left{
	width: 3rem;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0.8rem;
}
.contact_form_left img{
    width: 100%;
}
.contact_form_left p{
	font-size: 0.2rem;
	color: #fff;
	font-weight: bold;
    margin-top: 0.2rem;
}
.contact_form_right{
	width: 50%;
	background-color: #0657D0;
	box-sizing: border-box;
	padding:0.7rem 0.4rem 0.5rem 0.4rem;
}
#wpforms-49{--input_font_size:0.16rem; --input_height:0.44rem}
#wpforms-49{width:100%; margin:0 auto; padding:0}
#wpforms-form-49{width:100%; overflow:hidden}
#wpforms-49 input, #wpforms-49 button{margin:0; padding:0; border:none; background:none}
#wpforms-49 .wpforms-field{padding:0; margin:0}
#wpforms-49 .wpforms-error-container{line-height:16px}
#wpforms-49 .wpforms-field-container{width:100%; display:-webkit-flex; display:flex; flex-wrap:wrap; overflow:hidden}
#wpforms-49 .wpforms-submit-container{
	display: inline-block;
	background:var(--i_color); position:relative;
	margin-top: 0.2rem;
	padding: 0.16rem 0.6rem 0.16rem 0.4rem;
	clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
	transition: all 0.3s ease;
}
#wpforms-49 .wpforms-submit-container:hover{
	background: #fff;
	transform: translateY(-0.05rem);
}
#wpforms-49 .wpforms-field{
	position: relative;
}
#wpforms-49 .wpforms-field-label{
	color: rgba(255,255,255,0.7);
	font-size: 0.18rem;
	margin-bottom: 0.1rem;
	display: block;
	padding-left: 0.1rem;
}
#wpforms-49 .wpforms-field-label span{
	position: absolute;
	top: 0px;
	left: 0px;
	font-size: 0.14rem;
    color: rgba(255,255,255,0.7);
}
#wpforms-49 .wpforms-error{
	font-size: 0;
}
#wpforms-49 .wpforms-field{width:100%; margin-bottom:0.3rem; background:transparent; overflow:hidden}
#wpforms-49 input{height:var(--input_height)}
#wpforms-49 input, #wpforms-49 textarea{
	width:100%;border: 0; max-width:100%!important; font-size:var(--input_font_size);
	background-color: transparent; color:#fff; 
	box-sizing:border-box; line-height:var(--input_height); padding:0 10px;
	border-bottom: 0.02rem solid #fff;
}
#wpforms-49 textarea{
	height:1rem;
	line-height: 150%;
}
#wpforms-49 input::-webkit-input-placeholder{color:rgba(255,255,255,0.3); font-size:var(--input_font_size)}
#wpforms-49 input::-moz-placeholder{color:rgba(255,255,255,0.3); font-size:var(--input_font_size)}
#wpforms-49 input::-moz-placeholder{color:rgba(255,255,255,0.3); font-size:var(--input_font_size)}
#wpforms-49 input::-ms-input-placeholder{color:rgba(255,255,255,0.3); font-size:var(--input_font_size)}
#wpforms-49 textarea::-webkit-input-placeholder{color:rgba(255,255,255,0.3); font-size:var(--input_font_size)}
#wpforms-49 textarea::-moz-placeholder{color:rgba(255,255,255,0.3); font-size:var(--input_font_size)}
#wpforms-49 textarea::-moz-placeholder{color:rgba(255,255,255,0.3); font-size:var(--input_font_size)}
#wpforms-49 textarea::-ms-input-placeholder{color:rgba(255,255,255,0.3); font-size:var(--input_font_size)}
#wpforms-49 #wpforms-49-field_1-error, #wpforms-49 #wpforms-49-field_2-error, #wpforms-49 #wpforms-49-field_3-error, #wpforms-49 #wpforms-49-field_4-error{position:absolute; font-size:14px}
#wpforms-49 .wpforms-submit-container button{overflow: hidden;width:100%;font-size:0.16rem;font-weight: bold;transition: all 0.3s ease; color:#FFF;cursor:pointer; text-transform:capitalize; position:relative; z-index:2}
#wpforms-49 .wpforms-submit-container img{position:absolute; top:50%; transform:translate(0,-50%); right:4px}
#wpforms-49 .wpforms-submit-container:hover button{
	color: var(--i_color);
}
@media screen and (max-width:1440px){
	.contact_form_left {
		width: 2.5rem;
		margin-bottom: 0.6rem;
	}
	.contact_form_left p {
		font-size: 0.18rem;
	}
	.contact_map{
		height: 8rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.contact_form_left {
		width: 2rem;
		margin-bottom: 0.4rem;
	}
	.contact_form_left p {
		font-size: 0.16rem;
	}
	.contact_map{
		height: 7rem;
	}
}
@media screen and (max-width:1024px){
	.contact_form_left{display: none;}
	.contact_form_right{
		width: 100%;
	}
	.contact_map{
		height: 6rem;
	}
	.contact_form_box {
		position: relative;
		bottom: unset;
		left: unset;
		transform: unset;
	}
	.contact_form_bac{
		background-color: #0657D0;
	}
	.contact_form_right {
		padding: 0.4rem 0.2rem;
	}
}
@media screen and (max-width:959px){
}
@media screen and (max-width:767px){
	#wpforms-49{--input_height:0.5rem}
	.contact_form_right {
		padding: 0.4rem 0rem;
	}
}
@media screen and (max-width:560px){
}
@media screen and (max-width:425px){
}
/* news_list */
.news_list_bac{
   box-sizing: border-box;
   padding: 0.4rem 0 0.3rem 0;
}
.news_list{
}
.news_list_ul{
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   margin-bottom: 0.4rem;
}
.news_list_ul li{
	position: relative;
	box-sizing: border-box;
    padding: 0 0.8rem ;
}
.news_list_ul li a{
   font-size: 0.35rem;
   color: #222;
   font-weight: bold;
   text-transform: capitalize;
   border-bottom: 0.03rem solid transparent;
   box-sizing: border-box;
   padding-bottom: 0.1rem;
   transition: all 0.3s ease;
}
.news_list_ul li:not(:last-child)::after{
	content: '/';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	font-size: 0.35rem;
	color: #222;
	font-weight: bold;
}
.news_list h3{
   font-size: 0.18rem;
   color: #222;
   line-height: 200%;
   text-align: center;
   text-transform: capitalize;
}
.news_list_active a,
.news_list_ul li a:hover{
	color: var(--i_color) !important;
	border-bottom: 0.03rem solid var(--i_color) !important; 
}
@media screen and (max-width:1440px){
	.news_list_ul li a,
	.news_list_ul li:not(:last-child)::after {
		font-size: 0.35rem;
	}
	.news_list_ul li {
		padding: 0 0.6rem;
	}
	.news_list h3 {
		font-size: 0.18rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.news_list_ul li a,
	.news_list_ul li:not(:last-child)::after {
		font-size: 0.3rem;
	}
	.news_list_ul li {
		padding: 0 0.4rem;
	}
	.news_list h3 {
		font-size: 0.16rem;
	}
}
@media screen and (max-width:1024px){
	.news_list_ul li a,
	.news_list_ul li:not(:last-child)::after {
		font-size: 0.25rem;
	}
	.news_list h3 {
		font-size: 0.14rem;
	}
}
@media screen and (max-width:960px){
	.news_list_ul li a,
	.news_list_ul li:not(:last-child)::after {
		font-size: 0.22rem;
	}
}
@media screen and (max-width:767px){
	.news_list_ul li a,
	.news_list_ul li:not(:last-child)::after {
		font-size: 0.2rem;
	}
}
@media screen and (max-width:560px){
	.news_list_ul li a,
	.news_list_ul li:not(:last-child)::after {
		font-size: 0.18rem;
	}
	.news_list_ul {
		margin-bottom: 0.3rem;
	}
}
@media screen and (max-width:425px){
}
/* news */
.news_bac{
   padding-bottom: 0.8rem;
   box-sizing: border-box;
}
.news{
}
.news_ul{
	box-sizing: border-box;
	padding: 0.4rem 0 0rem 0;
	border-top: 0.02rem solid rgba(0, 0, 0, 0.2);
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	gap: 0.4rem;
}
.news_ul li{
}
.news_ul li a{
   display: block;
   width: 100%;
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   align-items: center;
   background-color: #F4F4F4;
   transition: all 0.3s ease;
}
.news_img{
   width: 33.5%;
   position: relative;
}
.news_img::after{
   content: '';
   display: block;
   padding-bottom: 71%;
}
.news_img img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.news_text{
   width: 66.5%;
   box-sizing: border-box;
   padding:0 3%;
}
.news_text h3{
   font-size: 0.18rem;
   color: #999;
}
.news_text h4{
   font-size: 0.24rem;
   color: #222;
   font-weight: bold;
   line-height: 125%;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   margin: 0.2rem 0;
   transition: all 0.3s ease;
}
.news_text h5{
   font-size: 0.2rem;
   line-height: 150%;
   color: #666;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 3;
   margin-bottom: 0.4rem;
}
.news_i{
   display: flex;
   display: -webkit-flex;
   align-items: center;
} 
.news_i i{
   box-sizing: border-box;
   padding: 0.08rem 0.3rem 0.08rem 0.15rem;
   background: rgba(250,165,17,0.2);
   clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
   transition: all 0.3s ease;
}
.news_i i iconify-icon{
   font-size: 0.25rem;
   color: var(--i_color);
   line-height: 100%;
   transition: all 0.3s ease;
}
.news_i h6{
   font-size: 0.18rem;
   color: #222;
   margin-left: 0.15rem;
   transition: all 0.3s ease;
}
.news_ul li a:hover h4{
	color: var(--i_color);
}
.news_ul li a:hover{
	background-color: #fff;
	box-shadow: 0 0.04rem 0.1rem rgba(250,165,17,0.12);
}
.news_ul li a:hover i{
	background-color: var(--i_color);
}
.news_ul li a:hover i iconify-icon{
	color: #fff;
}
@media screen and (max-width:1440px){
	.news_text h4 {
		font-size: 0.22rem;
	}
	.news_text h5 {
		font-size: 0.18rem;
		margin-bottom: 0.3rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.news_text h4 {
		font-size: 0.2rem;
		margin: 0.15rem 0;
	}
	.news_text h5 {
		font-size: 0.16rem;
		-webkit-line-clamp: 2;
		margin-bottom: 0.2rem;
	}
	.news_text h3 {
		font-size: 0.16rem;
	}
	.news_i h6 {
		font-size: 0.16rem;
		margin-left: 0.1rem;
	}
	.news_i i {
		padding: 0.06rem 0.2rem 0.06rem 0.1rem;
	}
	.news_i i iconify-icon {
		font-size: 0.2rem;
	}
	.news_bac{
		padding-bottom: 0.6rem;
	}
}
@media screen and (max-width:1024px){
	.news_text h4 {
		font-size: 0.18rem;
	}
	.news_text h3 {
		font-size: 0.14rem;
	}
	.news_i h6 {
		font-size: 0.14rem;
	}
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
	.news_img {
		width: 100%;
	}
	.news_text {
		width: 100%;
		padding: 0.4rem 3%;
	}
}
@media screen and (max-width:560px){
	.news_text {
        padding: 0.25rem 3%;
    }	 
}
@media screen and (max-width:425px){
}
/* Number of pages */
.in_page_box {
	text-align: center;
	overflow: hidden;
	margin-top: 0.7rem;
}
.in_page {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.in_page_right .in_page{
	justify-content: flex-end;
}
.in_page_left .in_page {
    justify-content: flex-start;
}
.in_page li {
	min-width: .32rem;
	margin: 0 .04rem;
}
.in_page a,
.in_page span {
	display: block;
	padding: 0 .12rem;
	line-height: .32rem;
	font-size: .14rem;
	color: #666;
	background: #FFF;
	-webkit-border-radius: .05rem;
	border-radius: .05rem;
	border: 1px solid var(--border_color);
	overflow: hidden;
	transition: all 0.3s ease;
}
.in_page>i {
	margin-top: 0.14rem;
	width: 100%;
	font-size: 0.13rem;
	color: #888;
	display: none;
}
.in_page a:hover,
.in_page .active_page a,
.in_page .active_page span {
	border-color: var(--i_color) !important;
	background: var(--i_color);
	color: #FFF !important
}
@media screen and (max-width:1024px) {
	.in_page_box {margin-top: 0.6rem;}
}
@media screen and (max-width:768px) {
	.in_page li {
		min-width: .28rem;
	}
	.in_page a,
	.in_page span {
		line-height: 0.28rem;
		padding: 0 .1rem;
	}
	.in_page_box {margin-top: 0.4rem;}
}
@media screen and (max-width:560px) {
}
/* products_list */
.products_list_bac{
   box-sizing: border-box;
   padding: 0.4rem 0 0rem 0;
}
.products_list{
}
.products_list_ul{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	gap: 0.1rem;
}
.products_list_ul li{
   width: calc((100% - 0.1rem) / 12);
}
.products_list_ul li a{
   display: block;
   width: 100%;
   position: relative;
   border: 0.02rem solid transparent;
   transition: all 0.3s ease;
   box-sizing: border-box;
}
.products_list_ul li a::after{
   content: '';
   display: block;
   padding-bottom: 34%;
}
.products_list_ul li a img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: contain;
}
.products_list_active a,
.products_list_ul li a:hover{
	border: 0.02rem solid var(--i_color) !important;
}
@media screen and (max-width:1440px){
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.products_list_ul li{
		width: calc((100% - 0.7rem) / 8);
	}
}
@media screen and (max-width:1024px){
	.products_list_ul li{
		width: calc((100% - 0.5rem) / 6);
	}
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
	.products_list_ul li{
		width: calc((100% - 0.3rem) / 4);
	}
}
@media screen and (max-width:560px){
}
@media screen and (max-width:425px){
}
/* products */
.products_bac{
   box-sizing: border-box;
   padding-bottom: 0.8rem;
   padding-top: 0.4rem;
}
.products{
}
.products_title{
   display: flex;
   display: -webkit-flex;
   flex-direction: column;
   align-items: center;
   box-sizing: border-box;
   padding-bottom: 0.2rem;
   border-bottom: 0.02rem solid rgba(0, 0, 0, 0.2);
}
.products_title>p{
   font-size: 0.44rem;
   color: #222;
   font-weight: bold;
   display: inline-block;
   position: relative;
}
.products_title>p::after{
	content: '';
	position: absolute;
	top: 50%;
	left: -0.35rem;
	transform: translate(0,-50%);
	width: 0.24rem;
    height: 0.32rem;
    background: url(../images/title_i1.png) center no-repeat;
    background-size: contain;
}
.products_title>p::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -0.35rem;
	transform: translate(0,-50%);
	width: 0.24rem;
    height: 0.32rem;
    background: url(../images/title_i1.png) center no-repeat;
    background-size: contain;
}
.products_title span{
   font-size: 0.2rem;
   color: #222;
   line-height: 200%;
   text-align: center;
   text-transform: capitalize;
   display: block;
   box-sizing: border-box;
   margin-top: 0.2rem;
}
@media screen and (max-width:1440px){
	.products_title>p{
		font-size: 0.4rem;
	}
	.products_title span{
		font-size: 0.18rem;
	}
	.products_title>p::after,
	.products_title>p::before{
		width: 0.2rem;
		height: 0.28rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.products_title>p{
		font-size: 0.35rem;
	}
	.products_title span{
		font-size: 0.16rem;
	}
	.products_title>p::after,
	.products_title>p::before{
		width: 0.16rem;
		height: 0.24rem;
	}
}
@media screen and (max-width:1024px){
	.products_title>p{
		font-size: 0.3rem;
	}
}
@media screen and (max-width:960px){
	.products_title>p{
		font-size: 0.28rem;
	}
}
@media screen and (max-width:767px){
	.products_title>p{
		font-size: 0.26rem;
	}
	.products_title span{
		font-size: 0.14rem;
	}
}
@media screen and (max-width:560px){
	.products_title>p{
		font-size: 0.24rem;
	}
}
@media screen and (max-width:425px){
	.products_title>p{
		font-size: 0.22rem;
	}
}
.products_ul{
   margin-top: 0.35rem;
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   gap: 0.2rem;
}
.products_ul>li{
   width: calc((100% - 0.6rem) / 4);
}
.products_ul>li a{
   display: block;
   width: 100%;
   border: 1px solid #CCCFD0;
   box-sizing: border-box;
   padding: 0.1rem;
   transition: all 0.3s ease;
}
.products_img{
   width: 100%;
   position: relative;
}
.products_img::after{
   content: '';
   display: block;
   padding-bottom: 100%;
}
.products_img img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.products_text{
   box-sizing: border-box;
   padding: 0.2rem 0 0.1rem 0;
}
.products_text h3{
	font-size: 0.2rem;
	color: #222;
	font-weight: bold;
	transition: all 0.3s ease;
	overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}
.products_text_ul{
    margin: 0.15rem 0;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	gap: 0.1rem;
}
.products_text_ul li{
   display: flex;
   display: -webkit-flex;
   width: 100%;
   gap: 0.05rem;
}
.products_text_ul li h4{
	font-size: 0.18rem;
	color: #666;
}
.products_text_ul li h5{
   font-size: 0.18rem;
   color: #222;
}
.products_text_ul li h5 span{
   font-size: 0.2rem;
   color: red;
   font-weight: bold;
}
.products_ul>li a:hover{
	border: 1px solid var(--i_color);
}
.products_ul>li a:hover h3{
	color: var(--i_color);
}
.products_ul>li a:hover i{
	background-color: var(--i_color);
}
.products_ul>li a:hover i iconify-icon{
	color: #fff;
}
@media screen and (max-width:1440px){
	.products_text h3{
		font-size: 0.18rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.products_text h3{
		font-size: 0.16rem;
	}
	.products_text_ul li h4{
		font-size: 0.16rem;
	}
	.products_text_ul li h5{
	   font-size: 0.16rem;
	}
	.products_text_ul li h5 span{
	   font-size: 0.18rem;
	}
	.products_bac {
		padding-bottom: 0.6rem;
	}
}
@media screen and (max-width:1024px){
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
	.products_text_ul li h4{
		font-size: 0.14rem;
	}
	.products_text_ul li h5{
	   font-size: 0.14rem;
	}
	.products_text_ul li h5 span{
	   font-size: 0.16rem;
	}
	.products_ul>li {
		width: calc((100% - 0.2rem) / 2);
	}
}
@media screen and (max-width:560px){
	.products_ul {
		gap: 0.2rem 0.1rem;
	}
	.products_ul>li {
		width: calc((100% - 0.1rem) / 2);
	}
}
@media screen and (max-width:425px){
}
/* single_grid */
.single_grid_bac{
   box-sizing: border-box;
   padding: 0.4rem 0 0.8rem 0;
}
.single_grid{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.single_grid_left{
	width: 43%;
}
/* 鍥剧墖鏌ョ湅鍖� */
.in_factory_cont{--sm_pic_width:19.75%}
.in_factory_cont{ position:relative; overflow:hidden}
.in_factory_cont:before{content:""; display:block; padding-bottom:77.4%}
/* 缂╃暐鍥� */
.in_factory_list_box{position:absolute; top:0; left:0; width:var(--sm_pic_width); height:100%; box-sizing:border-box; padding:0.4rem 0}
.in_factory_list{height:100%; overflow:hidden}
.in_factory_list .swiper-slide{cursor:pointer}
.in_factory_list .img{width:100%; height:100%; box-sizing:border-box;position:relative; overflow:hidden;transition: all 0.3s ease;border: 1px solid transparent;}
.in_factory_list .img img{width:100%; height:100%; object-fit:cover;}
.in_factory_list .swiper-slide-thumb-active .img{border:2px solid var(--i_color);box-sizing: border-box;}
.in_factory_list .swiper-slide-thumb-active img{filter: brightness(100%);-webkit-filter: brightness(100%);}
.infactory-button-prev, .infactory-button-next{
	position:absolute;
	left:50%;
	transform:translate(-50%,0);
	width:100%;
	height:0.3rem;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	background:rgba(0, 0, 0, .15);
	box-sizing: border-box;
	z-index:90;
	outline:none;
	cursor:pointer;
	-moz-user-select:none;
    -webkit-user-select:none;
    -ms-user-select:none;
    -khtml-user-select:none;
    user-select:none;
	transition:all 0.3s ease;
}
.infactory-button-prev iconify-icon, .infactory-button-next iconify-icon{
	color: var(--i_color);
	font-size: 0.3rem;
}
.infactory-button-prev{
	top:0px; 
}
.infactory-button-next{
	bottom:0px;
}
.infactory-button-prev.swiper-button-disabled, .infactory-button-next.swiper-button-disabled{cursor:not-allowed; opacity:.1}
.infactory-button-prev:hover, .infactory-button-next:hover{
	background-color: var(--i_color);
}
.infactory-button-prev:hover iconify-icon, .infactory-button-next:hover iconify-icon{
	color: #fff;
}
.in_factory_list_box .show{
	display: block;
}
.in_factory_list_box .hide{
	display: none;
}
/* 澶у浘 */
.in_factory_show_box{position:absolute; top:0; right:0; width:calc(100% - var(--sm_pic_width) - 20px); height:100%; box-sizing:border-box; padding:0 0; margin:0 auto}
.in_factory_show{width:100%; height:100%; box-sizing:border-box; position:relative; overflow:hidden}
.in_factory_show .swiper-wrapper{display:flex; position:relative; width:100%; height:100%; z-index:1}
.in_factory_show .swiper-slide{
	height:100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
}
.in_factory_show .img{width:100%; height:100%; position:relative; overflow:hidden}
.in_factory_show .img img{width:100%; height:100%; object-fit:cover}
.infactory-pagination{display:none; margin:16px auto 0}
.infactory-pagination .swiper-pagination-bullet{width:8px; height:8px; display:inline-block; margin:0 4px; background:#E5E5E5; -webkit-border-radius:50%; -moz-border-radius:50%; -o-border-radius:50%; border-radius:50%; outline:none}
.infactory-pagination .swiper-pagination-bullet-active{position:relative; background:var(--i_color)}
@media screen and (max-width:1440px){
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
}
@media screen and (max-width:959px){
	.in_factory_cont:before{display:none}
	.in_factory_show_box{position:initial; width:100%}
	.in_factory_show .img{width:100%; position:relative; overflow:hidden}
	.in_factory_show .img:before{content:""; display:block; padding-bottom:100%}
	.in_factory_show .img img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%)}
	.in_factory_list_box{margin-top:10px; padding:0 0; position:relative; width:100%; height:initial}
	.in_factory_list{width:calc(100% - 60px); margin:0 auto}
	.in_factory_list_box .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
	.in_factory_list_box .swiper-slide{height:100%; display:-webkit-box; display:-ms-flexbox; display:-webkit-flex; display:flex; flex-shrink:0; position:relative; cursor:pointer}
	.in_factory_list .img{height:auto}
	.in_factory_list .img:before{content:""; display:block; padding-bottom:100%}
	.in_factory_list .img img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); object-fit:cover}
	.infactory-button-prev, .infactory-button-next{top:50%; transform:translate(0,-50%); height:100%}
	.infactory-button-prev{left:0; }
	.infactory-button-next{left:initial; right:0;}
	.in_factory_list_box .show{
		display: none;
	}
	.in_factory_list_box .hide{
		display: block;
	}
	.infactory-button-prev, .infactory-button-next{
		width:0.3rem;
	}
	.infactory-button-prev iconify-icon, .infactory-button-next iconify-icon {
		font-size: 0.25rem;
	}
}
@media screen and (max-width:767px){
}
@media screen and (max-width:560px){
}
.single_grid_share{
   display: flex;
   display: -webkit-flex;
   align-items: center;
   margin-top: 0.4rem;
}
.single_grid_share h4{
   font-size: 0.18rem;
   color: #222;
   margin-right: 0.1rem;
}
.single_grid_dl{
   display: flex;
   display: -webkit-flex;
   gap: 0.18rem;
}
.single_grid_dl dt{
}
.single_grid_dl dt a{
	display: flex;
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 50%;
	background-color: rgba(158,158,158,0.16);
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}
.single_grid_dl dt a iconify-icon{
	font-size: 0.16rem;
	color: #9E9E9E;
	transition: all 0.3s ease;
}
.single_grid_dl dt a:hover{
	background-color: rgba(250,165,17,0.16);
	transform: translateY(-0.05rem);
}
.single_grid_dl dt a:hover iconify-icon{
	color: var(--i_color);
}
.single_grid_right{
	width: 57%;
	box-sizing: border-box;
	padding-left: 3%;
}
.single_grid_right h1{
   font-size: 0.34rem;
   color: #222;
   font-weight: bold;
}
.single_grid_btn{
   display: flex;
   display: -webkit-flex;
   gap: 0.3rem;
   box-sizing: border-box;
   padding: 0.3rem 0;
   position: relative;
   border-bottom: 1px solid rgba(250,165,17,0.5);
} 
.single_grid_btn::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60%;
	height: 0.03rem;
	background-color: var(--i_color);
}
.single_grid_jg{
   display: flex;
   display: -webkit-flex;
   gap: 0.1rem;
   margin: 0.25rem 0;
}
.single_grid_jg h2{
   font-size: 0.2rem;
   color: #999;
}
.single_grid_jg h3{
	font-size: 0.2rem;
	color: #333;
}
.single_grid_jg h3 span{
	font-size: 0.2rem;
	color: red;
}
.single_grid_dlText{
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   gap: 0.2rem 0.5rem;
   width: 70%;
}
.single_grid_dlText dt{
   width: calc((100% - 0.5rem) / 2);
   border-bottom: 1px solid #D8D8D8;
}
.single_grid_dlText dt h4{
   font-size: 0.2rem;
   color: #999;
}
.single_grid_dlText dt h5{
	font-size: 0.18rem;
	color: #222;
	box-sizing: border-box;
	padding: 0.1rem 0;
}
@media screen and (max-width:1440px){
	.single_grid_right h1 {
		font-size: 0.32rem;
	}
	.single_grid_dlText{
		gap: 0.2rem 0.4rem;
		width: 80%;
	}
	.single_grid_dlText dt{
		width: calc((100% - 0.4rem) / 2);
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.single_grid_right h1 {
		font-size: 0.3rem;
	}
	.single_grid_share {
		margin-top: 0.3rem;
	}
	.single_grid_bac {
		padding: 0.4rem 0 0.6rem 0;
	}
	.single_grid_dlText{
		width: 100%;
	}
}
@media screen and (max-width:1024px){
	.single_grid_right h1 {
		font-size: 0.28rem;
	}
}
@media screen and (max-width:960px){
	.single_grid_right h1 {
		font-size: 0.26rem;
	}
}
@media screen and (max-width:767px){
	.single_grid_right h1 {
		font-size: 0.24rem;
	}
	.single_grid_right {
		width: 100%;
		margin-top: 0.4rem;
		padding-left: 0%;
	}
	.single_grid {
		justify-content: center;
	}
	.single_grid_left {
		width: 50%;
	}
	.single_grid_dlText{
		gap: 0.2rem;
	}
	.single_grid_dlText dt{
		width: calc((100% - 0.2rem) / 2);
	}
}
@media screen and (max-width:560px){
	.single_grid_right h1 {
		font-size: 0.22rem;
	}
	.single_grid_left {
		width: 80%;
	}
	.single_grid_dlText dt{
		width: 100%;
	}
}
@media screen and (max-width:425px){
	.single_grid_left {
		width: 100%;
	}
}
/* editor */
.editor_bac{
	box-sizing: border-box;
	padding: 0.8rem 0;
	background-color: #F7F7F7;
}
.editor{
}
.editor_ul{
   display: flex;
   display: -webkit-flex;
   gap: 0.7rem;
   border-bottom: 0.02rem solid rgba(0, 0, 0, 0.2);
}
.editor_ul li{
}
.editor_ul li a{
	font-size: 0.22rem;
	color: #222;
	transition: all 0.3s ease;
	padding-bottom: 0.2rem;
	display: block;
	position: relative;
}
.editor_ul li a::after{
	content: '';
	position: absolute;
	bottom: -0.02rem;
	right: 0;
	width: 0;
	height: 0.03rem;
	background-color: var(--i_color);
	transition: all 0.3s ease;
}
.editor_ul li:hover a,
.editor_ul li.current a{
   color: var(--i_color);
}
.editor_ul li:hover a::after,
.editor_ul li.current a::after{
	width: 100%;
	right: auto;
	left: 0;
}
.editor_dl{
   box-sizing: border-box;
   padding: 0.4rem 0;
   display: flex;
   display: -webkit-flex;
   flex-direction: column;
   gap: 0.4rem;
}
.editor_dl dt{
}
.editor_h2{
   font-size: 0.24rem;
   color: #222;
   font-weight: bold;
   margin-bottom: 0.25rem;
}
.editor_dl dt article{
}
@media screen and (max-width:1440px){
	.editor_ul li a{
		font-size: 0.2rem;
	}
	.editor_ul {
		gap: 0.6rem;
	}
	.editor_h2{
		font-size: 0.22rem;
	}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.editor_ul li a{
		font-size: 0.18rem;
		padding-bottom: 0.15rem;
	}
	.editor_ul {
		gap: 0.4rem;
	}
	.editor_bac {
		padding: 0.6rem 0;
	}
	.editor_h2{
		font-size: 0.2rem;
		margin-bottom: 0.2rem;
	}
}
@media screen and (max-width:1024px){
	.editor_ul li a{
		font-size: 0.16rem;
	}
	.editor_ul {
		gap: 0.2rem;
	}
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
	.editor_ul li a{
		font-size: 0.14rem;
	}
}
@media screen and (max-width:560px){
	.editor_bac {
		padding: 0.6rem 0 0.4rem 0;
	}
}
@media screen and (max-width:425px){
}
/* single_three */
.single_three_bac{
   background: url('../images/single_three.webp') center no-repeat;
   background-size: cover;
   box-sizing: border-box;
   padding: 0.6rem 0;
   margin-bottom: 0.6rem;
}
.single_three{
}
.single_tags{
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   gap: 0.1rem 0;
   align-items: center;
}
.single_tags p{
   font-size: 0.18rem;
   color: #fff;
   font-weight: bold;
   text-transform: capitalize;
   margin-right: 0.1rem;
}
.single_tags a{
	font-size: 0.16rem;
	color: #333;
	box-sizing: border-box;
	padding: 0.1rem;
	background-color: #fff;
	transition: all 0.3s ease;
}
.single_tags a:not(:last-child){
	margin-right: 0.25rem;
}
.single_tags a:hover{
	color: var(--i_color);
}
.editor_LR{
   display: flex;
   display: -webkit-flex;
   justify-content: space-between;
   box-sizing: border-box;
   padding-top: 0.2rem;
   margin-top: 0.2rem;
   border-top: 1px solid #CECECE;
}
.editor_LR>div{
   display: flex;
   display: -webkit-flex;
   align-items: center;
   max-width: 49%;
}
.editor_LR i{
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
   width: 0.35rem;
   min-width: 0.35rem;
   height: 0.35rem;
   border-radius: 50%;
   border: 1px solid #fff;
   transition: all 0.3s ease;
}
.editor_LR i iconify-icon{
   color: #fff;
   font-size: 0.15rem;
   transition: all 0.3s ease;
}
.editor_LR p{
   font-size: 0.18rem;
   color: #fff;
   font-weight: bold;
}
.editor_LR a{
	font-size: 0.18rem;
	color: #fff;
	transition: all 0.3s ease;
}
.editor_L i{
	margin-right: 0.1rem;
}
.editor_R i{
	margin-left: 0.1rem;
}
.editor_R{
	margin-left: auto;
}
.editor_LR a:hover{
	color: var(--i_color);
}
.editor_LR>div:hover i{
	background-color: var(--i_color);
	border: 1px solid var(--i_color);
}
.editor_LR>div:hover i iconify-icon{
	color: #fff;
}
@media screen and (max-width:1440px){
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.editor_L i{
		margin-right: 0.1rem;
	}
	.editor_R i{
		margin-left: 0.1rem;
	}
	.editor_LR a {
		font-size: 0.16rem;
	}
	.editor_LR i {
		width: 0.35rem;
		min-width: 0.35rem;
		height: 0.35rem;
	}
}
@media screen and (max-width:1024px){
	.deitor_left{display: none;}
	.deitor_right{
		width: 100%;
		padding-left: 0%;
	}
}
@media screen and (max-width:959px){
}
@media screen and (max-width:767px){
	.editor_LR {
		flex-direction: column;
		gap: 0.1rem;
	}
	.editor_LR>div{
		width: 100%;
		max-width: 100%;
	}
	.editor_R {
		justify-content: flex-end;
	}
}
@media screen and (max-width:560px){
}
@media screen and (max-width:425px){
}
/* related_process */
.related_process_bac{
   box-sizing: border-box;
   padding-bottom: 0.8rem;
}
.related_process{
}
/*  */
.rela_partner_box{
	margin-top: 0.4rem;
}
.rela_partner{position:relative}
.rela_partner_list{width:100%; padding:0 0.1rem;box-sizing: border-box; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.rela_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.rela_partner_list>ul>li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
}
.rela_partner_list>ul>li a{
	display: block;
    width: 100%;
    border: 1px solid #CCCFD0;
    box-sizing: border-box;
    padding: 0.1rem;
    transition: all 0.3s ease;
}
.rela_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden}
.rela_partner_list .img:before{content:""; display:block; padding-bottom:100%}
.rela_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}
.rela_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}
.rela_partner_list>ul>li a:hover{
	border: 1px solid var(--i_color);
}
.rela_partner_list>ul>li a:hover h3{
	color: var(--i_color);
}
.rela_partner_list>ul>li a:hover i{
	background-color: var(--i_color);
}
.rela_partner_list>ul>li a:hover i iconify-icon{
	color: #fff;
}
/* 指示器 */
.rela_partner .pt-pagination{display:block; text-align:center; margin:0.4rem auto 0}
.rela_partner .pt-pagination .swiper-pagination-bullet{width:0.1rem;box-sizing: border-box; height:0.1rem;cursor: pointer;border: 1px solid var(--i_color); display:inline-block; margin:0 0.05rem; background:var(--i_color); border-radius:0%; outline:none}
.rela_partner .pt-pagination .swiper-pagination-bullet-active{position:relative; background:transparent}
/* 左右箭头 */
.rela_partner .pt-button-prev, .rela_partner .pt-button-next{
	position:absolute; 
	top:50%; 
	transform:translate(0,-50%); 
	width:0.5rem; 
	height:0.5rem; 
	border: 1px solid var(--i_color);
	box-sizing: border-box;
	z-index:999; 
	cursor:pointer; 
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.rela_partner .pt-button-prev iconify-icon, .rela_partner .pt-button-next iconify-icon{
	font-size: 0.2rem;
	color: var(--i_color);
	transition: all 0.3s ease;
}
.rela_partner .pt-button-prev{left:-5%;}
.rela_partner .pt-button-next{right:-5%;}
.rela_partner .pt-button-prev:hover, .rela_partner .pt-button-next:hover{
	background-color: var(--i_color);
}
.rela_partner .pt-button-prev:hover iconify-icon, .rela_partner .pt-button-next:hover iconify-icon{
	color: #fff;
}
@media screen and (max-width:1440px){
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
	.rela_partner .pt-button-prev, .rela_partner .pt-button-next{display:none}
	.rela_partner .pt-pagination{display:block}
	.related_process_bac {
		padding-bottom: 0.6rem;
	}
}
@media screen and (max-width:959px){
}
@media screen and (max-width:767px){
}
@media screen and (max-width:560px){
}
/* ---------------------- Aside Form ---------------------- */
.aside_form{position: fixed;right: 0;bottom: 0;width: 360px;box-shadow: -6px -4px 10px rgb(0 0 0 / 10%);overflow: hidden;z-index: 91;}
.aside_form_tit{padding: 12px 50px; text-align: center; background: var(--i_color); cursor: pointer;position: relative;}
.aside_form_tit p{color: #fff;}
.aside_form_tit iconify-icon{opacity: 0; position:absolute; top:50%; transform:translate(0,-50%);right: -20px;font-size: 24px;color: #fff;}
.aside_form_tit.on iconify-icon{opacity: 1; right: 10px; -webkit-transition:all .6s .5s; transition:all .6s .5s;}
.aside_form_cont{display: none; padding: 24px; background: #FFF;}
.aside_form_cont.on{}
#wpforms-42{--input_font_size:0.16rem; --input_height:0.35rem}
#wpforms-42{width:100%; margin:0 auto; padding:0}
#wpforms-form-42{width:100%; overflow:hidden}
#wpforms-42 input, #wpforms-42 button{margin:0; padding:0; border:none; background:none}
#wpforms-42 .wpforms-field{padding:0; margin:0}
#wpforms-42 .wpforms-error-container{line-height:0.16rem}
#wpforms-42 .wpforms-field-container{width:100%; display:-webkit-flex; display:flex; flex-wrap:wrap; overflow:hidden}
#wpforms-42 .wpforms-submit-container{padding:0!important; width:1.5rem; height:var(--input_height); background:var(--i_color);border-radius: 0.05rem; position:relative;margin:0 auto;transition: all 0.3s ease;}
#wpforms-42 .wpforms-hidden{
	display: none;
}
#wpforms-42 .wpforms-field{
	position: relative;
}
#wpforms-42 .wpforms-field-label{
	font-size: 0;
	position: relative;
	line-height: 0;
	display: block;
	height: 0;
	margin: 0 !important;
}
#wpforms-42 .wpforms-field-label span{
	position: absolute;
	top: 15px;
	left: 3px;
	font-size: 0.14rem;
    color: red;
}
#wpforms-42 .wpforms-error{
	margin-top: 0.01rem;
	font-size: 0.12rem !important;
}
#wpforms-42 .wpforms-field{width:100%; padding-bottom:0.15rem; background:transparent; overflow:hidden}
#wpforms-42 input{height:var(--input_height)}
#wpforms-42 textarea{min-height:0.8rem}
#wpforms-42 input, #wpforms-42 textarea{
	width:100%;border: 0; max-width:100%!important;
	font-size:var(--input_font_size);
	background-color: white; 
	color:#222;
	box-sizing:border-box; ;
	padding:0 10px;
	box-shadow: 0 0 0 0 !important;
	border: 1px solid rgba(0, 0, 0, 0.2);
}
#wpforms-42 input::-webkit-input-placeholder{color:rgba(0,0,0,.3); font-size:var(--input_font_size)}
#wpforms-42 input::-moz-placeholder{color:rgba(0,0,0,.3); font-size:var(--input_font_size)}
#wpforms-42 input::-moz-placeholder{color:rgba(0,0,0,.3); font-size:var(--input_font_size)}
#wpforms-42 input::-ms-input-placeholder{color:rgba(0,0,0,.3); font-size:var(--input_font_size)}
#wpforms-42 textarea::-webkit-input-placeholder{color:rgba(0,0,0,.3); font-size:var(--input_font_size)}
#wpforms-42 textarea::-moz-placeholder{color:rgba(0,0,0,.3); font-size:var(--input_font_size)}
#wpforms-42 textarea::-moz-placeholder{color:rgba(0,0,0,.3); font-size:var(--input_font_size)}
#wpforms-42 textarea::-ms-input-placeholder{color:rgba(0,0,0,.3); font-size:var(--input_font_size)}
#wpforms-42 #wpforms-42-field_1-error, #wpforms-42 #wpforms-42-field_2-error, #wpforms-42 #wpforms-42-field_3-error, #wpforms-42 #wpforms-42-field_4-error{position:absolute; font-size:14px}
#wpforms-42 .wpforms-submit-container button{overflow: hidden;border-radius: 0.2rem; width:100%; height:var(--input_height); font-size:0.14rem; color:#fff; line-height:var(--input_height); cursor: pointer; text-transform:capitalize; position:relative; z-index:2}
#wpforms-42 .wpforms-submit-container img{position:absolute; top:50%; transform:translate(0,-50%); right:4px}
#wpforms-42 .wpforms-submit-container:hover{
	background-color: var(--i_color);
}
@media screen and (max-width:560px) {
	.aside_form{width: 100%;}
}
/* aside */
.aside_right {
	position: fixed;
	right: 30px;
	bottom: 26%;
	z-index: 90
}
.aside_right ul {}
.aside_right li {
	margin: .1rem 0;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	cursor: pointer
}
.aside_right li>a {
	display: block;
	width: .5rem;
	height: .5rem;
	background: rgba(128, 128, 128, .5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
	transition: all .3s ease;
}
.aside_right li:nth-child(1)>a {
	background: #389b0f
}
.aside_right li:nth-child(2)>a {
	background: var(--i_color);
}
.aside_right li img {
	display: block;
	margin: 0 auto;
	width: .22rem;
	height: .22rem;
	object-fit: contain
}
.aside_right li:hover>a {
	background-color: var(--i_color)
}
.side_tel_box,
.side_qr_box {
	position: absolute;
	box-shadow: -1px 2px 6px rgba(0, 0, 0, .2);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -1
}
.side_tel_box {
	top: 0;
	right: -300px;
	width: 180px;
	min-height: 100%;
	background: #FFF
}
.side_qr_box {
	top: 50%;
	transform: translate(0, -50%);
	right: -180px;
	width: 120px;
	height: 120px;
	background: #FFF
}
.side_tel_box h6 {
	padding: 8px 0;
	font-size: 14px;
	color: #666
}
.side_tel_box h6 a {
	line-height: 20px
}
.side_tel_box a:hover {
	color: var(--i_color)
}
.side_qr_box img {
	width: 90%;
	height: 90%
}
.aside_right li:hover .side_tel_box,
.aside_right li:hover .side_qr_box {
	right: 48px
}
.side_tel_box,
.side_qr_box {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}
.aside_close {
	position: absolute;
	top: .3rem;
	right: .3rem;
	display: block;
	width: .3rem;
	height: .3rem;
	background: url(../images/close_1_hei.svg) no-repeat center;
	background-size: 30px;
	cursor: pointer
}
.aside_close:hover {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}
.aside_close {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease
}
#aside_mask_bg {
	display: none;
	position: fixed;
	top: 50%;
	transform: translate(0, -50%);
	left: 0%;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 70%);
	z-index: 96;
}
#aside_sc_from {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	box-sizing: border-box;
	padding: 30px 30px 40px;
	background: rgb(255 255 255 / 100%);
	z-index: 99;
	overflow: auto
}
#aside_sc_from .tit {
	margin-bottom: .4rem
}
#aside_sc_from .tit h1 {
	text-align: center;
	font-size: .26rem;
	color: var(--i_color);
	font-weight: bold;
	line-height: .3rem
}
#wpforms-46 {
	--input_font_color: rgb(0 0 0 / 50%);
	--input_font_size: 14px;
	--input_height: 42px
}
#wpforms-46 {
	width: 100%;
	margin: 0 auto;
	padding: 0
}
#wpforms-form-956 {
	width: 100%;
	overflow: hidden
}
#wpforms-46 input,
#wpforms-46 button {
	margin: 0;
	padding: 0;
	border: none;
	background: none
}
#wpforms-46 .wpforms-field {
	padding: 0;
	margin: 0
}
#wpforms-46 .wpforms-error-container {
	line-height: 16px
}
#wpforms-46 .wpforms-field-container {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden
}
#wpforms-46 .wpforms-submit-container {
	padding: 0 !important;
	margin: 0 auto;
	width: 170px;
	height: 38px;
	background: var(--i_color);
	box-sizing: border-box;
	border: 2px solid var(--i_color);
	position: relative
}
#wpforms-46 .wpforms-field-label {
	font-size: 0;display: block;
}
#wpforms-46 .wpforms-required-label {
	position: absolute;
	top: 16px;
	left: 5px;
	font-size: 16px;
	color: #F00
}
#wpforms-46 .wpforms-field {
	width: 100%;
	margin-bottom: 0;
	padding-bottom: 18px;
	background: transparent;
	position: relative;
	overflow: hidden
}
#wpforms-46 input {
	height: var(--input_height)
}
#wpforms-46 textarea {
	min-height: 100px
}
#wpforms-46 input,
#wpforms-46 textarea {
	width: 100%;
	max-width: 100% !important;
	font-size: var(--input_font_size);
	color: #333;
	box-sizing: border-box;
	border: 1px solid rgb(0 0 0 / 30%);
	line-height: var(--input_height);
	padding: 0 16px
}
#wpforms-46 input::-webkit-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-46 input::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-46 input::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-46 input::-ms-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-46 textarea::-webkit-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-46 textarea::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-46 textarea::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-46 textarea::-ms-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-46 #wpforms-46-field_1-error,
#wpforms-46 #wpforms-46-field_2-error,
#wpforms-46 #wpforms-46-field_3-error,
#wpforms-46 #wpforms-46-field_5-error {
	position: absolute;
	font-size: 13px
}
#wpforms-46 .wpforms-submit-container button {
	width: 100%;
	height: 34px;
	font-size: 14px;
	color: #FFF;
	line-height: 34px;
	cursor: pointer;
	text-transform: uppercase;
	position: relative;
	z-index: 2
}
#wpforms-46 .wpforms-submit-container img {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: 4px
}
#wpforms-46 .wpforms-submit-container:after {
	display: none;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%
}
#wpforms-46 .wpforms-submit-container:hover:after {
	display: block
}
#wpforms-46 .wpforms-submit-container:hover {
	background: #FFF
}
#wpforms-46 .wpforms-submit-container:hover button {
	color: var(--i_color)
}
@media screen and (max-width:1366px) {
	.aside_right li>a {
		width: 0.4rem;
		height: 0.4rem;
	}
}
@media screen and (max-width:1024px) {
	#aside_sc_from {
		width: 94%;
	}
}
@media screen and (max-width:959px) {
	.aside_right {
		right: 22px;
		bottom: 160px;
	}
	.aside_right li:nth-child(2) {
		display: none !important
	}
}
@media screen and (max-width:767px) {
	#aside_sc_from {
		padding: 20px 20px 30px
	}
	#aside_sc_from .tit {
		margin-bottom: 0.3rem;
	}
	#wpforms-46 .wpforms-submit-container {
		height: 34px;
	}
	#wpforms-46 .wpforms-submit-container button {
		height: 30px;
		line-height: 30px;
		font-size: 14px;
	}
}
@media screen and (max-width:560px) {
	#aside_sc_from .tit h1 {
		font-size: 0.24rem;
	}
}
/* 感谢页面 */
.thanks{padding-top: 1rem; margin:0px auto 1rem; text-align:center;box-sizing: border-box; }
.thanks h2{margin-bottom:20px; font-size:0.3rem; color:#222; font-weight:bold}
.thanks a{z-index: 2; display: flex;display: -webkit-flex;justify-content: center; position: relative; transition: all 1s ease;}
.btns {
	height: 4em;
	width: 12em;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0px solid black;
	cursor: pointer;
  }
  .btns:hover p{
	  color: var(--i_color);
  }  
  .wrapperss {
	height: 2em;
	width: 8em;
	position: relative;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
  }
.thanks  .text {
	font-size: 17px;
	z-index: 1;
	color: #000;
	padding: 4px 12px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.7);
	transition: all 0.5s ease;
  }
  .flower {
	display: grid;
	grid-template-columns: 1em 1em;
	position: absolute;
	transition: grid-template-columns 0.8s ease;
  }
  .flower1 {
	top: -12px;
	left: -13px;
	transform: rotate(5deg);
  }
  .flower2 {
	bottom: -5px;
	left: 8px;
	transform: rotate(35deg);
  }
  .flower3 {
	bottom: -15px;
	transform: rotate(0deg);
  }
  .flower4 {
	top: -14px;
	transform: rotate(15deg);
  }
  .flower5 {
	right: 11px;
	top: -3px;
	transform: rotate(25deg);
  }
  .flower6 {
	right: -15px;
	bottom: -15px;
	transform: rotate(30deg);
  }
  .petal {
	height: 1em;
	width: 1em;
	border-radius: 40% 70% / 7% 90%;
	background: linear-gradient(var(--i_color), #e8ffb3);
	border: 0.5px solid #ffffff;
	z-index: 0;
	transition: width 0.8s ease, height 0.8s ease;
  }
  .two {
	transform: rotate(90deg);
  }
  .three {
	transform: rotate(270deg);
  }
  .four {
	transform: rotate(180deg);
  }
  .btns:hover .petal {
	background: linear-gradient(#E870A5, #FFEFF6);
	border: 0.5px solid #FFEFF6;
  }
  .btns:hover .flower {
	grid-template-columns: 1.5em 1.5em;
  }
  .btns:hover .flower .petal {
	width: 1.5em;
	height: 1.5em;
  }
  .btns:hover .text {
	background: rgba(255, 255, 255, 0.4);
  }
  .btns:hover div.flower1 {
	animation: 15s linear 0s normal none infinite running flower1;
  }
  @keyframes flower1 {
	0% {
	  transform: rotate(5deg);
	}
	100% {
	  transform: rotate(365deg);
	}
  }
  .btns:hover div.flower2 {
	animation: 13s linear 1s normal none infinite running flower2;
  }
  @keyframes flower2 {
	0% {
	  transform: rotate(35deg);
	}
	100% {
	  transform: rotate(-325deg);
	}
  }
  .btns:hover div.flower3 {
	animation: 16s linear 1s normal none infinite running flower3;
  }
  @keyframes flower3 {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
  .btns:hover div.flower4 {
	animation: 17s linear 1s normal none infinite running flower4;
  }
  @keyframes flower4 {
	0% {
	  transform: rotate(15deg);
	}
	100% {
	  transform: rotate(375deg);
	}
  }
  .btns:hover div.flower5 {
	animation: 20s linear 1s normal none infinite running flower5;
  }
  @keyframes flower5 {
	0% {
	  transform: rotate(25deg);
	}
	100% {
	  transform: rotate(-335deg);
	}
  }
  .btns:hover div.flower6 {
	animation: 15s linear 1s normal none infinite running flower6;
  }
  @keyframes flower6 {
	0% {
	  transform: rotate(30deg);
	}
	100% {
	  transform: rotate(390deg);
	}
  }
@media screen and (max-width:1200px){
	.thanks{padding-top: 60px;}
}
@media screen and (max-width:767px){
	.thanks{padding-top: 40px;margin:0px auto 70px}
}
@media screen and (max-width:560px){
}
/* 404 */
.in404{position:absolute; top:0; left:0; width:100%; height:100%; background:#FFF}
.in404_text{position:absolute; top:44%; left:50%; transform:translate(-50%,-50%); width:80%; text-align:center}
.in404_text h1{font-size:220px; color:#BBB}
.in404_text h6{margin:10px auto 30px; font-size:18px; color:#999}
.in404_text a{display:inline-block; padding:0 40px; line-height:32px; font-size:15px; color:#999; border:2px solid #DDD; -webkit-border-radius:100px; -moz-border-radius:100px; border-radius:100px}
@media screen and (max-width:959px){
.in404_text h1{font-size:180px}
}
@media screen and (max-width:767px){
	.in404_text h1{font-size:140px}
	.in404_text h6{font-size:16px}
	.in404_text a{font-size:14px}
}
@media screen and (max-width:560px){
	.in404_text h1{font-size:70px}
	.in404_text h6{margin:10px auto 18px; font-size:14px; line-height:20px}
	.in404_text a{font-size:13px}
}
/* 隐私政策 */
.privacy{margin-bottom: 100px;padding-top: 70px;}
#header{background-color: rgb(0 0 0 / 57%) !important;}
.privacy_cont{}
.privacy_cont .tit{margin-bottom:30px}
.privacy_cont .tit h2{font-size:24px; text-align:center; font-weight:bold}
.privacy_cont article, .privacy_cont article *{font-size:14px; color:#666; line-height:24px}
.foot {top: 130px;}
.privacy ol {padding: 0px;}
@media screen and (max-width:1200px){
	.privacy{margin-bottom: 50px;}
}
@media screen and (max-width:959px){
	.privacy{margin-bottom: 30px;}
}
/* tag */
.tag{
	box-sizing: border-box;
	padding: 0.4rem 0 1rem 0;
	background-color: #F7F7F7;
}
.tag>h2{
	font-size: 0.4rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #333;
	text-align: center;
}
.tag .products_all_right{
	width: 100%;
}
.tag>p{
	font-size: 0.2rem;
	color: #333;
	margin: 0.2rem 0 0.4rem 0;
	text-align: center;
}
.tag_list{
} 
.tag_list .products_ul{
	width: 100%;
}
.tag_list .products_ul li{
	width: calc((100% - 1.2rem) / 4);
}
@media screen and (max-width:1600px) {
}
@media screen and (max-width:1440px) {
	.tag{
		padding: 0.4rem 0 0.8rem 0;
	}
}
@media screen and (max-width:1366px) {
}
@media screen and (max-width:1200px) {
	.tag{
		padding: 0.4rem 0 0.6rem 0;
	}
	.tag>h2 {
		font-size: 0.35rem;
	}
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:960px) {
}
@media screen and (max-width:767px) {
	.tag_list .products_ul li{
		width: calc((100% - 0.2rem) / 2);
	}
	.tag>h2 {
		font-size: 0.25rem;
	}
}
@media screen and (max-width:560px) {
}
@media screen and (max-width:425px) {
}
.form_hide{
	display: none !important;
}
/* @media screen and (max-width:1440px){
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
}
@media screen and (max-width:1024px){
}
@media screen and (max-width:960px){
}
@media screen and (max-width:767px){
}
@media screen and (max-width:560px){
}
@media screen and (max-width:425px){
} */