/*
Theme Name: QH
Version: 1.0
Description:
Author:
*/
@charset "utf-8";

:root {
	--i_color: #1C8100;
	--top1_height: .4rem;
	--top2_height:1rem;
	--header_height: calc(var(--top1_height) + var(--top2_height));
}
@media screen and (max-width:1024px) {
	:root {
		--top2_height:.6rem;
		--header_height: .6rem;
	}
}





.wrap {
	width: 94%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}
.wrap2{width: 94%;margin-left: auto;margin-right: auto;}

.wrap_top{width: 94%; max-width: 1600px; margin-left: auto;margin-right: auto;}
.wrap_top2{margin-left: 8.16vw;}
@media screen and (max-width:1680px) {
	.wrap_top2{margin-left: 3vw}
}






.wrap_l{margin-left: 13.4vw;}
.wrap_r{margin-right: 13.4vw;}

@media screen and (max-width:1680px) {
	.wrap_l{margin-left: 8.3vw;}
	.wrap_r{margin-right: 8.3vw;}
}
@media screen and (max-width:1440px) {
	.wrap_l{margin-left: 3vw;}
	.wrap_r{margin-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;}

.top{background: #131117;}
.wrap_top{display:flex; flex-wrap:wrap; align-items: center;}

.top_email{height: var(--top1_height); display:flex; flex-wrap:wrap; align-items: center; gap: 0 .1rem; font-size: .16rem; color: #FFF;}
.top_email iconify-icon{font-size: 0.2rem;color: #FFF;}

.topMedia{margin-left: auto; display:flex; flex-wrap:wrap; gap: 0 .14rem;}
.topMedia li{}
.topMedia iconify-icon{font-size: 0.2rem; color: #FFF;}
.topMedia a:hover iconify-icon{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) {
	.top{display: none;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}




.top2{position: relative;}
.wrap_top2{display:flex; flex-wrap:nowrap; align-items: center;}

/* logo */
.logo {
	flex-shrink: 0;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: var(--top2_height);
}
.logo a {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
.logo img {max-width: 2rem; max-height: 75%;}
@media screen and (max-width:1200px) {
	.logo img {max-width: 1.4rem; max-height: 60%;}
}
@media screen and (max-width:1024px) {
	.logo img {max-width: 1.1rem; max-height: 55%;}
}





/* 导航 */
@media screen and (min-width:1025px) {
	.i_nav {
		margin-left: 4%;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		gap: 0 .5rem;
		position: relative;
		z-index: 2014;
	}

	.i_nav>li {position: relative;}

	.i_nav>li>a {
		display: block;
		font-size: .18rem;
		color: #333;
		line-height: var(--top2_height);
		white-space: nowrap;
		text-transform: uppercase;
		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);
	}

	.i_nav .sub-menu {
		display: none;
		position: absolute;
		left:-20px;
		min-width: 1.4rem;
		background: #FFF;
		overflow: hidden;
		box-shadow: 0 .06rem .1rem rgb(0 0 0 / 8%);
		font-size: 0;
		text-align: left;
	}

	.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:1440px) {
	.i_nav{gap: 0 .36rem;}
}
@media screen and (max-width:1200px) {
	.i_nav{gap: 0 .2rem;}
	.i_nav>li>a{font-size: 0.16rem;}
}






@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 {
	/* 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.3rem;
	}
}





.top_r{--size:.26rem}
.top_r {
	margin-left: auto;
	flex-shrink: 0;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0 .34rem;
}
@media screen and (max-width:1024px) {
	.top_r{--size:.2rem}
	.top_r{margin-left: auto; gap: 0 30px; width: auto; padding: 0;}
}
@media screen and (max-width:560px) {
	.top_r{gap: 0 18px;}
}




.top_search_ico{position: relative; font-size: 0; height: var(--top2_height); display:flex; flex-wrap:wrap; align-items: center; cursor: pointer;}
.top_search_ico::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);right: -.18rem;width: 1px;height: 0.2rem;background: #CCC;}
.top_search_ico iconify-icon{font-size: var(--size);color: #333;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_search_ico.on iconify-icon{color: var(--i_color);}
@media screen and (max-width:1024px) {
	.top_search_ico::before{display: none;}
}

/* search */
.top_search {
	--search_height: .38rem
}
.top_search {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: calc(var(--header_height) + .3rem);
	left: 0;
	width: 100%;
	padding: .16rem 0;
	border-top: 1px solid rgb(0 0 0 / 10%);
	background: #FFF;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 99;
}
.top_search.on {
	visibility: visible;
	opacity: 1;
	top: var(--header_height);
	box-shadow: var(--boxShadow);
}
.top_search form {
	width: 80%;
	margin: 0 auto;
	max-width: 5rem;
	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: calc(var(--search_height) * 1.5);
	height: var(--search_height);
	background:var(--i_color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m17 17l4 4M3 11a8 8 0 1 0 16 0a8 8 0 0 0-16 0'/%3E%3C/svg%3E") no-repeat center;
	background-size: .24rem;
	cursor: pointer;
}

@media screen and (max-width:768px) {
	.top_search {
		--search_height: 34px
	}
	.top_search {
		padding: 12px 0;
	}
}
@media screen and (max-width:560px) {
	.top_search form {
		width: 94%;
	}
}





.top_language{flex-shrink: 0; height: var(--top2_height); display:flex; flex-wrap:wrap; align-items: center; position: relative;}
.top_language_btn{padding-right: 0.18rem; height: 100%;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 p{margin-left: 5px;} */
.top_language_btn.on iconify-icon{color: var(--i_color);}

.top_language_list {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(100% + .16rem);
	right: -.1rem;
	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: .26rem;
	text-align: center;
	z-index: 99999999;
}
.banner-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	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 {background: var(--i_color);}

@media screen and (max-width:1024px) {
	.banner .swiper-slide{padding-bottom: 50%;}
	.banner-button-prev,.banner-button-next{display: none;}
}
@media screen and (max-width:560px) {
	.banner-pagination{bottom: 14px;}
}






.banner_text1{position:absolute; top:16%; left: 0; width: 100%;}
.banner_text1 h2{font-size: 3vw; color: #FFF; font-weight: bold;}
.banner_text1 dl{margin: .34rem 0 .5rem;}
.banner_text1 dt{margin: .2rem 0;}
.banner_text1 dt p{font-size: 0.2rem; font-weight: bold; color: #FFF;}
.banner_text1 dt i{font-size: 0.3rem; font-weight: bold;}

@media screen and (max-width:1024px) {
	.banner_text1 dl{margin: 20px 0 30px;}
	.banner_text1 dt{margin: 8px 0;}
	.banner_text1 dt p{font-size: 18px;}
	.banner_text1 dt i{font-size: 24px;}
}
@media screen and (max-width:768px) {
	.banner_text1 dl{margin: 12px 0 24px;}
	.banner_text1 h2{font-size: 4vw;}
	.banner_text1 dt p{font-size: 16px;}
	.banner_text1 dt i{font-size: 20px;}
}
@media screen and (max-width:560px) {
	.banner_text1{top: 12%;}
	.banner_text1 h2{font-size: 4.8vw;}
	.banner_text1 dl{margin: 12px 0 14px;}
	.banner_text1 dt p{font-size: 14px; font-weight: normal;}
	.banner_text1 dt i{font-size: 16px; font-weight: normal;}
}






/* Main */
main{position: relative;overflow: hidden;}



.i_tit{}
.i_tit h3{font-weight: bold;}
.i_tit h3 i{color: var(--i_color); font-weight: bold;}
.i_tit h6{margin-top: 0.1rem; color: #888;}
.i_tit.center{text-align: center;}

@media screen and (max-width:768px) {
	.i_tit h6{margin-top: 6px;}
}
@media screen and (max-width:560px) {
	.i_tit h6{font-size: 15px;}
}






.i_more{display: table; border: 1px solid var(--i_color); border-radius:2rem; transition:all .5s ease;}
.i_more b{display: block; text-align: center; min-width: 1.5rem; padding: .1rem .2rem; font-size: 0.18rem; color:var(--i_color); transition:all .5s ease;}

.i_more.active{background: var(--i_color);}
.i_more.active b{color: #FFF;}
.i_more.center{margin-left: auto;margin-right: auto;}

.i_more:hover{transform:translate(0,-6px);}
.i_more:hover{background: var(--i_color);}
.i_more:hover b{color: #FFF;}

@media screen and (max-width:1024px) {
	.i_more b{min-width: 1rem; padding: 8px 16px; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.i_more b{min-width: 80px; padding: 6px 12px; font-size: 14px;}
}





.i_piclist {}
.i_piclist dl {display:-webkit-flex;display:flex;flex-wrap:wrap;flex-direction:column;gap:.4rem 0;}
.i_piclist dt {position:relative;width:100%;overflow:hidden;}
.i_piclist .img {width:100%;position:relative;overflow:hidden}
.i_piclist .img::before {content:"";display:block;padding-bottom:33.33%}
.i_piclist .img img {position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; -webkit-transition:all .5s ease;transition:all .5s ease}
.i_piclist .txt {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);box-sizing:border-box;padding:0 4.5%;width:100%;}
.i_piclist .txt h2 {font-size:0.4rem;color:#FFF;font-weight:bold;}
.i_piclist .txt.center {text-align:center;}

.i_piclist .txt span{display: block; margin: .2rem 0 .5rem;}
.i_piclist .txt span p{font-size: 0.18rem; color: #FFF; line-height: 1.6;}

.i_piclist .btn{display: table; padding-bottom: 0.08rem; font-size: 0.16rem; color: #FFF; position: relative;}
.i_piclist .btn::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--i_color);}

.i_piclist dt:hover img{transform: scale(1.05, 1.05);}

@media screen and (max-width:1200px) {
	.i_piclist .txt span{margin: .16rem 0 .3rem;}

	.i_piclist .txt h2{font-size: 0.3rem;}
}
@media screen and (max-width:1024px) {
	.i_piclist .txt h2{font-size: 24px;}
	.i_piclist .txt span p{font-size: 15px;}
	.i_piclist .btn{display: none;}
}
@media screen and (max-width:768px) {
	.i_piclist .img::before{padding-bottom: 45%;}
	.i_piclist .txt h2{font-size: 20px;}
}
@media screen and (max-width:560px) {
	.i_piclist dl{gap: 20px 0;}
	.i_piclist .txt h2{font-size: 17px;}
	.i_piclist .txt span{margin: 10px 0 0;}
	.i_piclist .txt span p{font-size: 13px; line-height: 1.3;}
}






.hotProducts{padding-bottom: 2rem; position: relative;}
.hotProducts::before{opacity: .07; content: ''; position: absolute; top: 0; right: 3%; width: 45%; height: 2rem; background:url(static/images/logo-green.webp) no-repeat center; background-size: contain;}
.hotProducts::after{opacity:.07; content: ''; position: absolute; bottom: .4rem; left: 18%; width: 40%; height: 2rem; background:url(static/images/logo-green.webp) no-repeat center; background-size: contain;}
@media screen and (max-width:1024px) {
	.hotProducts{padding-bottom: 100px;}
	.hotProducts::before,.hotProducts::after{display: none;}
}
@media screen and (max-width:768px) {
	.hotProducts{padding-bottom: 70px;}
}
@media screen and (max-width:560px) {
	.hotProducts{padding-bottom: 50px;}
}

.hotProducts_box{display:flex; flex-wrap:wrap; align-items: center;}

.hotProducts_nav{flex-shrink: 0; width: 20%;}
.hotProducts_nav ul{}
.hotProducts_nav li{display: table; padding-bottom: 4px; margin: .2rem 0; position: relative; cursor: pointer;}
.hotProducts_nav li::before{content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--i_color); transition:all .5s ease;}
.hotProducts_nav li p{font-size: 0.2rem; font-weight: bold;}
.hotProducts_nav>a{font-size: 0.2rem; font-weight: normal; color: #AAA;}

.hotProducts_nav li.active::before{width: 100%;}
.hotProducts_nav li.active p{color: var(--i_color);}

.hotProducts-navigation{margin-top: 1.2rem; display:flex; flex-wrap:wrap; gap: 0 .2rem;}
.hotProducts-navigation>div{width: 0.4rem; height: 0.4rem; box-sizing: border-box; border: 1px solid #CCC; border-radius:50%; position: relative; cursor: pointer;}
.hotProducts-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.2rem;}
.hotProducts-navigation>div:hover{background: var(--i_color); border-color: var(--i_color);}
.hotProducts-navigation>div:hover iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.hotProducts_nav{margin-bottom: 40px; width: 100%;}

	.hotProducts_nav ul{display:flex; flex-wrap:wrap; gap: 18px 30px;}
	.hotProducts_nav li{margin: 0 0;}
	.hotProducts_nav li p{font-size: 17px;}
	.hotProducts_nav>a{display: none;}

	.hotProducts-navigation{display: none;}
}
@media screen and (max-width:768px) {
	.hotProducts_nav li p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.hotProducts_nav{margin-bottom: 30px}
	.hotProducts_nav ul{gap: 12px 20px;}
}





.hotProducts_show{margin-left: auto; width: 75%;}
.hotProducts_show .item{opacity: 0; visibility: hidden; height: 0; position: relative; top: 0.3rem;}
.hotProducts_show .item.active{opacity: 1; visibility: visible; height: auto; top: 0; transition:all .5s ease;}

.hotProducts_list{position:relative; overflow:hidden}
.hotProducts_list .swiper-wrapper{display:flex; position:relative; width:100%}
.hotProducts_list li{flex-shrink:0; position:relative}

.hotProducts-pagination{display: none;}

@media screen and (max-width:1024px) {
	.hotProducts_show{width: 100%;}

	.hotProducts-pagination{display:block; margin-top:0.3rem; text-align:center}
	.hotProducts-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#CCC; border-radius:50%; outline:none; cursor:pointer;}
	.hotProducts-pagination .swiper-pagination-bullet-active{background:var(--i_color)}
}
@media screen and (max-width:768px) {
	.hotProducts_box{margin-right: 3vw;}
}





.pItem{display: block; position: relative;}
.pItem .pic{width:100%; position:relative; overflow:hidden}
.pItem .pic::before{content:""; display:block; padding-bottom:100%}
.pItem .pic::after{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 30%; background:linear-gradient(to bottom, transparent, #000);}
.pItem .pic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; transition:all .5s ease;}

.pItem .txt{position: absolute; left: 0; bottom: 0; width: 100%; box-sizing: border-box; padding:.14rem .2rem;}
.pItem .txt::before{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 0; background: var(--i_color); border-radius:.24rem .24rem 0 0; transition:all .3s ease;}
.pItem .txt p{text-align: center; font-size: 0.18rem; color: #FFF; font-weight: bold; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; position: relative;}

.pItem:hover img{transform: scale(1.05, 1.05);}
.pItem:hover .txt::before{height: 100%;}

@media screen and (max-width:1024px) {
	.pItem .txt p{font-size: 16px; line-height: 1.4;}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:560px) {
	.pItem .txt{padding: 8px 14px;}
	.pItem .txt p{font-size: 14px; font-weight: normal;}
}






.homeVideo{}
.homeVideo img{width: 100%;}

.homeVideo h2{position:absolute;left: 0; width: 100%; top: 15%; font-size: 1.8vw; text-align: center; color: #FFF; font-weight: bold; line-height: 1.6;}

.homeVideo .btn{cursor: pointer; position:absolute; left:50%; transform:translate(-50%,0); bottom: 30%; width: 1.8rem; height: 1rem; 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; background-size: contain;}

@media screen and (max-width:1024px) {
	.homeVideo h2{font-size: 2.8vw;}
	.homeVideo .btn{width: 120px; height: 50px;}
}
@media screen and (max-width:560px) {
	.homeVideo h2{top: 0.2rem; font-size: 3.7vw; line-height: 1.5;}
	.homeVideo .btn{width: 100px; height: 40px;}
	.homeVideo .btn{bottom: 25%;}
}




.vd_full {display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgb(255 255 255 / 80%);z-index:99999;}
.vd_box {position:absolute;top:52%;left:50%;transform:translate(-50%,-50%);width:60%;z-index:2;}
.vd_box::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 {width:80%;}
	.close_v::before {font-size:0.4rem;}
}
@media screen and (max-width:768px) {
	.vd_box {width:88%;}
	.close_v {top:-.15rem;right:-.15rem;width:0.3rem;height:0.3rem;}
	.close_v::before {font-size:0.3rem;}
}




.homeAbout{}
.homeAbout article{font-size: 0.18rem; text-align: center; line-height: 1.9;}
.homeAbout_pic{width: 100%;}

@media screen and (max-width:1024px) {
	.homeAbout article{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.homeAbout article{font-size: 15px; line-height: 1.6;}
}
@media screen and (max-width:560px) {
	.homeAbout article{font-size: 14px; line-height: 1.5;}
}





.fSearch{background:url(static/images/footer-search-bg.webp) no-repeat top center; background-size: cover;}

.fSearch_form{--size:.44rem}
.fSearch_form{padding: 6px; display: table; margin-left: auto;margin-right: auto; border: 1px solid var(--i_color); border-radius:2rem;}
.fSearch_form form{display:flex; flex-wrap:nowrap; width: 5rem;}
.fSearch_ipt{width: 100%; box-sizing: border-box; padding-left: 0.14rem; background: none;}

.fSearch_btn{flex-shrink: 0; width: var(--size); height: var(--size); border-radius:50%; font-size: 0; background:var(--i_color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m17 17l4 4M3 11a8 8 0 1 0 16 0a8 8 0 0 0-16 0'/%3E%3C/svg%3E") no-repeat center;background-size: .24rem;cursor: pointer;}

@media screen and (max-width:1024px) {
	.fSearch_form{--size:38px}
	.fSearch_btn{background-size: 20px;}
}
@media screen and (max-width:768px) {
	.fSearch_form form{width: 70vw;}
}
@media screen and (max-width:560px) {
	.fSearch_form{--size:30px}

	.fSearch .i_tit{margin-bottom: 24px;}

	.fSearch_form{padding: 4px;}
	.fSearch_form form{width: 80vw;}
	.fSearch_btn{background-size: 18px;}
}






/* Footer */
footer{border-top: 1px solid rgb(0 0 0 / 10%);}

.fMain{background: #FFF;}
.fMain .wrap{display:flex; flex-wrap:nowrap; justify-content: space-between; gap: 0 4%;}

.fLogo{flex-shrink: 0; width: 30%;}
.fLogo img{height: 0.34rem;}
.fLogo p{margin-top: 0.26rem; font-size: 0.16rem; color: #666; line-height: 1.8;}

.fNav{}
.fTit{margin-bottom: 0.2rem; font-size: 0.2rem;color: #333;}
.fNav ul{}
.fNav li{}
.fNav li a{display: block; padding: 6px 0; font-size: 0.16rem; color: #666;}
.fNav li a:hover{color: var(--i_color); text-decoration: underline;}

.fContact{flex-shrink: 0; width: 20%;}
.fMail{}
.fMail p{margin-bottom: 4px; font-size: 0.18rem;color: #333;font-weight: bold;}
.fMail a{font-size: 0.26rem;color: #000;font-weight: bold;}
.fMail a:hover{color: var(--i_color); text-decoration: underline;}

.fMedia{display:flex; flex-wrap:wrap; gap: 0 .2rem;}
.fMedia li{transition:all .5s ease;}
.fMedia iconify-icon{font-size: 0.28rem; color:#999}
.fMedia li:hover{transform:translate(0,-4px);}
.fMedia li:hover iconify-icon{color: var(--i_color);}


.fCR{background: #202020; text-align: center;}
.fCR p,.fCR a{font-size: 15px; color: rgb(255 255 255 / 60%)}
.fCR a:hover{color: var(--i_color); text-decoration: underline;}

@media screen and (max-width:1200px) {
	.fContact{width: 24%;}
}
@media screen and (max-width:1024px) {
	.fMain .wrap{flex-wrap: wrap;}

	.fLogo{width: 100%;}
	.fLogo img{height: 30px;}
	.fLogo p{font-size: 16px;}

	.fContact{width: 100%; margin-top: 30px;}
	.fMail a{font-size: 22px;}

	.fNav{display: none;}

	.fCR p, .fCR a{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.fLogo img{height: 0.24rem;}
	.fLogo p{margin-top: 16px; font-size: 15px; line-height: 1.5;}

	.fMail p{font-size: 16px;}
	.fMail a{font-size: 20px;}

	.fMedia iconify-icon{font-size: 24px;}

	.fCR p, .fCR a{font-size: 13px;}
}







/* ===================================================== */

.banner__{position: relative; overflow: hidden;}
.banner__ img{width: 100vw; object-fit: cover;}

.banner__text{position:absolute; top:50%; transform:translate(0,-50%); left: 0; width: 100%;}
.banner__text h2{text-align: center; font-size: 2.2vw; color: #FFF; font-weight: bold; text-transform: uppercase;}

@media screen and (max-width:1024px) {
	.banner__text h2{font-size: 3.5vw;}
}
@media screen and (max-width:560px) {
	.banner__text h2{font-size: 5vw;}
}






/* Breadcrumb */
.in_position{padding:.2rem 0;position:relative;}
.in_position .wrap{display:flex;flex-wrap:wrap;align-items:center;}
.in_position a{display:block;font-size:15px;color:#333;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%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="currentColor" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
	background-size: contain;
}
.in_position a:not(:last-child):after {content:">";margin:0 4px;color:#555}
.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 {padding:.16rem 0;}
	.in_position a {font-size:14px}
}
@media screen and (max-width:560px) {
	.in_position {padding:.12rem 0;}
	.in_position a {font-size:13px}
}





.navLine{position: relative; overflow: hidden;}
.navLine ul{display:flex; flex-wrap:nowrap; justify-content: center; position: relative;}
.navLine ul::before{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: #E5E5E5;}
.navLine li{width: 100%; max-width: 34vw; box-sizing: border-box; padding: 0 10px; text-align: center; position: relative;}
.navLine li::before{content: '';position:absolute; left:50%; transform:translate(-50%,0); bottom: 0; width: 0; height: 3px; background: var(--i_color); transition:all .5s ease;}
.navLine a{display: block; padding: .16rem 0; font-size: 0.22rem; font-weight: bold;}

.navLine li:hover::before,
.navLine li.active::before{width: 100%;}
.navLine li:hover a,
.navLine li.active a{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.navLine ul::before,.navLine li::before{height: 2px;}
	.navLine a{font-size: 18px;}
}
@media screen and (max-width:768px) {
	.navLine ul::before{display: none;}
	.navLine ul{flex-wrap: wrap;}
	.navLine li{max-width: 100%;}
	.navLine li::before{width: 100%; background: #DDD;}

	.navLine li:hover::before,
	.navLine li.active::before{background: var(--i_color);}

	.navLine a{font-size: 17px;}
}
@media screen and (max-width:560px) {
	.navLine a{padding: 12px 0; font-size: 16px;}
}





.category_des{text-align: center;}





.pList{display:flex; flex-wrap:wrap; gap: .4rem 2%;}
.pList li{width: 32%;}

@media screen and (max-width:768px) {
	.pList{gap: 34px 4%;}
	.pList li{width: 48%;}
}
@media screen and (max-width:560px) {
	.pList{gap: 24px 4%;}
}




/* Paging */
.in_paging{--size:34px;}
.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;verflow: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:28px;}
}





.p_data{background: #FFF;}
.p_data .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 4%;}

/* atlas */
.p_atlas {flex-shrink: 0; width:32%; box-sizing: border-box; position: relative;}
.p_atlas_list {width: 100%; box-sizing: border-box; border: 1px solid #DDD; background: #FFF; margin-left: auto; margin-right: auto; position:relative;overflow:hidden}
.p_atlas_list .swiper-wrapper {display:-webkit-flex;display:flex;position:relative;width:100%}
.p_atlas_list .swiper-slide {flex-shrink:0;position:relative;overflow:hidden;}
.p_atlas_list .swiper-slide::before {content:'';display:block;padding-bottom:100%;}
.p_atlas_list .swiper-slide img {position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;}

/* thumbnail */
.p_thumbnail_list {width:100%;margin:.2rem auto 0;box-sizing:border-box;position:relative;overflow:hidden}
.p_thumbnail_list .swiper-wrapper {display:-webkit-flex;display:flex;position:relative;width:100%}
.p_thumbnail_list .swiper-slide {box-sizing: border-box; border: 2px solid #DDD; flex-shrink:0;background: #FFF; position:relative;overflow:hidden;cursor:pointer;}
.p_thumbnail_list figure {width:100%;position:relative;overflow:hidden;}
.p_thumbnail_list figure::before {content:'';display:block;padding-bottom:100%;}
.p_thumbnail_list figure img {position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;}
.p_thumbnail_list .swiper-slide-thumb-active {border-color: var(--i_color);}

.thumbnail-prev,.thumbnail-next {position:absolute;top:50%;transform:translate(0,-50%);width:.36rem;height:.36rem; background: rgb(255 255 255 / 80%); z-index:3;cursor:pointer;outline:none;-webkit-user-select:none;user-select:none;-webkit-transition:all .5s ease;transition:all .5s ease;z-index:3;}
.thumbnail-prev {left:-.4rem;}
.thumbnail-next {right:-.4rem;}
.p_atlas_list:hover .thumbnail-prev{left: 0;}
.p_atlas_list:hover .thumbnail-next{right: 0;}
.thumbnail-prev iconify-icon,.thumbnail-next iconify-icon {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:0.26rem;color:#444}
.thumbnail-prev:hover,.thumbnail-next:hover {background: var(--i_color);}
.thumbnail-prev:hover iconify-icon, .thumbnail-next:hover iconify-icon{color: #FFF;}
.p_atlas .swiper-button-disabled{cursor:not-allowed;}

.thumbnail-pagination {position:absolute;top:.1rem;right:.1rem;text-align:center;padding: 2px 6px; z-index:2;}
.thumbnail-pagination,.thumbnail-pagination span{font-size: 14px; color: #FFF;}
.thumbnail-pagination .swiper-pagination-current{font-size: 0.22rem;color: #FFF;}

@media screen and (max-width:1024px) {
	.p_data .wrap{flex-wrap: wrap;}

	.p_atlas{width: 100%; max-width: 6rem; margin: 0 auto .46rem;}
	.p_thumbnail_list{width: 100%;}
	.thumbnail-prev, .thumbnail-next{display: none;}
}
@media screen and (max-width:560px) {
	.p_atlas_list{width: 100%;}
	.thumbnail-prev iconify-icon, .thumbnail-next iconify-icon{font-size: 30px;}
}






.p_title{margin-left: auto;width: 100%;}

.p_title h1{color: #000; line-height: 1.4; font-weight: bold; position: relative;}

.pShare_box{padding-bottom: 0.14rem; border-bottom: 2px solid var(--i_color); display:flex; flex-wrap:nowrap; align-items: center;}
.pShare_box>p{font-size: 0.18rem; color: #999;}

.pShare{margin-left: auto; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .1rem;}
.pShare>p{font-size: 0.18rem;font-weight: bold;}
.pShare dl{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;gap: 0 .2rem;}
.pShare dt a{display:block; position: relative;}
.pShare dt iconify-icon {font-size:0.22rem;color:#888;}
.pShare dt:hover iconify-icon{color: var(--i_color);}

.p_des{}
.p_des article{}

.p_btn{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 0 .24rem;}

@media screen and (max-width:1024px) {
	.pShare_box>p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.pShare>p{font-size: 16px;}
}






.pContent_box{}

.pContent_tit{background: #F3F3F3; position: relative;}
.pContent_tit::before{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: #DDD;}
.pContent_tit p{display: table; min-width: 3rem; text-align: center; padding: .16rem .2rem; font-size: 0.2rem; color: var(--i_color); font-weight: bold; background: #FFF; position: relative;}
.pContent_tit p::before{content: '';position: absolute; left: 0; top: 0; width: 100%; height: 2px; background: var(--i_color);}

@media screen and (max-width:1024px) {
	.pContent_tit p{min-width: auto; padding: 14px 30px; font-size: 18px;}
}
@media screen and (max-width:768px) {
	.pContent_tit p{padding: 12px 24px; font-size: 17px;}
}
@media screen and (max-width:560px) {
	.pContent_tit p{padding: 10px 20px;}
}




.pContent_box article .is-type-video>div{width: 100%; position: relative; overflow: hidden;}
.pContent_box article .is-type-video>div::before{content: '';display: block; padding-bottom: 56.25%;}
.pContent_box article .is-type-video iframe,.pContent_box article .is-type-video video{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}





.pBottom{background: #F6F6F6;}

.p_tags{padding-bottom: 0.2rem; border-bottom: 1px solid rgb(0 0 0 / 10%);display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: baseline; gap: .16rem 0;}
.p_tags>p{margin-right: .14rem; font-size: 0.2rem; color: #333;}
.p_tags a{padding: .06rem .16rem; margin-right: 0.1rem; font-size: 15px; border-radius:2rem;}
.p_tags a:hover{color: #FFF; background: var(--i_color);}
@media screen and (max-width:768px) {
	.p_tags{gap: 12px 0;}
	.p_tags>p{font-size: 17px;}
	.p_tags a{margin-right: 16px; font-size: 13px;}
}





.p_view_other{display:-webkit-flex; display:flex; flex-wrap:nowrap; justify-content: space-between; align-items: center; gap: 0 4%;}
.p_view_other li{max-width: 46%; display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 .14rem; align-items:center}
.p_view_other a{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .2rem;}
.p_view_other span{flex-shrink: 0; width: 0.38rem;height: 0.38rem; position: relative; box-sizing: border-box; border:1px solid var(--i_color); border-radius:50%;}
.p_view_other span iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: .24rem; color: var(--i_color);}
.p_view_other p{font-size: 0.16rem; color: #333; line-height: 1.5;}
.p_view_other p b{font-size: 0.18rem; color: #333; font-weight: bold;}

.p_view_other li:hover span{background: var(--i_color);}
.p_view_other li:hover span iconify-icon{color: #FFF;}
.p_view_other li:hover p{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.p_view_other span{width: 30px;height: 30px;}
	.p_view_other span iconify-icon{font-size: 20px;}
	.p_view_other p{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.p_view_other{flex-wrap: wrap;gap: 12px 0;}
	.p_view_other li{max-width: 100%}
	.p_view_other span{order: -1;}
	.p_view_other p{font-size: 14px;}
	.p_view_other p b{font-size: 17px;}
}




.pRelated{}

.pRelated_list{position:relative; overflow:hidden}
.pRelated_list .swiper-wrapper{display:flex; position:relative; width:100%}
.pRelated_list li{flex-shrink:0; position:relative}


.pRelated-pagination{display:block; margin-top:0.3rem; text-align:center}
.pRelated-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#CCC; border-radius:50%; outline:none; cursor:pointer;}
.pRelated-pagination .swiper-pagination-bullet-active{background:var(--i_color)}







/* Warranty */
.banner_warranty{width: 100%; position: relative; overflow: hidden;}
.banner_warranty::before{content: '';display: block; padding-bottom: calc(100vh - var(--header_height));}
.banner_warranty::after{content: '';position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgb(0 0 0 / 60%);}

.banner_warranty img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover}

.banner_warranty_text{position:absolute; top:45%; transform:translate(0,-50%); left: 0; width: 100%; text-align: center; z-index: 2;}
.banner_warranty_text h3{text-align: center; margin-bottom: .26rem; padding-bottom: 0.12rem; font-size: 0.46rem; color: #FFF; font-weight: bold; position: relative;}
/* .banner_warranty_text h3::before{content: '';position:absolute; bottom: 0; left:50%; transform:translate(-50%,0); width: 4rem; height: 1px; background: rgb(255 255 255 / 20%);} */
/* .banner_warranty_text h3 iconify-icon{display: table; margin-left: auto;margin-right: auto; text-align: center; font-size: 0.3rem; color: #FFF;} */

.banner_warranty_text dl{}
.banner_warranty_text dt:first-child{margin-bottom: 0.34rem;}
.banner_warranty_text p{font-size: 0.18rem;color: #FFF;font-weight: bold;}

.banner_warranty_text .btn{display:inline-flex; flex-wrap:wrap; margin-top: 0.16rem; margin-left: auto;margin-right: auto; padding: .1rem .3rem; background: var(--i_color); border-radius:2rem; align-items: center; gap: 0 .1rem; transition:all .5s ease;}
.banner_warranty_text .btn i{font-size: .18rem; color: #FFF; font-weight: bold;}
.banner_warranty_text .btn iconify-icon{font-size: 0.26rem; color: #FFF;}
.banner_warranty_text .btn:hover{transform:translate(0,-4px);}

@media screen and (max-width:1024px) {
	.banner_warranty_text h3{font-size: 38px;}
	.banner_warranty_text p{font-size: 16px;}
	.banner_warranty_text .btn{padding: 8px 20px;}
	.banner_warranty_text .btn i{font-size: 16px;}
	.banner_warranty_text .btn iconify-icon{font-size: 24px;}
}
@media screen and (max-width:768px) {
	.banner_warranty_text h3{font-size: 30px;}
	.banner_warranty_text p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.banner_warranty_text dt:first-child{margin-bottom: 26px;}
	.banner_warranty_text h3{padding-bottom: 0; font-size: 6vw;}
	.banner_warranty_text p{font-size: 16px;}
	.banner_warranty_text .btn{padding: 10px 20px;}
	.banner_warranty_text .btn iconify-icon{font-size: 20px;}
}







.warrantyBox{background:#EEE url(static/images/warranty-box-bg.webp) no-repeat bottom center;}

.mainForm{width: 94%; max-width: 960px; box-sizing: border-box; padding: .3rem; margin-left: auto;margin-right: auto; background: #FFF; border-radius:.1rem;}
.mainForm>h2{text-align: center; font-weight: bold;}

@media screen and (max-width:1024px) {
	.warrantyBox{background: #FFF;}
	.mainForm{padding: 0 0; border-radius:0;}
}


#warrantyForm{}

.wpforms-hidden{display: none !important;}
#warrantyForm .wpforms-block{
	--wpforms_input_height:42px;
	--wpforms_textarea_height:120px;
	--wpforms_input_font_size: 16px;
}
#warrantyForm .wpforms-block{margin:0; padding:0;}
#warrantyForm form{width:100%; position:relative;}

/* 字段样式 */
#warrantyForm .wpforms-field-container>.wpforms-field{width: 100%; padding: 0 1px 20px; margin: 0 0 6px;overflow-x:initial !important; position: relative;}
#warrantyForm label.wpforms-field-label{display: block; margin-bottom: 8px; font-size: 16px; font-weight: bold;}
#warrantyForm .wpforms-field-container .wpforms-required-label{color: #D63637;}
#warrantyForm .wpforms-field-container .wpforms-field>input,
#warrantyForm .wpforms-field-container textarea,
#warrantyForm .wpforms-field-container .choices__inner
{width: 100%; max-width: 100%; box-sizing: border-box; padding: 10px 14px!important; margin: 0 0; border: 1px solid #CCC; background: #FFF; border-radius:4px; font-size:var(--wpforms_input_font_size); line-height: 1.4;}
#warrantyForm .wpforms-field-container .wpforms-field>input{height: var(--wpforms_input_height);}
#warrantyForm .wpforms-field-container textarea{height: var(--wpforms_textarea_height);}
#warrantyForm input::placeholder, #warrantyForm textarea::placeholder{color:#AAA; font-size:var(--wpforms_input_font_size); line-height: 1.4;}
#warrantyForm .wpforms-field-container .choices__inner{display: block !important; height: var(--wpforms_input_height) !important;}
#warrantyForm .choices__list--single{padding-left: 0 !important;padding-right: 0 !important; font-size:var(--wpforms_input_font_size) !important; vertical-align:middle !important;}

#warrantyForm .wpforms-field-container .wpforms-field>input:hover,
#warrantyForm .wpforms-field-container textarea:hover,
#warrantyForm .wpforms-field-container .wpforms-field>input:focus,
#warrantyForm .wpforms-field-container textarea:focus{border-color: var(--i_color);}

.wpforms-field-description{margin-top: 6px; font-size: 14px; color: #999;}

/* 验证错误提示 */
#warrantyForm label.wpforms-error, #warrantyForm em.wpforms-error{position: absolute; left: 0; bottom: 0; font-size: 13px; color: #D63637;}

/* 提交按钮样式 */
#warrantyForm .wpforms-submit-container{width: 220px; margin: 0 auto; padding:0 0; position: relative; border-radius:6px; overflow: hidden;}
#warrantyForm .wpforms-submit-container button{width: 100%; height:44px; font-size: 15px; color: #FFF; background: var(--i_color); cursor: pointer;}
#warrantyForm .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#warrantyForm .wpforms-submit-container button:hover{background: #134f02;}

@media screen and (max-width:768px) {
	#warrantyForm .wpforms-block{
		--wpforms_input_height:40px;
	}
}






.contactBox{text-align: center; border-top: 1px solid #DDD;}
.contactBox h5{font-size: .26rem; color: #666; line-height: 1.5;}

.aEmail{display: table; padding: .16rem .5rem; margin-left: auto;margin-right: auto; background: #333; border-radius:5px; transition:all .5s ease;}
.aEmail span{display:flex; flex-wrap:nowrap; gap: 0 .2rem; position: relative;}
.aEmail iconify-icon{font-size: 0.2rem; color: #FFF;}
.aEmail p{font-size: 0.18rem; color: #FFF; font-weight: bold;}

.aEmail:hover{background: var(--i_color); transform:translate(0,-6px);}

@media screen and (max-width:1024px) {
	.contactBox h5{font-size: 20px;}

	.aEmail{padding: 14px 40px;}
	.aEmail p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.contactBox h5{font-size: 17px;}

	.aEmail{padding: 12px 30px;}
	.aEmail span{gap: 0 10px;}
	.aEmail iconify-icon{font-size: 18px;}
	.aEmail p{font-size: 15px;}
}




