/*
Theme Name: JinChuan
Version: 1.0
Description:
Author:
*/
@charset "utf-8";

:root {
	--i_color: #F9C106;
	--topContact_height: .4rem;
	--topNav_height:.7rem;
	--border_color: rgba(0, 0, 0, .1);
	--header_height: calc(var(--topContact_height) + var(--topNav_height));
}
@media screen and (max-width:1024px) {
	:root {
		--topNav_height:.6rem;
		--header_height: .6rem;
	}
}



.wrap {
	width: 94%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
}
.wrap2{width: 94%;margin-left: auto;margin-right: auto;}




.wrap_l{margin-left: 8.2vw;}
.wrap_r{margin-right: 8.2vw;}
.wrap_right{padding-right: 8.2vw;box-sizing: border-box;}
@media screen and (max-width:1680px) {
	.wrap_l{margin-left: 5vw;}
	.wrap_r{margin-right: 5vw;}
	.wrap_right{padding-right: 5vw;}
}
@media screen and (max-width:1024px) {
	.wrap_l{margin-left: 3vw;}
	.wrap_r{margin-right: 3vw;}
	.wrap_right{padding-right: 3vw;}
}




/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFF;
	z-index: 2014;
}
header::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background: #E8E8E8; z-index: 999;}
header::after{content: '';position: absolute; left: 0;top: 0;width: 100%;height: 5px;background: var(--i_color); z-index: 999;}

.top{background: #FFF;display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 4%; align-items: center;}

@media screen and (max-width:1024px) {
	.top{gap: 0 0;}
	header::after{height: 3px;}
}



/* logo */
.logo {
	flex-shrink: 0;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: var(--header_height);
}
.logo a {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
.logo img {max-height: 75%;}
@media screen and (max-width:1366px) {
	.logo img {max-height: 65%;}
}





.topCont{margin-left: auto; width: 100%;}

.topContact{height: var(--topContact_height); display:flex; flex-wrap:wrap;align-items: center; justify-content: flex-end; gap: 0 .3rem;}
.topContact ul{display:flex; flex-wrap:wrap;align-items: center; gap: 0 .3rem;}
.topContact li{position: relative;}
.topContact li::after{content: '';position:absolute; top:50%; transform:translate(0,-50%);right: -.15rem;width: 1px;height: 75%;background: rgb(0 0 0 / 25%);}
.topContact li,.topContact li a{font-size: 15px;}
.topContact li a:hover{color: var(--i_color); text-decoration: underline;}

.topContact dl{display:flex; flex-wrap:wrap; align-items: center;gap: 0 .14rem;}
.topContact dt{}
.topContact dt iconify-icon{font-size: 0.18rem; color: #777;}
.topContact dt:hover iconify-icon{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.topContact li, .topContact li a{font-size: 14px;}
}
@media screen and (max-width:1200px) {
	.topContact li, .topContact li a{font-size: 13px;}
}
@media screen and (max-width:1024px) {
	.topContact{display: none;}
}






.topNav{display:flex; flex-wrap:nowrap;}

/* 导航 */
@media screen and (min-width:1025px) {
	.i_nav {
		width: 64%;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		/* gap: 0 .6rem; */
		position: relative;
		z-index: 2014;
	}

	.i_nav>li {position: relative;}

	.i_nav>li>a {
		display: block;
		font-size: .18rem;
		color: #333;
		line-height: var(--topNav_height);
		white-space: nowrap;
		position: relative;
	}
	.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>li.active>a
	{
		color: var(--i_color);
	}

	.nav_products .sub-menu {display: none !important;}

	.i_nav .sub-menu {
		display: none;
		position: absolute;
		left:50%; transform:translate(-50%,0);
		top: var(--topNav_height);
		min-width: 1.4rem;
		background: #FFF;
		overflow: hidden;
		box-shadow: 0 .06rem .1rem rgb(0 0 0 / 8%);
		font-size: 0;
		text-align: center;
	}

	.i_nav .sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu li:not(:last-child):before {content: '';position:absolute; bottom: 0; left:50%; transform:translate(-50%,0);width: 90%;height: 1px;background: #EEE;}
	.i_nav .sub-menu a {
		display: block;
		padding: 0 .2rem;
		font-size: 0.15rem;
		color: #666;
		line-height: 0.4rem;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: relative;
	}

	.i_nav .sub-menu .current-menu-item::before,
	.i_nav .sub-menu .current-category-ancestor::before,
	.i_nav .sub-menu .current-post-ancestor::before,
	.i_nav .sub-menu .current-menu-ancestor::before,
	.i_nav .sub-menu .current-menu-parent::before,
	.i_nav .sub-menu li:hover::before{
		width: 100%;
	}

	.i_nav .sub-menu li:hover a {
		color: var(--i_color);
	}
}
@media screen and (max-width:1200px) {
	.i_nav{width: 70%;}
}








@media screen and (max-width:1024px) {
	.i_nav {
		opacity: 0;
		position: fixed;
		top: var(--header_height);
		left: 101%;
		margin: 0 0;
		width: 100%;
		width: 100vw;
		height: calc(100vh - var(--header_height));
		background: #FFF;
		overflow-y: auto;
		-webkit-transition:all .5s ease; transition:all .5s ease;
		z-index: 9999
	}
	.i_nav.active{opacity: 1; left: 0;}
	/*滚动条*/
	.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 span {
		display: block;
		position: absolute;
		top: 8px;
		right: 20px;
		width: 30px;
		height: 30px;
		box-sizing: border-box;
		border: 1px solid #CCC;
		-webkit-border-radius:50%; border-radius:50%;
		background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
		background-size: 20px;
	}
	.i_nav>.menu-item-has-children span.on {
		background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 12.998H5v-2h14z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
		background-size: 20px;
	}

	.i_nav>li>a {
		padding: 0 20px;
		font-size: 16px;
		color: #222;
		line-height: 44px;
		text-transform: uppercase;
	}
	.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{
		color: var(--i_color) !important;
	}

	.i_nav>li>.sub-menu {
		display: none
	}
	.i_nav>li>.sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu a {
		padding: 0 40px;
		font-size: 15px;
		color: #555;
		line-height: 40px;
		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: 40px;
		height: 40px;
		background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat center;
		background-size: 16px;
	}
	.i_nav>li>.sub-menu b.on {
		background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat center;
		background-size: 16px;
	}

	.i_nav .sub-menu .sub-menu {
		display: none;
	}

	.i_nav .sub-menu .sub-menu a {
		padding: 0 60px;
		font-size: 13px;
		color: #888;
		line-height: 36px;
		position: relative;
	}

	.i_nav a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis
	}
}





.nav_menu_products{display: none; position: fixed;top: var(--header_height); left: 0;width: 100%;background: #FFF;box-shadow: 0 4px 10px rgb(0 0 0 / 10%); z-index: 2014;-webkit-transition:top .5s ease; transition:top .5s ease;}

.nav_menu_products dl{padding: .3rem 0 .4rem;display:-webkit-flex; display:flex; flex-wrap:nowrap;justify-content: center; gap: 0 4%;}
.nav_menu_products dt{width: 100%;max-width: 2.4rem;}

.nav_menu_products figure{width:100%}
.nav_menu_products .coverPic{position:relative; overflow:hidden}
.nav_menu_products .coverPic::before{content:""; display:block; padding-bottom:75%}
.nav_menu_products .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: contain; transition:all .5s ease;}

.nav_menu_products figcaption{text-align: center;}
.nav_menu_products figcaption p{display: table; margin-left: auto;margin-right: auto; padding-bottom: 6px; font-size: 0.18rem;color: #333;font-weight: bold; position: relative;}
.nav_menu_products figcaption p::before{content: '';position: absolute;left: 0;bottom: 0;width: 0;height: 2px;background: var(--i_color);transition:all .5s ease;}

.nav_menu_products dt:hover img{transform: scale(1.05, 1.05);}
.nav_menu_products dt:hover p{}
.nav_menu_products dt:hover p::before{width: 100%;}

@media screen and (max-width:1366px) {
	.nav_menu_products figcaption p{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.nav_menu_products{display: none !important;}
}





/* 移动端导航按钮 */
.nav_menu {
	/* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
	flex-shrink: 0;
	position: relative;
	width: 22px;
	height: 16px;
	display: none;
	cursor: pointer
}
.nav_menu i {
	display: block;
	width: 100%;
	height: 3px;
	position: absolute;
	top: 50%;
	margin-top: -2px;
	background: var(--i_color);
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 3px;
	background: var(--i_color);
	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: -2px
}

.nav_menu.on::after {
	transform: rotate(-45deg);
	top: 50%;
	margin-top: -2px
}

@media screen and (max-width:1024px) {
	.nav_menu {
		display: block !important;
		margin-left: 0.2rem;
	}
}





.top_r{--size:.26rem}
.top_r {
	width: 22%;
	margin-left: auto;
	flex-shrink: 0;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0 .24rem;
}
@media screen and (max-width:1024px) {
	.top_r{--size:.2rem}
	.top_r{margin-left: auto; gap: 0 30px; width: auto;}
}
@media screen and (max-width:560px) {
	.top_r{gap: 0 18px;}
}



/* search */
.top_search {
	--search_height: .36rem
}
.top_search {
	width: 100%;
	background: #FFF;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 99;
}
.top_search form {
	width: 100%;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	overflow: hidden;
}
.top_search_ipt {
	width: 100%;
	height: var(--search_height);
	box-sizing: border-box;
	padding: 0 .12rem;
}
.top_search_btn {
	flex-shrink: 0;
	font-size: 0;
	color: #FFF;
	width: var(--search_height);
	height: var(--search_height);
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M10 18a7.95 7.95 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.95 7.95 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8s3.589 8 8 8m0-14c3.309 0 6 2.691 6 6s-2.691 6-6 6s-6-2.691-6-6s2.691-6 6-6'/%3E%3C/svg%3E") no-repeat center;
	background-size: .22rem;
	cursor: pointer;
}

@media screen and (max-width:1024px) {
	.top_search {
		--search_height: 28px
	}
	.top_search{width: 200px;}
}
@media screen and (max-width:560px) {
	.top_search{width: 160px;}
	.top_search_btn{background-size: 20px;}
}




.top_language{flex-shrink: 0; position: relative;}
.top_language_btn{height: var(--topNav_height);display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; cursor: pointer; position: relative;}
/* .top_language_btn::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);right: 0; width:0; height:0; border-left:4px solid transparent; border-right:4px solid transparent; border-top:6px solid #555;} */
.top_language_btn iconify-icon{font-size: var(--size);color: #555;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_language_btn.on iconify-icon{color: var(--i_color);}

.top_language_list {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(100% + .16rem);
	right: 0;
	min-width: 1.6rem;
	background: #FFF;
	box-sizing: border-box;
	box-shadow: 2px 6px 10px rgb(0 0 0 / 10%);
	padding: .1rem .18rem .1rem;
	z-index: 2;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}
.top_language_list.on {
	visibility: visible;
	opacity: 1;
	top: 100%;
}

.top_language_list ul {overflow: hidden;}
.top_language_list li{position: relative;left: 0;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_language_list a>span {
	display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;gap: 0 8px;
	box-sizing: border-box;
	overflow: hidden
}
.top_language_list .trp-ls-language-name{font-size: 15px; color: #666;line-height: .3rem;}

.top_language_list li:hover{left: 4px;}
.top_language_list li:hover .trp-ls-language-name{color: var(--i_color);}




.full_header_height{height: var(--header_height);}





/* banner */
.banner {
	width: 100%;
	font-size: 0;
	overflow: hidden;
	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 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-shrink: 0;
	height: 0;
	padding-bottom: calc(100vh - var(--header_height));
	position: relative;
	overflow: hidden
}
.banner .swiper-slide>img,
.banner .swiper-slide>a>img {
	position:absolute; top:0; left:0; width:100vw; height:100%; object-fit: cover;
}

.banner-button{position:absolute; top:48%; transform:translate(0,-50%); width: 0.6rem;height: 0.6rem;box-sizing: border-box;cursor: pointer; z-index: 3;-webkit-transition:all .5s ease; transition:all .5s ease;}
.banner-button-prev{left: -1rem}
.banner-button-next{right: -1rem;}
.banner-button iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.5rem;color:#FFF;}
.banner:hover .banner-button-prev{left: .1rem;}
.banner:hover .banner-button-next{right: .1rem;}

.banner-pagination {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: 18%;
	text-align: center;
	z-index: 3;
}
.banner-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	display: inline-block;
	margin: 0 6px;
	-webkit-border-radius:2rem; border-radius:2rem;
	background: #CCC;
	outline: none;
	cursor: pointer;
	position: relative;
	-webkit-transition:width .5s ease; transition:width .5s ease;
}
.banner-pagination .swiper-pagination-bullet-active {
	width: 36px;
	background:url(static/images/swiper-pagination-active.webp) no-repeat center;
	background-size: contain;
	-webkit-border-radius:0; border-radius:0;
}

.banner-mask{position: absolute; bottom: -.06rem;left: 0;width: 100%; z-index: 3;}
.banner-mask img{width: 100%;}

@media screen and (max-width:1440px) {
	.banner-pagination{bottom: 15%;}

	.banner-pagination .swiper-pagination-bullet{width: 8px;height: 8px; margin: 0 4px;}
	.banner-pagination .swiper-pagination-bullet-active{width: 30px;}
}
@media screen and (max-width:1024px) {
	.banner .swiper-slide{padding-bottom: 60%;}
	.banner-button-prev,.banner-button-next{display: none;}

	.banner-pagination{bottom: 16%;}
	.banner-mask{bottom: -2px;}
}
@media screen and (max-width:560px) {
	.banner-pagination{bottom: 18%;}
	.banner-pagination .swiper-pagination-bullet{width: 6px;height: 6px; margin: 0 4px;}
	.banner-pagination .swiper-pagination-bullet-active{width: 20px;}
	.banner-mask{bottom: -1px;}
}






.banner_text{position:absolute; top:24%; left: 0; width: 100%; text-align: center;}
.banner_text h3{font-size: 3vw;color: #FFF; font-weight: bold;}
.banner_text p{margin: .3rem 0 .4rem; font-size: 0.2rem;color: #FFF;}

@media screen and (max-width:1024px) {
	.banner_text{position:absolute; top:40%; transform:translate(0,-50%);}
	.banner_text p{margin: 14px 0 24px; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.banner_text h3{font-size: 17px;}
	.banner_text p{margin: 8px 0 14px; font-size: 13px; line-height: 1.5}
}






/* Main */
main{position: relative;overflow: hidden;}

.main_bg{background: #F4F4F4;}





.i_tit{}
.i_tit h3{display: table; font-weight: bold; position: relative;text-transform: capitalize;}
.i_tit h3 i{position: absolute; top: 4px;left: -.66rem; display: block; width: 0.5rem;height: 0.5rem;background:url(static/images/i-tit-icon.webp) no-repeat center;background-size: contain;}
.i_tit h6{font-size: 0.18rem; color: #333; line-height: 1.6;}
.i_tit h3 span{
	color: var(--i_color);
	text-transform: uppercase;
}
.i_tit.white h3,.i_tit.white h6{color: #FFF;}
.i_tit.center{text-align: center;}
.i_tit.center h3{margin-left: auto;margin-right: auto;}

@media screen and (max-width:1200px) {
	.i_tit h3 i{top: 2px; width: 0.44rem;height: 0.44rem;}
}
@media screen and (max-width:1024px) {
	.i_tit h3 i{top: 0; left: -48px; width: 34px;height: 34px;}
	.i_tit h6{font-size: 0.16rem; line-height: 1.4;}
}
@media screen and (max-width:768px) {
	.i_tit h3 i{width: 30px;height: 30px;}
}
@media screen and (max-width:560px) {
	.i_tit h3{margin-bottom: 14px;}
	.i_tit h3 i{left: -38px; width: 26px;height: 26px;}
	.i_tit h6{font-size: 14px;}
}






.i_more{display: table; border: 1px solid var(--i_color); border-radius:5px; transition:all .5s ease;}
.i_more span{padding: .08rem .2rem; display:flex; flex-wrap:wrap;align-items: center;gap: 0 .2rem;}
.i_more b{font-size: 0.18rem;color: var(--i_color);}
.i_more iconify-icon{font-size: 0.26rem;color:var(--i_color)}

.i_more.active{background: var(--i_color);}
.i_more.active b, .i_more.active iconify-icon{color: #FFF;}

.i_more.center{margin-left: auto;margin-right: auto;}

.i_more:hover{transform:translate(0,-4px); background: var(--i_color);}
.i_more:hover b,.i_more:hover iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.i_more span{padding: 8px 16px; gap: 0 10px;}
	.i_more b{font-size: 16px;}
	.i_more iconify-icon{font-size: 22px;}
}
@media screen and (max-width:768px) {
	.i_more span{padding: 6px 12px}
}
@media screen and (max-width:560px) {
	.i_more span{padding: 6px 10px}
	.i_more b{font-size: 14px;}
	.i_more iconify-icon{font-size: 20px;}
}







.pCat{}

.pCat_list{display:flex; flex-wrap:wrap;gap: .3rem 2%;}
.pCat_list li{width: 49%; border-radius:8px; background:url(static/images/pCat-bg.webp) no-repeat center; background-size: cover; position: relative; overflow: hidden;}
.pCat_list li::before{content: '';position: absolute;top: 0.2rem;right: 0.2rem; width: 0.22rem;height: 0.22rem;background:url(static/images/icon-drop.webp) no-repeat center; background-size: contain; z-index: 3;}

.pCat_list a{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 4%; height: 100%; box-sizing: border-box; padding: .2rem; position: relative;}
.pCat_list a::after{content: '';position: absolute;left: 0;bottom: -102%;width: 100%;height: 100%;background: rgb(0 0 0 / 60%)}
.pCat_list .bg{opacity: 0; visibility: hidden; position: absolute;top: 0;left: 0;width: 100%;height: 100%; object-fit: cover;}

.pCat_list .t{width: 100%; padding: .2rem 0 .2rem .2rem; display:flex; flex-wrap:wrap; align-items: flex-start; flex-direction: column; justify-content: space-between; gap: .2rem 0; position: relative; z-index: 3;}
.pCat_list .box h5{font-size: 0.24rem;font-weight: bold; position: relative;}
.pCat_list .box h5::after{content: ''; display: block; margin: .1rem 0 .2rem; width: 0.5rem;height: 3px;background: #333;}
.pCat_list .box span{display: block; font-size: 15px; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:4;}

.pCat_list .p{flex-shrink: 0; margin-left: auto; width: 50%; position: relative; overflow: hidden;}
.pCat_list .p::before{content: '';display: block;padding-bottom: 75%;}
.pCat_list .p img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: contain;}

.pCat_list li:hover::before{-webkit-filter:brightness(100); filter:brightness(100);}
.pCat_list li:hover a::after{bottom: 0;}
.pCat_list li:hover .bg{opacity: 1; visibility: visible;}
.pCat_list li:hover h5{color: #FFF;}
.pCat_list li:hover h5::after{background: #FFF;}
.pCat_list li:hover span{color: #FFF;}
.pCat_list li:hover .i_more{background: var(--i_color);}
.pCat_list li:hover .i_more b,.pCat_list li:hover .i_more iconify-icon{color: #FFF;}
.pCat_list li:hover .p{opacity: 0; visibility: hidden;}

.pCat_list li::before,.pCat_list a::after,.pCat_list .bg,.pCat_list .p,.pCat_list .box h5,.pCat_list .box h5::after,.pCat_list .box span{transition:all .5s ease;}

@media screen and (max-width:1024px) {
	.pCat_list li::before{width: 18px;height: 18px;}
	.pCat_list .t{padding: .1rem 0;}
	.pCat_list .box h5{font-size: 20px;}
	.pCat_list .box span{font-size: 14px; -webkit-line-clamp:2;}

	.pCat_list .p{width: 40%;}
}
@media screen and (max-width:768px) {
	.pCat_list{gap: .2rem 0;}
	.pCat_list li{width: 100%;}
	.pCat_list .box h5{font-size: 18px;}
}
@media screen and (max-width:560px) {
	.pCat_list li::before{width: 14px;height: 14px;}
	.pCat_list a{padding: 18px 16px;}
	.pCat_list .t{padding: 0 0; gap: 14px 0;}
	.pCat_list .box h5{font-size: 16px;}
	.pCat_list .box h5::after{margin: 8px 0 12px; height: 2px;}
	.pCat_list .box span{font-size: 13px;}
}








.hotProducts{background:url(static/images/hot-products-bg.webp) no-repeat center;background-size: cover; background-attachment: fixed;}

.hotProducts_nav{display:flex; flex-wrap:nowrap; position: relative;}
.hotProducts_nav::before,.hotProducts_nav::after{content: '';position: absolute;left: 0;width: 100%;height: 1px;background: rgb(255 255 255 / 20%);}
.hotProducts_nav::before{top: 0;}
.hotProducts_nav::after{bottom: 0;}

.hotProducts_nav dt{box-sizing: border-box; padding: .24rem .2rem; width: 100%; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .1rem; cursor: pointer; position: relative;}
.hotProducts_nav dt::before{content: '';position: absolute;left: 0;top: 0; width:0; height:2px; background: var(--i_color);}
.hotProducts_nav dt::after{content: '';position:absolute; top:50%; transform:translate(0,-50%);right: 0;width: 1px;height: 40%;background: rgb(255 255 255 / 20%);}
.hotProducts_nav p{font-size: 0.18rem;font-weight: bold; color: #FFF; position: relative;}
.hotProducts_nav i{margin-left: auto; flex-shrink: 0; font-size: 0.18rem;color: #FFF;}

.hotProducts_nav .active::before{width: 100%; transition:all .5s ease;}
.hotProducts_nav .active p,.hotProducts_nav .active i{color: 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:1024px) {
	.hotProducts_nav::before, .hotProducts_nav::after{display: none;}

	.hotProducts_nav{gap: 0 0; flex-wrap: wrap; border-left: 1px solid rgb(255 255 255 / 15%); border-top: 1px solid rgb(255 255 255 / 15%);}
	.hotProducts_nav dt{width: 50%; padding: 14px 10px; border-right: 1px solid rgb(255 255 255 / 15%); border-bottom: 1px solid rgb(255 255 255 / 15%);}
	.hotProducts_nav .active{border-color: var(--i_color);}
	.hotProducts_nav dt::before{height: 100%;}
	.hotProducts_nav .active::before{transition:none;}
	.hotProducts_nav dt::after{display: none;}
	.hotProducts_nav p{font-size: 16px;}
	.hotProducts_nav .active p{color: #FFF;}
	.hotProducts_nav i{display: none;}
}
@media screen and (max-width:560px) {
	.hotProducts_nav p{font-size: 15px;}
}






.hotProducts_show{}
.hotProducts_show .item{display: none;}
.hotProducts_show .item.active{display: block;}

.hotProducts_show ul{display:flex; flex-wrap:wrap; gap: .34rem 2%;}
.hotProducts_show li{width: 23.5%; background: #FFF; padding-bottom: .6rem; position: relative; transition:all .5s ease;}

.pItem{display: block;}
.pItem .coverPic{position: relative; overflow: hidden;}
.pItem .coverPic::before{content: '';display: block;padding-bottom: 75%;}
.pItem .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; transition:all .5s ease;}

.pItem .t{padding: .2rem; display:flex; flex-wrap:wrap; flex-direction: column; justify-content: space-between;}
.pItem p{font-size: 15px; color: #999; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}
.pItem h5{margin-top: 0.1rem; font-size: 0.18rem;font-weight: bold; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.pItem>span{position:absolute; left:50%; transform:translate(-50%,0); bottom: 0; width: calc(100% - .4rem); display:flex; flex-wrap:wrap;justify-content: center; align-items: center; gap: 0 .2rem; border-top: 1px solid #E5E5E5; padding: .18rem 0;}
.pItem>span b{font-size: 0.16rem;}
.pItem>span iconify-icon{font-size: 0.26rem;}

.hotProducts_show li:hover{background: var(--i_color);}
.pItem:hover img{transform: scale(1.05, 1.05);}
.pItem:hover p,.pItem:hover h5{color: #FFF;}
.pItem:hover>span{border-top-color: rgb(255 255 255 / 40%);}
.pItem:hover b{color: #FFF;}
.pItem:hover iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.hotProducts_show li{padding-bottom: 40px;}
	.pItem .t{padding: 14px;}
	.pItem p{font-size: 14px;}
	.pItem h5{font-size: 16px;}
	.pItem>span{padding: 10px 0; gap: 0 10px;}
	.pItem>span b{font-size: 14px;}
	.pItem>span iconify-icon{font-size: 20px;}
}
@media screen and (max-width:768px) {
	.hotProducts_show ul{gap: 30px 4%;}
	.hotProducts_show li{width: 48%;}
}
@media screen and (max-width:560px) {
	.hotProducts_show ul{gap: 20px 4%;}
	.hotProducts_show li{padding-bottom: 0;}
	.pItem h5{font-size: 15px;}
	.pItem>span{display: none;}
}





.about{background:url(static/images/about-bg.webp) no-repeat top center; background-size: 100%;}

.aboutCont{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 4%;}

.aboutPic{flex-shrink: 0; width: 48%; position: relative;}
.aboutPic img{width: 100%;}
.vBtn{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 1.6rem;height: 0.7rem;background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 116'%3E%3Cpath fill='%23f00' d='M159.89 17.93a20.55 20.55 0 0 0-14.471-14.47C132.73 0 81.666 0 81.666 0S30.6.105 17.913 3.565a20.55 20.55 0 0 0-14.47 14.47c-3.838 22.545-5.327 56.896.105 78.538a20.55 20.55 0 0 0 14.47 14.47c12.688 3.46 63.753 3.46 63.753 3.46s51.065 0 63.753-3.46a20.55 20.55 0 0 0 14.47-14.47c4.047-22.576 5.295-56.906-.105-78.642'/%3E%3Cpath fill='%23fff' d='m65.413 81.788l42.362-24.536l-42.362-24.537z'/%3E%3Cpath fill='%23fff' d='M491.237 33.24c5.557 0 9.751 1.048 12.687 3.04q4.404 2.989 6.292 9.438c1.258 4.299 1.782 10.17 1.782 17.72v12.269H485.05v3.774l.42 10.381c.314 2.307.839 3.985 1.677 5.033c.84 1.049 2.202 1.573 3.985 1.573c2.412 0 4.09-.943 4.928-2.83c.944-1.888 1.363-5.034 1.468-9.333l13.946.839c.105.629.105 1.468.105 2.516c0 6.606-1.783 11.535-5.453 14.785s-8.703 4.928-15.309 4.928c-7.969 0-13.526-2.516-16.672-7.444C471 95 469.322 87.24 469.322 76.86V64.172c.356-17.825 3.491-30.88 21.915-30.932m-193.88 1.363v52.533c0 3.146.314 5.453 1.048 6.816c1.489 2.915 5.348 2.17 7.445.734a8.4 8.4 0 0 0 2.831-3.25V34.602h16.043v71.617h-12.583l-1.363-8.808h-.314c-3.46 6.606-8.599 9.961-15.414 9.961c-10.49-.026-13.057-7.584-13.668-15.26l-.04-.541a65 65 0 0 1-.133-3.492V34.603zm82.732 0v52.533c0 3.146.314 5.453 1.048 6.816c1.49 2.915 5.348 2.17 7.445.734a8.4 8.4 0 0 0 2.831-3.25V34.602h16.043v71.617h-12.583l-1.363-8.808h-.314c-3.46 6.606-8.599 9.961-15.414 9.961c-10.49-.026-13.057-7.584-13.668-15.26l-.04-.541a65 65 0 0 1-.133-3.492V34.603zM250.8 33.24c5.243 0 9.542 1.048 12.688 3.25c3.145 2.202 5.557 5.558 7.025 10.171c1.468 4.614 2.202 10.8 2.202 18.455v10.38c0 7.655-.734 13.737-2.202 18.35c-1.468 4.615-3.775 7.97-7.025 10.172c-3.25 2.097-7.655 3.25-13.107 3.25c-5.663.105-10.067-1.048-13.317-3.145c-3.25-2.202-5.558-5.558-6.92-10.171c-1.364-4.614-1.993-10.696-1.993-18.35V65.22c0-7.655.734-13.946 2.307-18.56c1.573-4.718 3.984-8.074 7.34-10.17c3.355-2.098 7.654-3.251 13.002-3.251m181.822-28.73v37.748h.105c1.468-2.726 3.355-4.928 5.977-6.606a14.8 14.8 0 0 1 8.283-2.516c3.88 0 6.816 1.048 9.018 3.04c2.202 2.098 3.775 5.348 4.718 9.857c.915 4.368 1.435 10.409 1.467 18.027l.001.743v11.324c0 10.59-1.363 18.455-3.88 23.488c-2.62 5.033-6.605 7.55-12.058 7.55c-3.04 0-5.767-.734-8.283-2.097a14.7 14.7 0 0 1-5.35-5.392l-.208-.376h-.314l-1.678 6.816h-13.317V4.51zm-64.173 3.67V21.18h-15.938v85.039h-15.728V21.181H320.74V8.18zm-172.909 0l.01.04c.153.681 2.273 10.106 4.605 21.087l.184.87l.278 1.315l.186.883l.093.443l.186.888l.093.445l.185.891l.27 1.303c1.575 7.604 3.078 15.23 3.977 20.698h.42c.861-4.905 2.112-11.182 3.446-17.591l.35-1.674q.263-1.258.53-2.512l.274-1.297a2039 2039 0 0 1 5.597-25.444l.03-.135l.048-.21h16.043l-18.56 66.165v31.771h-15.833V74.448h-.105l-18.35-66.27zm54.945 36.175c-2.202 0-3.67 1.154-4.613 3.566s-1.363 6.081-1.363 11.22v22.334c0 5.243.419 9.122 1.258 11.43q1.259 3.46 4.718 3.46q3.303 0 4.719-3.46c.944-2.308 1.363-6.187 1.363-11.43V59.139c0-5.138-.42-8.913-1.363-11.22c-.944-2.411-2.517-3.565-4.719-3.565m184.968 2.098c-1.278 1.18-2.187 2.635-2.728 4.454l-.103.369v40.684c1.3 2.202 3.146 3.67 6.396 3.775q2.516 0 4.09-1.887q1.572-1.887 2.201-6.292q.605-4.227.629-11.644v-9.956c0-5.662-.21-9.961-.524-13.002c-.42-3.041-.943-5.243-1.887-6.501c-1.825-2.622-5.767-2.59-8.074 0m55.47-2.412q-2.675.157-3.776 1.573c-.838 1.048-1.363 2.621-1.677 4.928c-.309 2.26-.415 10.16-.42 10.476v5.148h11.744v-4.54v.087c-.007 1.587-.04-.921-.112-4l-.01-.414c-.066-2.706-.162-5.723-.297-6.757c-.315-2.412-.84-4.09-1.678-5.033c-.839-.944-2.097-1.468-3.775-1.468'/%3E%3C/svg%3E") no-repeat center; background-size: contain; cursor: pointer;}


.aboutText{width: 100%;}
.aboutText article a{color: var(--i_color);}

.aboutNum{display:flex; flex-wrap:wrap; gap: .3rem 0;}
.aboutNum dt{width: 50%; box-sizing: border-box; padding: 0 .3rem;}
.aboutNum span{display:flex; flex-wrap:nowrap;align-items: center;}
.aboutNum img{height: 0.48rem;}
.aboutNum span p{padding-left: 0.16rem;margin-left: 0.16rem; font-size: 0.18rem; color: #777; position: relative;}
.aboutNum span p::before{content: '';position:absolute; top: 0; left: 0; width: 1px;height: 100%;background: #999;}

.aboutNum h5{font-size: 0.32rem;}
.aboutNum h5,.aboutNum h5 i{font-weight: bold;}

@media screen and (max-width:1200px) {
	.aboutNum img{height: 0.38rem;}
}
@media screen and (max-width:1024px) {
	.aboutCont{flex-wrap: wrap; gap: 26px 0;}
	.aboutPic{width: 100%;}
	.aboutNum{gap: 30px 4%;}
	.aboutNum dt{padding: 0 0; width: 48%;}
	.aboutNum span p{font-size: 15px;}
	.aboutNum h5{font-size: 20px;}
	.aboutNum h5 i{font-size: 36px;}
}
@media screen and (max-width:768px) {
	.vBtn{height: 30px;}
}
@media screen and (max-width:560px) {
	.vBtn{height: 24px;}

	.aboutNum img{height: 26px;}
	.aboutNum span p{padding-left: 10px;margin-left: 10px; font-size: 14px;}
	.aboutNum h5 i{font-size: 30px;}
}








.brandLogo{background:url(static/images/brandLogo-bg.webp) no-repeat center; background-size: cover;}

.brandLogo_list{position:relative; overflow:hidden}
.brandLogo_list .swiper-wrapper{display:flex; position:relative; width:100%}
.brandLogo_list .swiper-slide{background: #FFF; flex-shrink:0; box-sizing: border-box; border: 1px solid #DDD; border-radius:6px; position:relative; overflow: hidden;}
.brandLogo_list .swiper-slide::before{content: '';display: block;padding-bottom: 50%;}
.brandLogo_list img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.brandLogo-pagination{display:block; text-align:center}
.brandLogo-pagination .swiper-pagination-bullet{width:.6rem; height:3px; display:inline-block; margin:0 6px; background:#DDD; outline:none; cursor:pointer;}
.brandLogo-pagination .swiper-pagination-bullet-active{background:var(--i_color)}

@media screen and (max-width:1024px) {
	.brandLogo-pagination .swiper-pagination-bullet{width: 0.3rem; height: 2px;}
}
@media screen and (max-width:560px) {
	.brandLogo_list .swiper-slide{border-radius:4px;}
}






.whyChooseList{width: 100%; position: relative; overflow: hidden;}
.whyChooseList::before{content: '';display: block;padding-bottom: 40%;}

.whyChooseList dl{position:absolute; top:0; left:0; width:100%; height:100%; display:flex; flex-wrap:wrap;}
.whyChooseList dt{width: 18vw; height: 100%; position: relative; transition:all .5s ease; overflow: hidden;}
.whyChooseList dt::after{content: ''; position: absolute;left: 0;bottom: 0;width: 100%;height: 40%; background:linear-gradient(to bottom, transparent, #000);}
.whyChooseList dt>img{width: 100%; height: 100%; object-fit: cover;}

.whyChooseList .t1{position: absolute;left: 0;bottom: .3rem; width: 100%; height: 22%; box-sizing: border-box; padding: 0 .2rem; text-align: center; z-index: 3;}

.whyChooseList .t{transition:all .5s ease;}
.whyChooseList .t img{height: .6rem;}
.whyChooseList .t h5{margin-top: 0.2rem; font-size: 0.2rem;color: #FFF;font-weight: bold; line-height: 1.3;}

.whyChooseList .t2{display: none; position: absolute;left: 0;bottom: .3rem; width: 36vw; box-sizing: border-box; padding: 0 .3rem; z-index: 3;}
.whyChooseList .t2 h5{color: var(--i_color);}
.whyChooseList .t2 p{margin-top: 0.1rem; font-size: 0.16rem; color: #FFF; line-height: 1.4;}

.whyChooseList dt.curr .t1{display: none;}
.whyChooseList dt.curr .t2{display: block;}

@media screen and (max-width:1440px) {
	.whyChooseList .t img{height: .5rem;}
	.whyChooseList .t2{width: 52vw;}
}
@media screen and (max-width:1200px) {
	.whyChooseList .t img{height: .44rem;}
	.whyChooseList .t h5{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.whyChooseList::before{display: none;}
	.whyChooseList dl{position: initial;}
	.whyChooseList dt{width: 100%; margin-bottom: 40px;}
	.whyChooseList dt:last-child{margin-bottom: 0;}
	.whyChooseList dt::after{display: none;}

	.whyChooseList .t1{display: none !important;}
	.whyChooseList .t2{display: block !important; margin-top: 20px; position: initial; width: 100%; bottom: 30px;}
	.whyChooseList .t h5{font-size: 18px;}
	.whyChooseList .t2 p{font-size: 15px; color: #666;}
}
@media screen and (max-width:768px) {
	.whyChooseList .t img{height: 30px;}
	.whyChooseList .t h5{margin-top: 14px;}
}
@media screen and (max-width:560px) {
	.whyChooseList dt{margin-bottom: 30px;}
	.whyChooseList .t2{padding: 0 0;}
	.whyChooseList .t img{height: 26px;}
	.whyChooseList .t h5{font-size: 16px;}
	.whyChooseList .t2 p{font-size: 13px;}
}







.news{background:linear-gradient(to bottom, #F9F9F9, transparent); position: relative;}
.news::before{content: ''; position:absolute; left:50%; transform:translate(-50%,0); top: 0; width: 100%; height: 2rem; background:url(static/images/logo-hollow.webp) no-repeat top center; background-size: contain;}

@media screen and (min-width:1025px) {
	.newsList{overflow: hidden; border-bottom: 1px solid #EEE;}
	.newsList li{width: 25%; float: left; margin-left: 3%; margin-bottom: 0.3rem;}

	.newsList .coverPic{width:100%; position:relative; overflow:hidden}
	.newsList .coverPic::before{content:""; display:block; padding-bottom:70%}
	.newsList .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; transition:all .5s ease;}

	.newsList .t{margin-top: 0.16rem;}
	.newsList h5{font-size: 0.18rem;font-weight: bold; line-height: 1.4; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}
	.newsList p{margin: .06rem 0 .12rem; font-size: 0.16rem;color: #666; line-height: 1.6; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}
	.newsList span{display:flex; flex-wrap:wrap; align-items: center; gap: 0 6px;}
	.newsList span iconify-icon{font-size: 0.2rem; color:#999;}
	.newsList span i{font-size: 14px;}

	.newsList li:first-child{width: 44%; margin-left: 0; margin-bottom: 0;}
	.newsList li:first-child .coverPic::before{padding-bottom: 80.5%;}
	.newsList li:first-child h5{font-size: 0.24rem;}
	.newsList li:first-child h5,.newsList li:first-child p{white-space:initial; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3}

	.newsList li:hover img{transform: scale(1.05, 1.05);}
	.newsList li:hover h5{color: var(--i_color);}
}

@media screen and (max-width:1024px) {
	.newsList li{margin-bottom: 20px;}
	.newsList a{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 30px;}

	.newsList .coverPic{flex-shrink: 0; width:240px; position:relative; overflow:hidden}
	.newsList .coverPic::before{content:""; display:block; padding-bottom:70%}
	.newsList .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; transition:all .5s ease;}

	.newsList .t{width: 100%;}
	.newsList h5{font-size: 17px; font-weight: bold; line-height: 1.5;}
	.newsList p{margin: 10px 0 16px; font-size: 14px; line-height: 1.6;}
	.newsList h5,.newsList p{overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

	.newsList span{display:flex; flex-wrap:wrap; align-items: center; gap: 0 6px;}
	.newsList span iconify-icon{font-size: 0.2rem; color:#999;}
	.newsList span i{font-size: 13px;}
}
@media screen and (max-width:560px) {
	.newsList a{gap: 0 20px;}
	.newsList .coverPic{width: 140px;}
	.newsList h5{margin-bottom: 10px; font-size: 15px; line-height: 1.4;}
	.newsList p{display: none;}
	.newsList span iconify-icon{font-size: 18px;}
	.newsList span i{color: #999;}
}







footer{background:url(static/images/footer-bg.webp) no-repeat center; background-size: cover;}

.fTop{display:flex; flex-wrap:nowrap; align-items: flex-end; gap: 0 4%;}

.fLogo{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .36rem;}
.fLogo img{flex-shrink: 0; height: 1.2rem;}
.fLogo h4{font-size: 2.4vw; color: #FFF;font-weight: bold; line-height: 1.4;}

.fMedia{margin-left: auto;display:flex; flex-wrap:wrap;align-items: center; gap: 0 .2rem;}
.fMedia>p{font-size: 0.26rem;color: #FFF;}
.fMedia ul{display:flex; flex-wrap:wrap;align-items: center; gap: 0 .2rem;}
.fMedia li{transition:all .5s ease;}
.fMedia li a{display:block; width: 0.4rem;height: 0.4rem; background: #3E4245; border-radius:50%; position: relative;}
.fMedia li iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.18rem;color: #FFF;}

.fMedia li:hover{transform:translate(0,-4px);}
.fMedia li a:hover{background: var(--i_color);}


.fCont{border-top: 1px solid rgb(255 255 255 / 20%); border-bottom: 1px solid rgb(255 255 255 / 20%); display:flex; flex-wrap:nowrap; justify-content: space-between;}

.fTit{margin-bottom: 0.26rem; font-size: .26rem;font-weight: bold; color: #FFF;}

.fContact{flex-shrink: 0; width: 36%;}
.fContact li{margin-bottom: 0.2rem;}
.fContact li h6, .fContact li a,.fContact li p{font-size: 0.18rem; line-height: 1.5}
.fContact li h6{color: rgb(255 255 255 / 80%);}
.fContact li, .fContact li a,.fContact li p{color: #FFF;}

.fContact li a:hover{color: var(--i_color); text-decoration: underline;}


.fNav li{margin-bottom: 0.1rem;}
.fNav li a{display: table; padding: .1rem .3rem .1rem 0; font-size: 0.18rem;color: #FFF; position: relative; transition:all .5s ease;}
.fNav li a::after{opacity: 0; content: '';position:absolute; top:50%; transform:translate(0,-50%); right:6px; width: 0.2rem;height: 0.2rem; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23F9C106' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M12.293 7.293a1 1 0 0 1 1.414 0l4 4a1 1 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414L15.586 12l-3.293-3.293a1 1 0 0 1 0-1.414'/%3E%3Cpath d='M6.293 7.293a1 1 0 0 1 1.414 0l4 4a1 1 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414L9.586 12L6.293 8.707a1 1 0 0 1 0-1.414'/%3E%3C/g%3E%3C/svg%3E") no-repeat center; background-size: contain; transition:all .5s ease;}

.fNav li a:hover{color: var(--i_color);}
.fNav li a:hover::after{opacity: 1; right: 0;}


.fQR{flex-shrink: 0; max-width: 18%;}
.fQR ul{display:flex; flex-wrap:wrap; gap: .4rem .3rem;}
.fQR li p{margin-bottom: 0.1rem; font-size: .16rem;color: #FFF;}
.fQR li img{height: 1.06rem;}
.fNav ul ul{display: none !important;}

.fCr{padding: .2rem 0;}
.fCr p,.fCr a{font-size: 0.17rem;color: #FFF;}
.fCr a:hover{color: var(--i_color); text-decoration: underline;}

@media screen and (max-width:1440px) {
	.fLogo{width: 50%;}
	.fQR{max-width: 20%;}
}
@media screen and (max-width:1024px) {
	.fLogo img{height: 60px;}
	.fLogo h4{font-size: 20px}
	.fMedia>p{display: none;}
	.fMedia ul{gap: 0 16px;}
	.fMedia li a{width: 34px;height: 34px;}
	.fMedia li iconify-icon{font-size: 16px;}

	.fTit{font-size: 20px;}
	.fContact{width: 60%;}
	.fContact li h6, .fContact li a, .fContact li p{font-size: 16px;}

	.fNav{display: none;}

	.fQR{max-width: 30%;}

	.fCr p, .fCr a{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.fLogo{gap: 0 20px;}
	.fLogo h4{font-size: 18px;}

	.fTit{font-size: 18px;}
	.fContact li{margin-bottom: 14px;}
	.fQR li img{height: 80px;}
	.fQR li p{font-size: 13px;}
}
@media screen and (max-width:560px) {
	.fTop{flex-wrap: wrap; gap: 20px 0;}
	.fLogo{width: 100%;}
	.fLogo img{height: 50px;}
	.fLogo h4{font-size: 16px; line-height: 1.4;}
	.fMedia{margin-left: 0;}

	.fCont{flex-wrap: wrap;gap: 20px 0;}
	.fTit{margin-bottom: 16px;}
	.fContact{width: 100%;}
	.fQR{max-width: none; width: 100%;}

	.fCr p, .fCr a{font-size: 14px;}
	.fCr{padding: .2rem 0 0.7rem 0;}
}







/* ================================================= */

.banner__{width: 100%; position: relative; overflow: hidden;}
.banner__::before{content: ''; display: block;padding-bottom: 27%;}
.banner__>img{position:absolute; top:0; left:0; width:100vw; height:100%; object-fit: cover;}

.banner__text{position:absolute; top:42%; transform:translate(0,-50%); left: 0; width: 100%;}
.banner__text h2{font-size: 3.3vw; color: #FFF; font-weight: 900;}

@media screen and (max-width:1024px) {
	.banner__::before{padding-bottom: 35%;}
	.banner__text h2{font-size: 4vw;}
}
@media screen and (max-width:560px) {
	.banner__::before{padding-bottom: 45%;}
	.banner__text h2{font-size: 5vw;}
}

/* Breadcrumb */
.in_position{position:relative; display:flex;flex-wrap:nowrap;align-items:baseline;}
.in_position a{display:block;font-size:15px;color:#FFF;position:relative;line-height:20px;}
.in_position a:first-child{padding-left: 0.26rem;}
.in_position a:first-child::before{
	content: '';
	position:absolute; top:50%; transform:translate(0,-50%);left: 0;
	width: 18px;height: 18px;
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M13 19h6V9.978l-7-5.444l-7 5.444V19h6v-6h2zm8 1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V9.49a1 1 0 0 1 .386-.79l8-6.223a1 1 0 0 1 1.228 0l8 6.223a1 1 0 0 1 .386.79z'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
}
.in_position a:not(:last-child):after {content:">";margin:0 8px;color:#FFF}
.in_position a:last-child {color:var(--i_color) !important}
.in_position a:hover {color:var(--i_color)}
@media screen and (max-width:1024px) {
	.in_position{margin-top: 10px;}
	.in_position a {font-size:14px}
}
@media screen and (max-width:560px) {
	.in_position{margin-top: 6px;}
	.in_position a {font-size:13px}
}







.category_page{}


.categoryBox{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 4%;}
.cat_nav{flex-shrink: 0; width: 22%; box-sizing: border-box; position: relative; padding: .3rem .2rem; background: #F6F6F6;}
.catList_show{width: 100%; margin-left: auto;}

 @media screen and (max-width:1200px) {
	.cat_nav{width: 24%;}
}
@media screen and (max-width:1024px) {
	.categoryBox{flex-wrap: wrap; gap: 40px 0;}
	.catList_show{width: 100%; padding: 0 0; margin: 0 0;}
}
@media screen and (max-width:560px) {
	.categoryBox{margin-bottom: 50px;}
}







.cat_nav_tit{padding-bottom: 0.2rem; text-align: center; position: relative; border-bottom: 1px solid #CCC;}
.cat_nav_tit h4{font-size: 0.36rem;color: #333; font-weight: bold;}
.cat_nav_tit iconify-icon{display: none;}

.cat_nav_list{position: relative;}
.cat_nav_list li{position: relative;}

.cat_fold_tit{display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;gap: 0 .2rem;}
.cat_fold_tit a{padding: .2rem 0; width: 100%; font-size: 0.18rem;font-weight: bold;}
.cat_fold_tit iconify-icon{margin-left: auto;flex-shrink: 0;font-size: 0.24rem;cursor: pointer;-webkit-transition:all .5s ease; transition:all .5s ease;}
.cat_fold_tit a:hover,.active .cat_fold_tit a,.active .cat_fold_tit iconify-icon{color: var(--i_color);}
.active .cat_fold_tit a{color: var(--i_color);}
.active .cat_fold_tit iconify-icon{color: var(--i_color); -webkit-transform:rotate(-180deg); transform:rotate(-180deg);}

.cat_fold_sub{display: none; padding:0 .3rem .12rem 0;}
.cat_fold_sub dt{box-sizing: border-box; border-radius:4px;}
.cat_fold_sub a{display: block;padding: .12rem .16rem .14rem;font-size: 0.16rem; position: relative;}
.cat_fold_sub dt.active{background: var(--i_color);}
.cat_fold_sub dt.active a{color: #FFF !important;}
.cat_fold_sub dt:hover a{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.cat_nav_tit h4{font-size: 0.3rem;}
}
@media screen and (max-width:1200px) {
	.cat_nav_tit h4{font-size: 0.26rem;}
}
@media screen and (max-width:1024px) {
	.cat_nav::before{display: none;}

	.cat_nav{width: 100%; padding: 0 0; background: none;}
	.cat_nav_tit{border: none; padding: 14px 28px; margin: 0 0; display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;position: relative;z-index: 2; background: var(--i_color);}
	.cat_nav_tit h4{font-size: 20px; color: #FFF;}
	.cat_nav_tit iconify-icon{display: block; margin-left: auto;font-size: 26px;color: #FFF;}

	.cat_nav_list{display: none;box-sizing: border-box;padding: 12px 30px 30px; background: #F6F6F6;}
	.cat_nav_list li{border-top: none; border-bottom: 1px solid rgb(0 0 0 / 8%);}
	.cat_nav_list li.active{}
	.cat_fold_tit a{padding: 16px 0;font-size: 17px;}
	.cat_fold_sub a{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.cat_nav_tit{padding: 12px 20px;}
	.cat_nav_tit h4{font-size: 18px;}
	.cat_nav_tit iconify-icon{font-size: 22px;}

	.cat_fold_tit a{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.cat_nav_tit h4{font-size: 16px;}

	.cat_nav_list{padding: 20px 20px 10px;}

	.cat_fold_tit a{font-size: 15px;}
	.cat_fold_tit iconify-icon{font-size: 22px;}
	.cat_fold_sub a{font-size: 14px;}
}






.category_des{}
.category_name{padding-bottom: 8px; margin-bottom: 0.24rem; position: relative;}
.category_name::after{content: '';position: absolute;bottom: 0;left: 0;width: 1rem;height: 4px;background: var(--i_color);}
.category_name h1{font-weight: bold; position: relative; line-height: 1.4;}
.category_des span{color: #555;}

@media screen and (max-width:1024px) {
	.category_name{margin-bottom: 18px; padding-bottom: 0.1rem;}
	.category_name::after{width: 80px; height: 3px;}
}







.pList{display:flex; flex-wrap:wrap; gap: .34rem 2.5%;}
.pList li{width: 31.66%; background: #F6F6F6; padding-bottom: .6rem; position: relative; transition:all .5s ease;}

.pList li:hover{background: var(--i_color);}

@media screen and (max-width:1024px) {
	.pList li{padding-bottom: 40px;}
}
@media screen and (max-width:768px) {
	.pList{gap: 30px 4%;}
	.pList li{width: 48%;}
}
@media screen and (max-width:560px) {
	.pList{gap: 20px 4%;}
	.pList li{padding-bottom: 0;}
}






/* Paging */
.in_paging{
	--size:34px;
	--border_radius:100px;
}
.in_paging ul{display:flex; flex-wrap:wrap;justify-content:center;align-items:center;text-align: center;}
.in_paging li{min-width: var(--size);margin: 0 4px;}
.in_paging a,.in_paging span {display:block;padding: 0 10px; height: var(--size); line-height:calc(var(--size) - 2px);font-size:14px;color:#666;background:#FFF;box-sizing: border-box; border:1px solid #CCC; border-radius:var(--border_radius);overflow:hidden;}
.in_paging i {margin-top:14px;width:100%;font-size:13px;color:#888;}
.in_paging a:hover,.in_paging .curr_page a,.in_paging .curr_page span {border-color:var(--i_color) !important;background:var(--i_color);color:#FFF !important}

@media screen and (max-width:560px) {
	.in_paging{--size:30px;}
}



/* about_us */
.about_us_bac{
   box-sizing: border-box;
   padding-bottom: 0.8rem;
}
.about_us{
   position: relative;
   z-index: 2;
}
.about_us>img{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: auto;
   z-index: -1;
}
.about_us_box{
   display: flex;
   flex-wrap: wrap;
   margin-top: 0.4rem;
}
.about_us_left{
   width: 50.67%;
   position: relative;
}
.about_us_left::after{
   content: '';
   display: block;
   padding-bottom: 71.71%;
}
.about_us_left img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
   cursor: pointer;
}
.about_us_right{
   width: 49.33%;
   box-sizing: border-box;
   padding-left: 3.5%;
}
.about_us_right h3{
	font-size: 0.18rem;
	color: #222;
	line-height: 166%;
	margin-top: 0.4rem;
}
.about_us_ul{
   display: flex;
   justify-content: center;
   gap: 1.5rem;
   margin-top: 0.4rem;
}
.about_us_ul li{

}
.about_us_text{
   display: flex;
   align-items: center;
}
.about_us_ul li img{
   height: 0.48rem;
}
.about_us_ul li h4{
   font-size: 0.18rem;
   color: #666;
   text-transform: capitalize;
   box-sizing: border-box;
   padding-left: 0.36rem;
   position: relative;
}
.about_us_ul li h4::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 0.18rem;
	transform: translate(0,-50%);
	width: 1px;
	height: 0.24rem;
	background-color: rgba(34,34,34,0.5);
}
.about_us_ul li h5{
   font-size: 0.3rem;
   color: #222;
   display: flex;
   font-weight: bold;
   align-items: flex-end;
   gap: 0.05rem;
   margin-top: 0.1rem;
}
.about_us_ul li h5 span{
   font-size: 0.64rem;
   color: #222;
   font-weight: bold;
   line-height: 100%;
}


@media screen and (max-width:1440px){
	.about_us_right h3 {
		font-size: 0.16rem;
		margin-top: 0.3rem;
	}
	.about_us_ul li h5 span {
		font-size: 0.6rem;
	}
	.about_us_ul {
		gap: 1.2rem;
		margin-top: 0.3rem;
	}
}
@media screen and (max-width:1200px){
	.about_us_ul li h5 span {
		font-size: 0.55rem;
	}
	.about_us_ul li h4 {
		font-size: 0.16rem;
	}
	.about_us_ul {
		gap: 1rem;
	}
	.about_us_bac {
		padding-bottom: 0.6rem;
	}
}
@media screen and (max-width:1024px){
	.about_us_ul li h5 span {
		font-size: 0.5rem;
	}
}
@media screen and (max-width:960px){
	.about_us_ul li h5 span {
		font-size: 0.45rem;
	}
}
@media screen and (max-width:767px){
	.about_us_ul li h5 span {
		font-size: 0.4rem;
	}
	.about_us_left {
		width: 100%;
	}
	.about_us_right {
		width: 100%;
		padding-left: 0%;
	}
	.about_us_right h3 {
        margin-top: 0.4rem;
    }
	.about_us_ul {
        gap: 0.4rem;
    }
}
@media screen and (max-width:560px){
	.about_us_ul li img {
		height: 0.4rem;
	}
}
@media screen and (max-width:425px){

}


/* about_choose */
.about_choose_bac{
   background: url('static/imgs/about_choose.webp') center no-repeat;
   background-size: cover;
   box-sizing: border-box;
   padding: 0.8rem 0;
}
.about_choose{

}
.about_choose_box{
   background-color: #fff;
   margin-top: 0.4rem;
   display: flex;
   flex-wrap: wrap;
}
.about_choose_text{
   width: 45.33%;
   box-sizing: border-box;
   padding: 0.6rem;
}
.about_choose_ul{
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.about_choose_ul li{
	display: flex;
	border-bottom: 1px solid #E5E5E5;
	box-sizing: border-box;
	padding-bottom: 0.25rem;
}
.about_choose_ul li img{
   width: 0.4rem;
   height: 0.4rem;
   object-fit: contain;
}
.about_choose_txt{
   width: calc(100% - 0.4rem);
   box-sizing: border-box;
   padding-left: 0.15rem;
}
.about_choose_txt h4{
   font-size: 0.2rem;
   color: #333;
   font-weight: bold;
   margin-top: 0.1rem;
   text-transform: capitalize;
}
.about_choose_txt h5{
   display: none;
   font-size: 0.18rem;
   color: #666;
   line-height: 0.3rem;
   height: 1.5rem;
   overflow: auto;
   box-sizing: border-box;
   padding-right: 0.1rem;
   margin-top: 0.15rem;
   animation: ooo 0.7s ease;
}
/*滚动条*/
.about_choose_txt h5::-webkit-scrollbar{width:1px; height:1px}
.about_choose_txt h5::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); background:#333}
.about_choose_txt h5::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); border-radius:0; background:#F1F1F1}

.about_choose_img{
   width: 54.67%;
}
.about_choose_dl{
	height: 100%;
}
.about_choose_dl dt{
	height: 100%;
	animation: ooo 0.7s ease;
}
.about_choose_dl dt img{
   width: 100%;
   height: 100%;
   object-fit: cover;
}


.about_choose_ul li.current h5{
    display: block;
}

@keyframes ooo {
	0%{
		opacity: 0;
		transform: translateY(0.1rem);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}





@media screen and (max-width:1440px){

}
@media screen and (max-width:1200px){
	.about_choose_text {
		padding: 0.4rem;
	}
	.about_choose_txt h5 {
		font-size: 0.16rem;
		line-height: 0.25rem;
		height: 1.25rem;
	}
	.about_choose_bac {
		padding: 0.6rem 0;
	}
	.about_choose_txt h4 {
		font-size: 0.18rem;
	}
}
@media screen and (max-width:1024px){

}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
	.about_choose_text {
		width: 100%;
	}
	.about_choose_img {
		width: 100%;
	}
	.about_choose_box {
		flex-direction: column-reverse;
	}
	.about_choose_txt h5 {
        height: 1rem;
    }
}
@media screen and (max-width:560px){
    .about_choose_text {
        padding: 0.4rem 0.2rem;
    }
}
@media screen and (max-width:425px){

}


/* about_company */
.about_company_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
}
.about_company{

}



/*  */
.com_partner_box{
	margin-top: 0.4rem;
}

.com_partner{position:relative}
.com_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.com_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.com_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
	transform: scale(0.85);
	transition: all 0.5s ease;
}

.com_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden}
.com_partner_list .img:before{content:""; display:block; padding-bottom:75%}
.com_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}


.com_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}

.com_partner_list .img::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	transition: all 0.5s ease;
}

.com_partner_list .swiper-slide-active{
	transform: scale(1);
}
.com_partner_list .swiper-slide-active .img::after{
	top: 100%;
}






/* 指示器 */
.com_partner .pt-pagination{
	display:none;
	text-align:center;
	margin:0.4rem auto 0
}
.com_partner .pt-pagination .swiper-pagination-bullet{
	width:0.12rem;
	height:0.12rem;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	cursor:pointer;
	display:inline-block;
	margin:0 0.05rem;
	background:var(--i_color);
	border-radius:2px;
	opacity: 1;
	outline:none
}
.com_partner .pt-pagination .swiper-pagination-bullet-active{
	position:relative;
	background:transparent;
}

/* 左右箭头 */
.com_partner .pt-button-prev, .com_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;
}
.com_partner .pt-button-prev iconify-icon, .com_partner .pt-button-next iconify-icon{
	font-size: 0.25rem;
	color: var(--i_color);
	transition: all 0.3s ease;
}
.com_partner .pt-button-prev{left:15%;}
.com_partner .pt-button-next{right:15%;}

.com_partner .pt-button-prev:hover, .com_partner .pt-button-next:hover{
	background-color: var(--i_color);
}
.com_partner .pt-button-prev:hover iconify-icon, .com_partner .pt-button-next:hover iconify-icon{
	color: #fff;
}

@media screen and (max-width:1440px){

}
@media screen and (max-width:1200px){
	.com_partner .pt-button-prev, .com_partner .pt-button-next{display:none}
	.com_partner .pt-pagination{display:block}
	.about_company_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){

}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){

}
@media screen and (max-width:560px){

}





/* about_form */
.about_form_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
   background: url('static/imgs/about_form_bac.webp') center no-repeat;
   background-size: cover;
}
.about_form{

}
.about_form_box{
	margin-top: 0.4rem;
}




#wpforms-38{--input_font_size:0.16rem; --input_height:0.6rem}
#wpforms-38{width:100%; margin:0 auto; padding:0}
#wpforms-form-38{width:100%; overflow:hidden}


#wpforms-38 input, #wpforms-38 button{margin:0; padding:0; border:none; background:none}
#wpforms-38 .wpforms-field{padding:0; margin:0}
#wpforms-38 .wpforms-error-container{line-height:16px}
#wpforms-38 .wpforms-field-container{width:100%; display:-webkit-flex; display:flex; flex-wrap:wrap; overflow:hidden}
#wpforms-38 .wpforms-submit-container{
	padding:0!important; width:2.6rem; height:0.44rem; background:var(--i_color); position:relative;
	margin-top: 0.2rem;
}





#wpforms-38 .wpforms-field{
	position: relative;
}
#wpforms-38 .wpforms-field-label{
	font-size: 0;
}
#wpforms-38 .wpforms-field-label span{
	position: absolute;
	top: 12px;
	left: 3px;
	font-size: 0.14rem;
    color: red;
}
#wpforms-38 .wpforms-error{
	font-size: 0;
}
#wpforms-38 .wpforms-field{width:100%; margin-bottom:10px; background:transparent; overflow:hidden}
#wpforms-38-field_1-container,#wpforms-38-field_2-container{margin-right:0.2rem !important}
#wpforms-38-field_1-container,#wpforms-38-field_2-container,#wpforms-38-field_3-container{width:calc((100% - 0.4rem) / 3) !important}

#wpforms-38 input{height:var(--input_height)}
#wpforms-38 textarea{height:2rem}
#wpforms-38 input, #wpforms-38 textarea{
	width:100%;border: 0; max-width:100%!important; font-size:var(--input_font_size);
	background-color: white; color:#222;
	box-sizing:border-box; line-height:var(--input_height); padding:0 10px;
	border-radius: 0.04rem;
	border: 1px solid rgba(51,51,51,0.2);
}
#wpforms-38 textarea{
	line-height: 166% !important;
	padding:10px !important;
}

#wpforms-38 input::-webkit-input-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-38 input::-moz-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-38 input::-moz-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-38 input::-ms-input-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-38 textarea::-webkit-input-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-38 textarea::-moz-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-38 textarea::-moz-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-38 textarea::-ms-input-placeholder{color:#666; font-size:var(--input_font_size)}

#wpforms-38 #wpforms-38-field_1-error, #wpforms-38 #wpforms-38-field_2-error, #wpforms-38 #wpforms-38-field_3-error, #wpforms-38 #wpforms-38-field_4-error{position:absolute; font-size:14px}



#wpforms-38 .wpforms-submit-container button{overflow: hidden;width:100%; height:0.44rem; font-size:0.16rem; color:#FFF; line-height:0.44rem; cursor:pointer; text-transform:capitalize; position:relative; z-index:2}
#wpforms-38 .wpforms-submit-container img{position:absolute; top:50%; transform:translate(0,-50%); right:4px}


@media screen and (max-width:1440px){

}
@media screen and (max-width:1366px){

}
@media screen and (max-width:1200px){
	.about_form_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	#wpforms-38 .wpforms-submit-container{margin: 0.2rem auto 0;}
}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){
	#wpforms-38-field_1-container,#wpforms-38-field_2-container{margin-right:0rem !important}
	#wpforms-38-field_1-container,#wpforms-38-field_2-container,#wpforms-38-field_3-container{width:100% !important}
	#wpforms-38{--input_height:0.5rem}
	.become_form {margin-top: 0.4rem;}
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}


/* service_us */
.service_us_bac{
   box-sizing: border-box;
   padding-bottom: 0.8rem;
}
.service_us{

}
.service_us_box{
   margin-top: 0.4rem;
}
.service_us_dl{

}
.service_us_dl dt{
   position: relative;
}
.service_us_img{

}
.service_us_img img{
   width: 58.53%;
   height: 4.34rem;
   object-fit: cover;
}
.service_us_text{
   position: absolute;
   top: 50%;
   right: 0;
   transform: translate(0,-50%);
   width: 44.93%;
   background: #392929;
   box-sizing: border-box;
   padding: 0.4rem 0.4rem 0.6rem 0.4rem;
}
.service_us_text h3{
   font-size: 0.3rem;
   color: #fff;
   font-weight: bold;
   margin-bottom: 0.2rem;
}
.service_us_text h4{
   font-size: 0.18rem;
   color: #fff;
   line-height: 0.3rem;
   height: 1.2rem;
   overflow: auto;
   box-sizing: border-box;
   padding-right: 0.1rem;
}
/*滚动条*/
.service_us_text h4::-webkit-scrollbar{width:1px; height:1px}
.service_us_text h4::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); background:var(--i_color)}
.service_us_text h4::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); border-radius:0; background:#F1F1F1}

.service_us_ul{
   display: flex;
   flex-wrap: wrap;
   gap: 0.2rem;
   margin-top: 0.4rem;
}
.service_us_ul li{
	width: calc((100% - 0.6rem) / 4);
	position: relative;
	overflow: hidden;
}
.service_us_ul li::after{
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top,rgba(249,193,6,0.4),rgba(249,193,6,0));
	transition: all 0.3s ease;
}
.service_us_ul li img{
   width: 100%;
   height: 1.2rem;
   object-fit: cover;
   display: block;
}
.service_us_ul li p{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   text-align: center;
   box-sizing: border-box;
   padding: 0.2rem;
   font-size: 0.2rem;
   color: #fff;
   font-weight: bold;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 4;
   transition: all 0.3s ease;
}
.service_us_ul li.current::after{
	top: 0;
}
.service_us_ul li.current p{
	color: var(--i_color);
}


@media screen and (max-width:1440px){
	.service_us_text h3 {
		font-size: 0.28rem;
		margin-bottom: 0.2rem;
	}
}
@media screen and (max-width:1200px){
	.service_us_ul li p {
		padding: 0.1rem;
		font-size: 0.18rem;
	}
	.service_us_text h3 {
		font-size: 0.26rem;
		margin-bottom: 0.15rem;
	}
}
@media screen and (max-width:1024px){
	.service_us_text h3 {
		font-size: 0.24rem;
		margin-bottom: 0.1rem;
	}
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
	.service_us_img img {
		height: 4rem;
	}
	.service_us_text {
		width: 80%;
		padding: 0.25rem 0.25rem 0.4rem 0.25rem;
		right: unset;
		left: 50%;
        transform: translate(-50%, -50%);
	}
	.service_us_img img {
		width: 100%;
	}
	.service_us_text h4 {
		font-size: 0.16rem;
		line-height: 0.25rem;
		height: 1rem;
	}
	.service_us_ul li p {
        font-size: 0.16rem;
    }
}
@media screen and (max-width:560px){
	.service_us_ul li {
		width: calc((100% - 0.2rem) / 2);
	}
	.service_us_text h3 {
        font-size: 0.22rem;
    }
	.service_us_ul {
		gap: 0.1rem;
		margin-top: 0.2rem;
	}
	.service_us_ul li {
        width: calc((100% - 0.1rem) / 2);
    }
}
@media screen and (max-width:425px){

}


/* service_process */
.service_process_bac{
   background: linear-gradient(45deg,rgba(255,238,228,0),rgba(255,238,228,1));
   box-sizing: border-box;
   padding: 1rem 0;
}
.service_process{

}
.service_process_title h3::after{
	content: '';
	position: absolute;
	top: 50%;
	right: -9.4rem;
	transform: translate(0%,-50%);
	width: 9rem;
	height: 1px;
	background-color: #E5E5E5;
}




/*  */
.procsee_partner_box{
	margin-top: 0.4rem;
}

.procsee_partner{position:relative}
.procsee_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.procsee_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.procsee_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
	box-sizing: border-box;
	padding: 0.4rem;
	border-radius: 0.08rem;
	overflow: hidden;
	z-index: 2;
}
.procsee_partner_list li::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	background-color: #fff;
	z-index: -1;
	transition: all 0.5s ease;
}
.procsee_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden}
.procsee_partner_list .img:before{content:""; display:block; padding-bottom:52.94%}
.procsee_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}
.procsee_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}

.service_process_text{
   box-sizing: border-box;
   padding-top: 0.5rem;
}
.service_process_text h3{
   font-size: 0.3rem;
   color: #333;
   position: relative;
   line-height: 100%;
   font-weight: bold;
   display: inline-block;
}
.service_process_text h3::after{
   content: '';
   position: absolute;
   bottom: 0;
   right: -0.42rem;
   width: 0.4rem;
   height: 0.04rem;
   background-color: #333;
}
.service_process_text h4{
   font-size: 0.24rem;
   color: #222;
   font-weight: bold;
   margin: 0.2rem 0;
}
.service_process_text h5{
   font-size: 0.18rem;
   color: #666;
   margin-bottom: 0.2rem;
   line-height: 0.22rem;
   min-height: 0.44rem;
}


.procsee_partner_list li:hover::after{
	width: 100%;
	right: auto;
	left: 0;
}








/* 指示器 */
.procsee_partner .pt-pagination{
	display:none;
	text-align:center;
	margin:0.4rem auto 0
}
.procsee_partner .pt-pagination .swiper-pagination-bullet{
	width:0.12rem;
	height:0.12rem;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	cursor:pointer;
	display:inline-block;
	margin:0 0.05rem;
	background:var(--i_color);
	border-radius:2px;
	opacity: 1;
	outline:none
}
.procsee_partner .pt-pagination .swiper-pagination-bullet-active{
	position:relative;
	background:transparent;
}

/* 左右箭头 */
.procsee_partner .pt-button-prev, .procsee_partner .pt-button-next{
	position:absolute;
	top:-0.99rem;
	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;
}
.procsee_partner .pt-button-prev iconify-icon, .procsee_partner .pt-button-next iconify-icon{
	font-size: 0.3rem;
	color: var(--i_color);
	transition: all 0.3s ease;
}
.procsee_partner .pt-button-prev{right:calc(11.5% + 0.7rem);}
.procsee_partner .pt-button-next{right:11.5%;}

.procsee_partner .pt-button-prev:hover, .procsee_partner .pt-button-next:hover{
	background-color: var(--i_color);
}
.procsee_partner .pt-button-prev:hover iconify-icon, .procsee_partner .pt-button-next:hover iconify-icon{
	color: #fff;
}

@media screen and (max-width:1600px){
	.service_process_text h4 {
		font-size: 0.22rem;
	}
	.service_process_title{
		display: flex;
		justify-content: center;
	}
	.service_process_title h3::after{
		width: 0;
	}
	.service_process_text {
		padding-top: 0.2rem;
	}
	.service_process_bac {
		padding: 0.8rem 0;
	}
}
@media screen and (max-width:1200px){
	.procsee_partner .pt-button-prev, .procsee_partner .pt-button-next{display:none}
	.procsee_partner .pt-pagination{display:block}
	.service_process_text h3 {
		font-size: 0.25rem;
	}
	.service_process_text h5 {
		font-size: 0.16rem;
		line-height: 0.2rem;
		min-height: 0.4rem;
	}
	.service_process_text h4 {
		font-size: 0.2rem;
		margin: 0.15rem 0;
	}
	.procsee_partner_list li {
		padding: 0.25rem;
	}
	.service_process_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	.service_process_text h5 {
		font-size: 0.14rem;
		line-height: 0.2rem;
		min-height: 0.4rem;
	}
}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){

}
@media screen and (max-width:560px){

}



/* service_adv */
.service_adv_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
   overflow: hidden;
}
.service_adv{

}
.service_advTitle{
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   position: relative;
   z-index: 2;
}
.service_advTitle::after{
	content: '';
	position: absolute;
    top: 0.8rem;
	left: 50%;
	transform: translate(-50%,0);
	width: 200%;
	height: 0.08rem;
	background-color: var(--i_color);
    z-index: -1;
}
.service_advTitle_left{
   width: 46.67%;
   position: relative;
}
.service_advTitle_left::after{
   content: '';
   display: block;
   padding-bottom: 57.14%;
}
.service_advTitle_left img{
   position: absolute;
   top: 50%;
   left: 50%;
   width: 100%;
   height: 100%;
   transform: translate(-50%,-50%);
   object-fit: cover;
}
.service_advTitle_right{
   width: 53.33%;
   box-sizing: border-box;
   padding-left: 1rem;
   margin-top: 0.4rem;
}
.service_adv_ul{
   display: flex;
   gap: 0.4rem;
   margin-top: 0.4rem;
   flex-wrap: wrap;
}
.service_adv_ul li{
   width: calc((100% - 0.8rem) / 3);
   position: relative;
   overflow: hidden;
   box-sizing: border-box;
   padding: 0.3rem;
   z-index: 2;
}
.service_adv_ul li img{
   width: 0.54rem;
   height: 0.54rem;
   object-fit: contain;
}
.service_adv_ul li h3{
   font-size: 0.24rem;
   color: #333;
   margin: 0.15rem 0;
}
.service_adv_ul li h4{
   font-size: 0.18rem;
   color: #666;
}
.service_adv_ul li::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(249,193,6,0.16);
	z-index: -1;
	opacity: 0;
	transition: all 0.3s ease;
}
.service_adv_ul li.on::after{
	opacity: 1 !important;
}

@media screen and (max-width:1440px){
	.service_advTitle::after {
		top: 0.7rem;
	}
	.service_adv_ul li img {
		width: 0.5rem;
		height: 0.5rem;
	}
}
@media screen and (max-width:1200px){
	.service_advTitle::after {
		top: 0.6rem;
	}
	.service_adv_ul li img {
		width: 0.45rem;
		height: 0.45rem;
	}
	.service_adv_ul {
		gap: 0.2rem;
	}
	.service_adv_ul li {
		width: calc((100% - 0.4rem) / 3);
		padding: 0.25rem;
	}
	.service_adv_ul li h3 {
		font-size: 0.22rem;
	}
	.service_adv_ul li h4 {
		font-size: 0.16rem;
	}
	.service_adv_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	.service_advTitle::after {
		top: 0.4rem;
	}
	.service_adv_ul li img {
		width: 0.4rem;
		height: 0.4rem;
	}
}
@media screen and (max-width:960px){
	.service_advTitle::after {
		top: 0.2rem;
	}
}
@media screen and (max-width:767px){
    .service_adv_ul li {
        width: 100%;
    }
	.service_advTitle_left{
		display: none;
	}
	.service_advTitle_right {
		width: 100%;
		padding-left: 0rem;
		margin-top: 0.4rem;
	}
	.service_advTitle::after {
		top: 0rem;
	}
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}


/* faq */
.faq_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
   background: url('static/imgs/faq_bac.webp') center no-repeat;
   background-size: cover;
}
.faq{

}
.faq_ul{
   display: flex;
   flex-direction: column;
   gap: 0.3rem;
   margin-top: 0.4rem;
}
.faq_ul li{
   box-sizing: border-box;
   padding: 0.3rem 0.2rem;
   display: flex;
   background-color: #fff;
   cursor: pointer;
   align-items: flex-start;

}
.faq_ul li iconify-icon{
   font-size: 0.24rem;
   color: #333;
   margin-top: 0.05rem;
   transition: all 0.3s ease;
}
.faq_text{
   width: calc(100% - 0.24rem);
   box-sizing: border-box;
   padding-left: 0.25rem;
}
.faq_text h3{
   font-size: 0.3rem;
   color: #333;
   font-weight: bold;
}
.faq_text h4{
   font-size: 0.18rem;
   color: #666;
   margin-top: 0.15rem;
   display: none;
}
.faq_active iconify-icon{
   transform: rotate(90deg);

}
@media screen and (max-width:1440px){

}
@media screen and (max-width:1200px){
	.faq_text h3 {
		font-size: 0.25rem;
	}
	.faq_text {
		width: calc(100% - 0.22rem);
		padding-left: 0.2rem;
	}
	.faq_ul li iconify-icon {
		font-size: 0.22rem;
	}
	.faq_text h4 {
		font-size: 0.16rem;
	}
	.faq_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){

}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
	.faq_text h3 {
		font-size: 0.2rem;
	}
	.faq_text {
		width: calc(100% - 0.2rem);
		padding-left: 0.15rem;
	}
	.faq_ul li iconify-icon {
		font-size: 0.2rem;
	}
}
@media screen and (max-width:560px){
	.faq_ul li {
		padding: 0.2rem;
	}
	.faq_ul {
		gap: 0.2rem;
	}
}
@media screen and (max-width:425px){

}


/* news_list */
.news_list_bac{
   box-sizing: border-box;
   padding-bottom: 0.4rem;
}
.news_list{

}
.news_list_ul{
   border-bottom: 1px solid rgba(51,51,51,0.2);
   display: flex;
   gap: 0.4rem;
}
.news_list_ul li{

}
.news_list_ul li a{
	font-size: 0.2rem;
	color: #666;
	box-sizing: border-box;
	padding: 0 0.45rem 0.25rem 0.45rem;
	text-transform: capitalize;
	position: relative;
	display: block;
	transition: all 0.3s ease;
	font-weight: bold;
}
.news_list_ul li a::after{
	content: '';
	position: absolute;
	bottom: -1px;
	right: 0;
	width: 0;
	height: 0.03rem;
	background-color: var(--i_color);
	transition: all 0.3s ease;
}

.news_list_ul li a:hover,
.news_list_active a{
    color: var(--i_color) !important;
}
.news_list_ul li a:hover::after,
.news_list_active a::after{
    width: 100% !important;
	right: auto !important;
	left: 0 !important;
}


@media screen and (max-width:1440px){
	.news_list_ul li a {
		font-size: 0.18rem;
		padding: 0 0.4rem 0.2rem 0.4rem;
	}
}
@media screen and (max-width:1200px){

}
@media screen and (max-width:1024px){

}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
	.news_list_ul li a {
		font-size: 0.16rem;
		padding: 0 0.3rem 0.15rem 0.3rem;
	}
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}



/* news_abc */
.news_abc_bac{
   box-sizing: border-box;
   padding-bottom: 1rem;
}
.news_abc{

}
.news_abc_ul{
   display: flex;
   gap: 0.3rem;
   flex-wrap: wrap;
}
.news_abc_ul li{
   width: calc((100% - 0.6rem) / 3);
}
.news_abc_ul li a{
   display: block;
   width: 100%;
}
.news_abc_img{
   position: relative;
}
.news_abc_img::after{
   content: '';
   display: block;
   padding-bottom: 100%;
}
.news_abc_img img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;

}
.news_abc_img i{
   position: absolute;
   bottom: 0.2rem;
   left: 0.2rem;
   font-size: 0.18rem;
   display: inline-block;
   box-sizing: border-box;
   padding: 0.1rem 0.2rem;
   border-radius: 0.04rem;
   background: rgba(255,255,255,0.8);
}
.news_abc_text{
   background-color: #F6F6F6;
   box-sizing: border-box;
   padding: 0.25rem;
   font-size: 0.18rem;
   color: #333;
}
.news_abc_text h3{
   font-size: 0.24rem;
   color: #333;
   overflow: hidden;
   font-weight: bold;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   height: 0.56rem;
   line-height: 0.28rem;
   transition: all 0.3s ease;
}
.news_abc_ul li a:hover h3{
	color: var(--i_color);
}
.news_abc_text h4{
   font-size: 0.18rem;
   color: #666;
   line-height: 0.3rem;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   height: 0.6rem;
   margin: 0.15rem 0;
}
.news_abc_h5{
   display: flex;
   gap: 0.25rem;
   align-items: center;
   box-sizing: border-box;
   padding-top: 0.25rem;
   border-top: 1px solid #E5E5E5;
}
.news_abc_h5 h5{
   font-size: 0.18rem;
   color: #333;
   text-transform: capitalize;
}
.news_abc_h5 iconify-icon{
   color: #333;
   font-size: 0.25rem;
}


@media screen and (max-width:1440px){
	.news_abc_text h3 {
		font-size: 0.22rem;
		height: 0.52rem;
		line-height: 0.26rem;
	}
	.news_abc_bac {
		padding-bottom: 0.8rem;
	}
}
@media screen and (max-width:1200px){
	.news_abc_img i{
		font-size: 0.16rem;
		padding: 0.08rem 0.15rem;
	}
	.news_abc_text h3 {
		font-size: 0.2rem;
		height: 0.48rem;
		line-height: 0.24rem;
	}
	.news_abc_text h4 {
		font-size: 0.16rem;
		line-height: 0.28rem;
		margin: 0.15rem 0;
		height: 0.56rem;
	}
	.news_abc_h5 h5 {
		font-size: 0.16rem;
	}
	.news_abc_h5 iconify-icon {
		font-size: 0.22rem;
	}
	.news_abc_h5 {
		gap: 0.2rem;
	}
	.news_abc_bac {
		padding-bottom: 0.6rem;
	}
}
@media screen and (max-width:1024px){

}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
	.news_abc_ul li {
		width: calc((100% - 0.3rem) / 2);
	}
	.news_abc_text {
		padding: 0.2rem;
	}
}
@media screen and (max-width:560px){
	.news_abc_ul {
		gap: 0.2rem 0.1rem;
	}
	.news_abc_ul li {
		width: calc((100% - 0.1rem) / 2);
	}
	.news_abc_text h4 {
        font-size: 0.14rem;
        line-height: 0.24rem;
        margin: 0.1rem 0;
        height: 0.48rem;
    }
	.news_abc_text h3 {
        font-size: 0.18rem;
        height: 0.44rem;
        line-height: 0.22rem;
    }
	.news_abc_h5 {
		padding-top: 0.2rem;
	}

}
@media screen and (max-width:425px){

}





/* Number of pages */
.in_page_box {
	text-align: center;
	overflow: hidden;
	margin-top: 0.6rem;
}
.in_page {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.in_page_right{
	justify-content: flex-end;
}
.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) {

}


/* contact_us */
.contact_us_bac{
   box-sizing: border-box;
   padding-bottom: 0.8rem;
}
.contact_us{

}
.contact_us_box{
   display: flex;
   flex-wrap: wrap;
}
.contact_us_left{
   width: 55.33%;
   box-sizing: border-box;
   padding-right: 4%;
   position: relative;
}
.contact_us_left::after{
	content: '';
	position: absolute;
	right: 0%;
    top: 50%;
	transform: translate(0,-50%);
	width: 1px;
	height: 100%;
	background-color: #E5E5E5;
}
.contact_us_ul{
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
}
.contact_us_ul li{
   display: flex;
   align-items: center;
}
.contact_us_ul li iconify-icon{
	font-size: 0.33rem;
	color: #333;
}
.contact_us_text{
    width: calc(100% - 0.33rem);
	box-sizing: border-box;
	padding-left: 0.2rem;
}
.contact_us_text h3{
   font-size: 0.18rem;
   color: #666;
   font-weight: bold;
   margin-bottom: 0.1rem;
}
.contact_us_text h4{
   font-size: 0.18rem;
   color: #666;
}
.contact_us_text h4 a{
   color: #333;
   transition: all 0.3s ease;
   font-size: 0.18rem;
}
.contact_us_text h4 a:hover{
	color: var(--i_color);
}
.contact_us_right{
   width: 44.67%;
   box-sizing: border-box;
   padding-left: 8%;
}
.contact_us_lx{
   display: flex;
   gap: 0.6rem;

}
.contact_us_lx li{

}
.contact_us_lx li p{
   font-size: 0.16rem;
   color: #666;
   margin-bottom: 0.15rem;
}
.contact_us_lx li img{
   width: 2.18rem;
}
.contact_us_share{
	display: flex;
	align-items: center;
	margin-top: 0.3rem;
}
.contact_us_share p{
   font-size: 0.3rem;
   color: #666;
}
.contact_us_dl{
	display: flex;
	align-items: center;
	gap: 0.4rem;
}
.contact_us_dl dt{

}
.contact_us_dl dt a{
   display: block;
   width: 100%;
}
.contact_us_dl dt a iconify-icon{
   font-size: 0.37rem;
   color: #999;
   transition: all 0.3s ease;

}
.contact_us_dl dt a:hover iconify-icon{
	color: var(--i_color);
	transform: translateY(-0.05rem);
}


@media screen and (max-width:1440px){
	.contact_us_share p {
		font-size: 0.28rem;
	}
	.contact_us_lx li img {
		width: 2rem;
	}
	.contact_us_dl dt a iconify-icon {
		font-size: 0.3rem;
	}
}
@media screen and (max-width:1200px){
	.contact_us_share p {
		font-size: 0.26rem;
	}
	.contact_us_lx li img {
		width: 1.8rem;
	}
	.contact_us_dl dt a iconify-icon {
		font-size: 0.25rem;
	}
	.contact_us_dl {
		gap: 0.2rem;
	}
	.contact_us_bac {
		padding-bottom: 0.6rem;
	}
}
@media screen and (max-width:1024px){
	.contact_us_share p {
		font-size: 0.24rem;
	}
	.contact_us_lx li img {
		width: 1.6rem;
	}
}
@media screen and (max-width:960px){
	.contact_us_share p {
		font-size: 0.22rem;
	}
	.contact_us_lx li img {
		width: 1.4rem;
	}
}
@media screen and (max-width:767px){
	.contact_us_share p {
		font-size: 0.2rem;
	}
	.contact_us_lx li img {
		width: 1.2rem;
	}
	.contact_us_left {
		width: 100%;
		padding-right: 0%;
	}
	.contact_us_right {
		width: 100%;
		margin-top: 0.4rem;
		padding-left: 0%;
	}
}
@media screen and (max-width:560px){
	.contact_us_text h4{
		font-size: 0.16rem;
	}
	.contact_us_text h4 a{
		font-size: 0.16rem;
	}
	.contact_us_left::after {
		height: 0%;
	}
}
@media screen and (max-width:425px){

}


/* contact_form */
.contact_form_bac{
   display: flex;
   flex-wrap: wrap;
}
.contact_map{
   width: 50%;
   height: 7.2rem;
}
.contact_map #simpleMap,
.contact_map .fluid-width-video-wrapper,
.contact_map iframe {
        width: 100%;
        height: 100% !important;
}

.contact_form{
   width: 50%;
   box-sizing: border-box;
   padding-left: 4%;
   position: relative;
   z-index: 2;
   display: flex;
   flex-direction: column;
   justify-content: center;
}
.contact_form::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6rem;
	background: url('static/imgs/contact_form.webp') center no-repeat;
	background-size: cover;
	z-index: -1;
}
.contact_form h3{
   font-size: 0.3rem;
   color: #333;
   font-weight: bold;
   margin-bottom: 0.3rem;
}



@media screen and (max-width:1440px){

}
@media screen and (max-width:1200px){
	.contact_form h3{
		font-size: 0.25rem;
		margin-bottom: 0.2rem;
	}
}
@media screen and (max-width:1024px){

}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
	.contact_map {
		width: 100%;
		height: 5rem;
	}
	.contact_form {
		width: 100%;
		padding:0.4rem 4% !important;
	}
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}













#wpforms-41{
	--wpforms-field-size-input-height:50px;
	--wpforms-field-border-size:0;
	--wpforms-button-background-color:var(--i_color);
	--wpforms-button-border-color:var(--i_color);
	--wpforms-page-break-color:var(--i_color);
	--wpforms-label-error-color:#d63637;
}
#wpforms-41{flex-shrink: 0; width: 100%; margin:0;padding:0;}
#wpforms-form-41{width:100%;position:relative;}

#wpforms-41 .wpforms-field-container{}
#wpforms-41 .wpforms-field-container>.wpforms-field{width: 100%;padding: 0 1px 20px;position: relative; overflow-x:initial !important}
#wpforms-41 .wpforms-field-container>.wpforms-field>label{font-weight: normal;}

/* #wpforms-41 .wpforms-field-container .wpforms-field-label{height: 0; font-size: 0;margin: 0 0;}
#wpforms-41 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 4px; font-size: 15px;color: #F00;font-weight: bold;} */

#wpforms-41 .wpforms-field-container .wpforms-field>input,
#wpforms-41 .wpforms-field-container textarea
{border: none; border: 1px solid #CCC;background: none;margin-top: 0.1rem !important;}
#wpforms-41 .wpforms-form label.wpforms-error{position: absolute;left: 0;bottom: 0;font-size: 13px;}

#wpforms-41 .wpforms-field-container .wpforms-field>input,
#wpforms-41 .wpforms-field-container textarea,
#wpforms-41 .wpforms-field-container select,
#wpforms-41 .wpforms-field-container .choices{
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 0;
	padding: 0.1rem 0.14rem;
}
#wpforms-41 .wpforms-field-container .wpforms-field>input,
#wpforms-41 .wpforms-field-container textarea,
#wpforms-41 .wpforms-field-container select
{padding-left: 14px;padding-right: 14px;}
#wpforms-41 .wpforms-field-container textarea{padding-top: 10px;padding-bottom: 10px;}
#wpforms-41 .wpforms-field-container fieldset ul{padding: 0 2px; display:-webkit-flex; display:flex; flex-wrap:wrap;}
#wpforms-41 .wpforms-field-container select{cursor: pointer;}
#wpforms-41 .wpforms-field-container .wpforms-datepicker-wrap{width: 310px;}
#wpforms-41 .wpforms-field-container .wpforms-datepicker-wrap input{width: 100%;max-width: 100%;}
#wpforms-41 .wpforms-field-container .wpforms-datepicker-clear{right: 10px;}
#wpforms-41 .wpforms-field-container em.wpforms-error,#wpforms-41 .wpforms-field-container .mailcheck-error{position: absolute; margin: 0 0; bottom: -2px;}
#wpforms-41 .wpforms-field-container textarea{
	height: 1.2rem;
	font-family: 'Open','Arial',sans-serif;
}

/* #wpforms-41 input::placeholder, #wpforms-41 textarea::placeholder{color:#333;font-size:16px} */

/* #wpforms-41 .wpforms-field-container{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: space-between;}
#wpforms-41-field_1-container,
#wpforms-41-field_2-container
{width: 48% !important;} */

#wpforms-41 .wpforms-submit-container{width: 100%;padding:0 0;cursor: pointer; }
#wpforms-41 .wpforms-submit-container button{width: 100%;height:.5rem; font-size: 15px;cursor: pointer; color: #FFF;transition: all 0.3s ease; background: var(--i_color);}
#wpforms-41 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-41 .wpforms-submit-container button:hover{background: #000;}


#wpforms-41 .wpforms-required-label{
	color: red;
}



@media screen and (max-width:1024px) {
	.contact__form::before{display: none;}
	.contact__form .wrap{flex-wrap: wrap;gap: 40px 0}
	#wpforms-41{width: 100%;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}



/* single_grid */
.single_grid_bac{
   box-sizing: border-box;
   padding: 0.4rem 0 0.6rem 0;
}
.single_grid{
   display: flex;
   flex-wrap: wrap;
}
.single_grid_left{
   width: 45.67%;
}



/* 鍥剧墖鏌ョ湅鍖� */
.in_grid_cont{--sm_pic_width:17%}
.in_grid_cont{ position:relative; overflow:hidden}
.in_grid_cont:before{content:""; display:block; padding-bottom:80.4%}

/* 缂╃暐鍥� */
.in_grid_list_box{position:absolute; top:0; left:0; width:var(--sm_pic_width); height:100%; box-sizing:border-box; padding:40px 0}
.in_grid_list{height:100%; overflow:hidden}
.in_grid_list .swiper-slide{cursor:pointer}

.in_grid_list .img{width:100%; height:100%; box-sizing:border-box; border:1px solid #D8D8D8; position:relative; overflow:hidden;}
.in_grid_list .img img{width:100%; height:100%; object-fit:cover;}
.in_grid_list .swiper-slide-thumb-active .img{border:2px solid var(--i_color);}
.in_grid_list .swiper-slide-thumb-active img{filter: brightness(100%);-webkit-filter: brightness(100%);}
.ingrid-button-prev, .ingrid-button-next{
	position:absolute;
	left:50%;
	transform:translate(-50%,0);
	width:60px;
	height:30px;
	z-index:999;
	outline:none;
	cursor:pointer;
	-moz-user-select:none;
    -webkit-user-select:none;
    -ms-user-select:none;
    -khtml-user-select:none;
    user-select:none;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.ingrid-button-prev{top:4px; background:url(static/imgs/arrow_up_hollow_hei.svg) no-repeat center; background-size:contain}
.ingrid-button-next{bottom:4px; background:url(static/imgs/arrow_down_hollow_hei.svg) no-repeat center; background-size:contain}
.ingrid-button-prev.swiper-button-disabled, .ingrid-button-next.swiper-button-disabled{cursor:not-allowed; opacity:.1}

/* 澶у浘 */
.in_grid_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_grid_show{width:100%; height:100%; box-sizing:border-box;  position:relative; overflow:hidden}
.in_grid_show .swiper-wrapper{display:flex; position:relative; width:100%; height:100%; z-index:1}
.in_grid_show .swiper-slide{
	height:100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
}

.in_grid_show .img{width:100%; height:100%; position:relative; overflow:hidden}
.in_grid_show .img img{width:100%; height:100%; object-fit:cover;box-sizing: border-box;background-color: #fff;}

.ingrid-pagination{
	display:block;
	position: absolute;
	bottom: 0;
	right: 0rem;
	width: 0.7rem;
	height: 0.7rem;
	background-color: #F0F0F0;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
    align-items: flex-end;
	font-size: 0.18rem;
	color: var(--i_color);
	z-index: 2;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	box-sizing: border-box;
	padding: 0.1rem;
}
.ingrid-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}
.ingrid-pagination .swiper-pagination-bullet-active{position:relative; background:var(--i_color)}

.in_grid_cont:before{display:none}
.in_grid_show_box{position:relative; width:100%;overflow: hidden;}
.in_grid_show .img{width:100%; position:relative; overflow:hidden}
.in_grid_show .img:before{content:""; display:block; padding-bottom:75%}
.in_grid_show .img img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%)}
.in_grid_list_box{margin-top:0.3rem; padding:0 0; position:relative; width:100%; height:initial}
.in_grid_list{width: 100%; margin:0 auto}
.in_grid_list_box .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.in_grid_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_grid_list .img{height:auto;}
.in_grid_list .img:before{content:""; display:block; padding-bottom:75%}
.in_grid_list .img img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); object-fit:cover;box-sizing: border-box;background-color: #fff;}
.ingrid-button-prev, .ingrid-button-next{
	top:50%;
	transform:translate(0,-50%);
	width: calc((100% - 24px) / 5);
	height:100%;
	border-radius: 0%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}
.ingrid-button-prev{left:0;}
.ingrid-button-next{left:initial; right:0; }


.ingrid-button-prev iconify-icon, .ingrid-button-next iconify-icon{
	font-size: 0.3rem;
	color: #fff;
	transition: all 0.3s ease;
}



.ingrid-button-prev:hover,.ingrid-button-next:hover{
	background-color: var(--i_color);
}

.ingrid-button-prev:hover iconify-icon, .ingrid-button-next:hover iconify-icon{
	color: #fff;
}

.single_grid_right{
	width: 54.33%;
	box-sizing: border-box;
	padding-left: 0.4rem;
}
.single_grid_right>h3{
   font-size: 0.18rem;
   color: #666;
   margin-bottom: 0.1rem;
}
.single_grid_right>h3 span{
	font-size: 0.18rem;
	color: var(--i_color);
}
.single_grid_right>h1{
   font-size: 0.3rem;
   color: #333;
   font-weight: bold;
   box-sizing: border-box;
   padding-top: 0.2rem;
   border-top: 1px solid #E5E5E5;
}
.single_grid_right article{
   font-size: 0.16rem;
   color: #222;
   margin: 0.4rem 0;
}

.single_grid_btn{
   display: flex;
   gap: 0.48rem;
   padding-bottom: 0.3rem;
   box-sizing: border-box;
   margin-bottom: 0.3rem;
   border-bottom: 1px solid #333;
}
.single_grid_tag{
	display: flex;
	flex-wrap: wrap;
	gap: 0.1rem 0.15rem;
}
.single_grid_tag p{
   font-size: 0.2rem;
   color: #333;
   font-family: 'bold';
   line-height: 0.3rem;
}
.single_grid_tag a{
   font-size: 0.18rem;
   color: #666;
   line-height: 0.3rem;
   transition: all 0.3s ease;
}
.single_grid_tag a:hover{
	color: var(--i_color);
}
.single_grid_share{
    display: flex;
	align-items: center;
	gap: 0.2rem;
	margin-top: 0.2rem;
}
.single_grid_share p{
	font-size: 0.2rem;
	color: #333;
	font-family: 'bold';
}
.single_grid_share dl{
   display: flex;
   gap: 0.2rem;
}
.single_grid_share dl dt{

}
.single_grid_share dl dt a{
   display: block;
   width: 100%;
}
.single_grid_share dl dt a iconify-icon{
   color: #D8D8D8;
   font-size: 0.26rem;
   transition: all 0.3s ease;
}
.single_grid_share dl dt a:hover iconify-icon{
	color: var(--i_color);
	transform: translateY(-5px);
}
.single_grid_zhong{
	width: 100%;
	height: auto;
}

@media screen and (max-width:1440px){
	.single_grid_right>h1 {
		font-size: 0.28rem;;
	}
}
@media screen and (max-width:1200px){
	.single_grid_right>h1 {
		font-size: 0.26rem;;
	}
	.single_grid_tag a {
		font-size: 0.16rem;
	}
	.single_grid_tag p {
		font-size: 0.18rem;
	}
	.single_grid_share p {
		font-size: 0.18rem;
	}
	.single_grid_bac {
		padding: 0.2rem 0 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	.single_grid_right>h1 {
		font-size: 0.24rem;;
	}
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
	.single_grid_left {
		width: 100%;
	}
	.single_grid_right {
		width: 100%;
		padding-left: 0rem;
		margin-top: 0.4rem;
	}
	.single_grid_btn {
		gap: 0.25rem;
	}
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}


/* editor */
.editor_bac{
   box-sizing: border-box;
   padding: 0.6rem 0;
}
.editor{
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
}
.editor_left{

}
.editor_right{
	width: 78%;
	box-sizing: border-box;
	padding-left: 4%;
}
.editor_right_list{
   background-color: #F6F6F6;
}
.editor_right_list h3{
   font-size: 0.24rem;
   color: var(--i_color);
   display: inline-block;
   box-sizing: border-box;
   text-transform: capitalize;
   background-color: #fff;
   padding: 0.14rem 0.6rem;
   border-top: 0.02rem solid var(--i_color);
}
.editor_article{
	box-sizing: border-box;
	padding: 0.4rem 0;
}
.editor_packing{

}
.editor_packing h3{
   font-size: 0.24rem;
   color: #333;
   font-weight: bold;
   margin-bottom: 0.2rem;
}

@media screen and (max-width:1440px){

}
@media screen and (max-width:1200px){
	.editor_right {
		width: 76%;
	}
}
@media screen and (max-width:1024px){
	.editor_left{display: none;}
	.editor_right{
		width: 100%;
		padding-left: 0;
	}
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){

}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}


.editor_LR{
   display: flex;
   display: -webkit-flex;
   justify-content: space-between;
   box-sizing: border-box;
   background-color: #F6F6F6;
   box-sizing: border-box;
   padding: 0.2rem ;
   margin-top: 0.4rem;
}
.editor_LR>div{
   display: flex;
   display: -webkit-flex;
   align-items: center;
   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: 1px solid #333;
   transition: all 0.3s ease;
}
.editor_LR i iconify-icon{
   color: #333;
   font-size: 0.15rem;
   transition: all 0.3s ease;
}
.editor_LR p{
   font-size: 0.18rem;
   color: #333;
   font-weight: bold;
   transition: all 0.3s ease;
}
.editor_LR a{
	font-size: 0.18rem;
	color: #333;
	transition: all 0.3s ease;
}
.editor_L i{
	margin-right: 0.1rem;
}
.editor_R i{
	margin-left: 0.1rem;
}
.editor_R{
	justify-content: flex-end;
	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;
	}
	.editor_LR>div{
		width: 100%;
	}
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}

/* related_products */
.related_products_bac{
   box-sizing: border-box;
   padding:0 0 0.8rem 0;
}
.related_products{

}



/*  */
.RP_partner_box{}

.RP_partner{position:relative}
.RP_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.RP_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.RP_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
	padding-bottom: .6rem;
	background: #F6F6F6;
}

.RP_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden}
.RP_partner_list .img:before{content:""; display:block; padding-bottom:100%}
.RP_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:contain}


.RP_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}


.RP_partner_list li:hover{
	background-color: var(--i_color);
}








/* 指示器 */
.RP_partner .pt-pagination{
	display:none;
	text-align:center;
	margin:0.4rem auto 0
}
.RP_partner .pt-pagination .swiper-pagination-bullet{
	width:0.12rem;
	height:0.12rem;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	cursor:pointer;
	display:inline-block;
	margin:0 0.05rem;
	background:var(--i_color);
	border-radius:2px;
	opacity: 1;
	outline:none
}
.RP_partner .pt-pagination .swiper-pagination-bullet-active{
	position:relative;
	background:transparent;
}

/* 左右箭头 */
.RP_partner .pt-button-prev, .RP_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;
}
.RP_partner .pt-button-prev iconify-icon, .RP_partner .pt-button-next iconify-icon{
	font-size: 0.2rem;
	color: var(--i_color);
	transition: all 0.3s ease;
}
.RP_partner .pt-button-prev{left:-5%;}
.RP_partner .pt-button-next{right:-5%;}

.RP_partner .pt-button-prev:hover, .RP_partner .pt-button-next:hover{
	background-color: var(--i_color);
}
.RP_partner .pt-button-prev:hover iconify-icon, .RP_partner .pt-button-next:hover iconify-icon{
	color: #fff;
}

@media screen and (max-width:1440px){

}
@media screen and (max-width:1200px){
	.RP_partner .pt-button-prev, .RP_partner .pt-button-next{display:none}
	.RP_partner .pt-pagination{display:block}
	.related_products_bac {
		padding: 0 0 0.6rem 0;
	}
}
@media screen and (max-width:1024px){

}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){

}
@media screen and (max-width:560px){

}






/* 感谢页面 */
.thanks{ 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){

}
@media screen and (max-width:767px){
	.thanks{margin:0px auto 0.6rem}

}
@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;}
#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 0 0.8rem 0;
}
.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 .pList{
   display: flex;
   gap: 0.4rem;
   flex-wrap: wrap;
}
.tag_list  .pList li{
   width: calc((100% - 1.2rem) / 4);
}


@media screen and (max-width:1600px) {

}
@media screen and (max-width:1440px) {


}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {
	.tag{
		padding:0 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>h2 {
		font-size: 0.25rem;
	}
	.tag_list  .pList{
		gap: 0.2rem;
	}
	.tag_list  .pList li{
		width: calc((100% - 0.2rem) / 2);
	}
}
@media screen and (max-width:560px) {

}
@media screen and (max-width:425px) {

}




/* ---------------------- Aside Form ---------------------- */
.contactMenu{--menuColor:#333}
.contactMenu{position: fixed;right: 0;bottom: 0;width: 340px;box-shadow: -6px -4px 10px rgb(0 0 0 / 10%);z-index: 999999999999999;}
.contactMenuBtn{width: 100%;display:-webkit-flex; display:flex; flex-wrap:nowrap;position: relative;z-index: 3;}
.contactMenuBtn dt{width: 100%;text-align: center;cursor: pointer;}
.contactMenuBtn dt a,.contactMenuBtn dt p{display: block; padding: 8px 10px;color: #FFF;}
.contactMenuBtnWA{display: none;background: #0ABA28;}
.contactMenuBtnForms{background: var(--i_color);}

.contactMenu_Forms{
	display: none;
	position: absolute;
	right: 0;
	bottom: calc(100% - 1px);
	width: 100%;
	box-shadow: -6px -4px 10px rgb(0 0 0 / 10%);
	z-index: 999999999999;
}
.contactMenu_FormsTit{padding: 8px 50px; text-align: center; background: var(--i_color); cursor: pointer;position: relative;}
.contactMenu_FormsTit p{color: #FFF;}
.contactMenu_FormsTit iconify-icon{opacity: 0; position:absolute; top:50%; transform:translate(0,-50%);right: -20px;font-size: 24px;color: #FFF;}
.contactMenu_FormsTit.active iconify-icon{opacity: 1; right: 10px; -webkit-transition:all .6s .5s; transition:all .6s .5s;}
.contactMenu_Forms>span{display: block; padding: 24px; background: #FFF;}

#wpforms-29{
	--wpforms-field-size-input-height:38px;
	--wpforms-field-border-size:0;
	--wpforms-button-background-color:var(--i_color);
	--wpforms-button-border-color:var(--i_color);
	--wpforms-page-break-color:var(--i_color);
	--wpforms-label-error-color:#d63637;
}
#wpforms-29{margin:0;padding:0;}
#wpforms-form-29{width:100%;position:relative;}

#wpforms-29 .wpforms-field-container{}
#wpforms-29 .wpforms-field-container>.wpforms-field{
	width: 100%;
	padding: 0 1px 5px;
	margin: 0 0 6px;
	overflow-x:initial !important;
	position: relative;
}

#wpforms-29 .wpforms-field-container .wpforms-field-label{height: 0; font-size: 0;margin: 0 0;}
#wpforms-29 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 4px; font-size: 15px;color: #F00;font-weight: bold;}

#wpforms-29 .wpforms-field-container .wpforms-field>input,
#wpforms-29 .wpforms-field-container textarea{
	border: 1px solid #CCC;
	-webkit-border-radius:4px;
	border-radius:4px;
	box-sizing: border-box;
	padding: 0.05rem 0;
}
#wpforms-29 .wpforms-form label.wpforms-error{position: absolute;left: 0;bottom: 0;font-size: 13px;}

#wpforms-29 .wpforms-field-container .wpforms-field>input,
#wpforms-29 .wpforms-field-container textarea,
#wpforms-29 .wpforms-field-container select,
#wpforms-29 .wpforms-field-container .choices
{width: 100%;max-width: 100%; box-sizing: border-box; margin: 0 0;}
#wpforms-29 .wpforms-field-container .wpforms-field>input,
#wpforms-29 .wpforms-field-container textarea,
#wpforms-29 .wpforms-field-container select
{padding-left: 14px;padding-right: 14px;}
#wpforms-29 .wpforms-field-container textarea{padding-top: 10px;padding-bottom: 10px;}
#wpforms-29 .wpforms-field-container fieldset ul{padding: 0 2px; display:-webkit-flex; display:flex; flex-wrap:wrap;}
#wpforms-29 .wpforms-field-container select{cursor: pointer;}
#wpforms-29 .wpforms-field-container .wpforms-datepicker-wrap{width: 310px;}
#wpforms-29 .wpforms-field-container .wpforms-datepicker-wrap input{width: 100%;max-width: 100%;}
#wpforms-29 .wpforms-field-container .wpforms-datepicker-clear{right: 10px;}
#wpforms-29 .wpforms-field-container em.wpforms-error,#wpforms-29 .wpforms-field-container .mailcheck-error{position: absolute; margin: 0 0; font-size: 12px; bottom: -2px;}

#wpforms-29 .wpforms-submit-container{width: 100%; padding: 0;-webkit-border-radius:8px; border-radius:8px;overflow: hidden;}
#wpforms-29 .wpforms-submit-container button{
	width: 100%;
	background: #DDD;
	font-size: 15px;
	color: #333;
	font-weight: bold;
	padding: 0.1rem 0.2rem;
	transition: all 0.3s ease;
	cursor: pointer;
}
#wpforms-29 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-29 .wpforms-submit-container button:hover{background: var(--i_color); color: #FFF;}

@media screen and (max-width:1024px) {
	.contactMenu{width: 100%;}
	.contactMenuBtnWA{display: block;}
	.contactMenuBtnWA a{display: block;}
}





/* aside */
.aside_right {
	position: fixed;
	right: 30px;
	bottom: 16%;
	z-index: 999999
}
.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(static/imgs/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: 9999999999998;
}
#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: 9999999999999;
	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-34 {
	--input_font_color: rgb(0 0 0 / 50%);
	--input_font_size: 14px;
	--input_height: 42px
}
#wpforms-34 {
	width: 100%;
	margin: 0 auto;
	padding: 0
}
#wpforms-form-34 {
	width: 100%;
	overflow: hidden
}
#wpforms-34 input,
#wpforms-34 button {
	margin: 0;
	padding: 0;
	border: none;
	background: none
}
#wpforms-34 .wpforms-field {
	padding: 0;
	margin: 0
}
#wpforms-34 .wpforms-error-container {
	line-height: 16px
}
#wpforms-34 .wpforms-field-container {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden
}
#wpforms-34 .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-34 .wpforms-field-label {
	font-size: 0
}
#wpforms-34 .wpforms-required-label {
	position: absolute;
	top: 16px;
	left: 5px;
	font-size: 16px;
	color: #F00
}
#wpforms-34 .wpforms-field {
	width: 100%;
	margin-bottom: 0;
	padding-bottom: 18px;
	background: transparent;
	position: relative;
	overflow: hidden
}
#wpforms-34 input {
	height: var(--input_height)
}
#wpforms-34 textarea {
	min-height: 100px
}
#wpforms-34 input,
#wpforms-34 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-34 input::-webkit-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-34 input::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-34 input::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-34 input::-ms-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-34 textarea::-webkit-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-34 textarea::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-34 textarea::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-34 textarea::-ms-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-34 #wpforms-34-field_1-error,
#wpforms-34 #wpforms-34-field_2-error,
#wpforms-34 #wpforms-34-field_3-error,
#wpforms-34 #wpforms-34-field_5-error {
	position: absolute;
	font-size: 13px
}
#wpforms-34 .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-34 .wpforms-submit-container img {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: 4px
}
#wpforms-34 .wpforms-submit-container:after {
	display: none;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%
}
#wpforms-34 .wpforms-submit-container:hover:after {
	display: block
}
#wpforms-34 .wpforms-submit-container:hover {
	background: #FFF
}
#wpforms-34 .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{
		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-34 .wpforms-submit-container {
		height: 34px;
	}
	#wpforms-34 .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;
	}

}


.form_hide{
	display: none !important;
}






/* eject videos */
.vd_box{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, .5);
	z-index: 999999;
}
.vd_box_area {
	position: absolute;
	top: 52%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2014;
	width: 60%;
	max-height: 90%;

}
.vd_box_area::before {
	content: '';
	display: block;
	padding-bottom: 56.25%;
}
.close_v {
	position: absolute;
	top: -.2rem;
	right: -.2rem;
	width: 0.4rem;
	height: 0.4rem;
	background: var(--i_color);
	z-index: 2;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	cursor: pointer;
}
.close_v::before {
	content: '+';
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 0.44rem;
	color: #FFF;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg)
}
.vd_box iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #000;
	object-fit: contain;
}
@media screen and (max-width:1024px) {
	.vd_box_area {
		width: 80%;
	}
	.close_v::before {
		font-size: 0.4rem;
	}
}
@media screen and (max-width:768px) {
	.vd_box_area {
		width: 88%;
	}
	.close_v {
		top: -.15rem;
		right: -.15rem;
		width: 0.3rem;
		height: 0.3rem;
	}
	.close_v::before {
		font-size: 0.3rem;
	}
}
















/* @media screen and (max-width:1440px){

}
@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){

} */

