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

:root {
	--i_color: #F8B62B;
	--header_height: .9rem;
	--boxShadow: 0 2px 10px rgb(0 0 0 / 8%);
}
@media screen and (max-width:1024px) {
	:root {
		--header_height: .6rem;
	}
}



.wrap {
	width: 94%;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width:1024px) {
	.wrap{width: 94%;}
}
.wrap2{width: 94%;margin-left: auto;margin-right: auto;}




.wrap_l{margin-left: 8.2vw;}
.wrap_r{margin-right: 8.2vw;}
@media screen and (max-width:1680px) {
	.wrap_l{margin-left: 5vw;}
	.wrap_r{margin-right: 5vw;}
}
@media screen and (max-width:1024px) {
	.wrap_l{margin-left: 3vw;}
	.wrap_r{margin-right: 3vw;}
}




/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFF;
	box-shadow: var(--boxShadow);
	z-index: 2014;
}
header::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background: #E8E8E8;}
@media screen and (max-width:1024px) {}


.top{background: #FFF;display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;}


/* logo */
.logo {
	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: 50%;}
@media screen and (max-width:1440px) {
	.logo img {max-height: 40%;}
}






/* 导航 */
@media screen and (min-width:1025px) {
	.i_nav {
		margin-left: auto;
		margin-right: auto;
		width: 76%;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		background: #F9F9F9;
		border-radius: 8px;
		position: relative;
		z-index: 2014;
	}

	.i_nav>li {width: 100%; position: relative; text-align: center;}
	.i_nav>li::before{opacity: 0; content: ''; position:absolute; left:50%; transform:translate(-50%,0); top: 0; width:0; height:0; border-left:6px solid transparent; border-right:6px solid transparent; border-top:6px solid var(--i_color);}

	.i_nav>li>a {
		display: block;
		padding: 0 .1rem;
		font-size: .18rem;
		color: #333;
		line-height: calc(var(--header_height) - .3rem);
		white-space: nowrap;
		position: relative;
	}

	.i_nav>.current-menu-item::before,
	.i_nav>.current-category-ancestor::before,
	.i_nav>.current-post-ancestor::before,
	.i_nav>.current-menu-ancestor::before,
	.i_nav>.current-menu-parent::before,
	.i_nav>li:hover::before,
	.i_nav>li.active::before
	{opacity: 1;}
	.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: calc(var(--header_height) - .3rem);
		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:1440px) {
	.i_nav{width: 74%;}
}
@media screen and (max-width:1366px) {
	.i_nav>li>a{font-size: 0.17rem;}
}








@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 #DDD;
		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 #DDD
	}

	.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 8px 10px rgb(0 88 167 / 10%); z-index: 2014;-webkit-transition:top .5s ease; transition:top .5s ease;}

.nav_menu_products dl{padding: .5rem 0 .4rem;display:-webkit-flex; display:flex; flex-wrap:nowrap;justify-content: center; gap: 0 3%; position: relative;}
.nav_menu_products dt{width: 100%;}
.nav_menu_products dt>a{display: block; padding-left: 8px; font-size: 18px;font-weight: bold;}
.nav_menu_products ul{margin-top: 0.2rem;}
.nav_menu_products li{}
.nav_menu_products li a{display: block;padding: 6px 0 6px 20px;font-size: 15px;color: #666;-webkit-transition:all .5s ease; transition:all .5s ease; position: relative;}
.nav_menu_products li a::before{content: '';position: absolute;left: 0;top: 17px;width: .1rem;height: 2px; background: #CCC;}

.nav_menu_products dt>a:hover{color: var(--i_color);}
.nav_menu_products li a:hover{color: var(--i_color);}
.nav_menu_products li a:hover::before{background: rgb(0 88 167 / 50%);}

@media screen and (max-width:1440px) {
	.nav_menu_products dt>a{font-size: 17px;}
}
@media screen and (max-width:1200px) {
	.nav_menu_products dt>a{font-size: 15px;}
	.nav_menu_products li a{font-size: 14px;}
	.nav_menu_products li a::before{top: 14px;}
}
@media screen and (max-width:1024px) {
	.nav_menu_products{display: none !important;}
}






/* 移动端导航按钮 */
.nav_menu {
	/* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
	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 {
	padding: 0 .2rem;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 .3rem;
	background: #F9F9F9;
	border-radius:8px;
}
@media screen and (max-width:1024px) {
	.top_r{--size:.2rem}
	.top_r{margin-left: auto; gap: 0 30px; padding: 0 0;background: none;}
}



.top_search_ico{position: relative;font-size: 0; cursor: pointer;}
.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);}




.top_language{position: relative;}
.top_language::before{content: '';position:absolute; top:50%; transform:translate(0,-50%); left: -.15rem; width: 1px;height: 40%; background: #AAA;}
.top_language_btn{padding-right: 0.14rem; height: calc(var(--header_height) - .3rem);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: var(--boxShadow);
	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);}

@media screen and (max-width:1366px) {
	.top_r{gap: 0 .24rem;}
}
@media screen and (max-width:1024px) {
	.top_language_btn{height: var(--header_height);}
}







/* 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;
	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 48 48'%3E%3Cg fill='none' stroke='%23FFF' stroke-linejoin='round' stroke-width='4'%3E%3Cpath d='M21 38c9.389 0 17-7.611 17-17S30.389 4 21 4S4 11.611 4 21s7.611 17 17 17Z'/%3E%3Cpath stroke-linecap='round' d='M26.657 14.343A7.98 7.98 0 0 0 21 12a7.98 7.98 0 0 0-5.657 2.343m17.879 18.879l8.485 8.485'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
	background-size: .2rem;
	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%;
	}
}



.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;
	padding-bottom: 39.185%;
	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:50%; 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:var(--i_color);}
.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: .24rem; z-index: 3;}
.banner-pagination .swiper-pagination-bullet{width:10px; height:10px; display:inline-block; margin:0 6px; background:#CCC; border-radius:50%; outline:none; cursor:pointer;}
.banner-pagination .swiper-pagination-bullet-active{background:var(--i_color)}

@media screen and (max-width:1024px) {
	.banner .swiper-slide{padding-bottom: 50%;}
	.banner-pagination{bottom: 20px;}
	.banner-button-prev,.banner-button-next{display: none;}
}
@media screen and (max-width:560px) {
	.banner-pagination{bottom: 16px;}
	.banner-pagination .swiper-pagination-bullet{width: 8px;height: 8px; margin: 0 4px;}
}






.banner_text1{position:absolute; top:9%; left: 0; width: 100%; z-index: 3; text-align: center;}
.banner_text1 h2{font-size: 3vw; line-height: 1.3; font-weight: bold; color: var(--i_color); text-shadow: 0 3px 0 #FFF;}
.banner_text1 i{
	display: table;margin-left: auto;margin-right: auto;
	width: 55%;height: 2px;
	background:linear-gradient(to right, transparent, var(--i_color), transparent);
}
.banner_text1 p{display: table; margin-left: auto;margin-right: auto; padding: .14rem .3rem; font-size: 0.2rem; color: #FFF; background: var(--i_color);}

@media screen and (max-width:1024px) {
	.banner_text1 h2{font-size: 3.4vw; text-shadow: 0 2px 0 #FFF;}
	.banner_text1 p{padding: 10px 20px; font-size: 16px;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {
	.banner_text1 h2{font-size: 16px; text-shadow: 0 1px 0 #FFF;}
	.banner_text1 i{margin: 10px auto;}
	.banner_text1 p{padding: 0; font-size: 13px; background: none;}
}





.banner_text2{position: absolute;left: 6%; top: 18%; width: 60%;}
.banner_text2 h2{font-size: 3vw;color: #FFF; font-weight: bold; line-height: 1.4;}
.banner_text2 i{
	display: block; margin: 6px 0 .4rem; width: 80%; height: 3px;
	background:linear-gradient(to right, transparent, var(--i_color), transparent);
}
.banner_text2 p{font-size: 0.22rem;color: #FFF; line-height: 1.4;}

@media screen and (max-width:1024px) {
	.banner_text2{left: 4%;}
	.banner_text2 i{margin: 4px 0 20px;}
	.banner_text2 p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.banner_text2{top: 12%; width: 80%;}
	.banner_text2 h2{font-size: 4vw;}
	.banner_text2 i{margin: 4px 0 10px;}
	.banner_text2 p{font-size: 14px;}
}




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




.i_tit{}
.i_tit>span{display:flex; flex-wrap:wrap; align-items: center; gap: 0 8px;}
.i_tit em{margin-bottom: 8px; width: 0.4rem;height: 0.4rem;background:url(static/images/title-icon.webp) no-repeat center; background-size: contain;}
.i_tit h3{font-weight: bold;}
.i_tit h3 i{color: var(--i_color); font-weight: bold;}
.i_tit h6{margin-top: 0.14rem;}

.i_tit.center{text-align: center;}
.i_tit.center>span{justify-content: center;}

@media screen and (max-width:1024px) {
	.i_tit em{width: 34px;height: 34px;}
	.i_tit h6{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.i_tit em{width: 28px;height: 28px;}
	.i_tit h6{font-size: 13px;}
}






.i_more{display: table; border: 1px solid var(--i_color); border-radius:6px;}
.i_more span{padding: .12rem .34rem; display:flex; flex-wrap:wrap; align-items: center; justify-content: center; gap: 0 .1rem;}
.i_more b{font-size: 0.18rem; color: var(--i_color);}
.i_more iconify-icon{font-size: 0.22rem;color: var(--i_color);}

.i_more:hover{transform:translate(0,-6px); box-shadow: 0 4px .1rem rgb(0 0 0 / 20%);}
.i_more:hover, .i_more.active{background: var(--i_color);}
.i_more:hover b, .i_more:hover iconify-icon, .i_more.active b,.i_more.active iconify-icon{color: #FFF;}

.i_more.center{margin-left: auto;margin-right: auto;}

.i_more,.i_more b,.i_more iconify-icon{transition:all.5s ease;}

@media screen and (max-width:1024px) {
	.i_more span{padding: 8px 16px;}
	.i_more b{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.i_more b{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.i_more span{gap: 0 8px;}
	.i_more b{font-size: 14px;}
	.i_more iconify-icon{font-size: 18px;}
}







.pItem {display:block;box-sizing:border-box;padding:.2rem .2rem .9rem;text-align:center;width:100%;}
.pItem .img {width:100%;position:relative;overflow:hidden}
.pItem .img:before {content:"";display:block;padding-bottom:100%}
.pItem .img img {position:absolute; top:0; left:0; width:100%; height:100%; object-fit: contain; transition:all .5s ease;}
.pItem .txt {margin-top:0.2rem;}
.pItem .txt p {font-size:0.18rem;color:#444;line-height:1.5;font-weight:bold;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2; transition:all .5s ease;}
.pItem .i_more {position:absolute;left:50%;transform:translate(-50%,0);bottom:0.26rem;width:85%;}

.pItem:hover img{transform: scale(1.05, 1.05);}
.pItem:hover p{color: var(--i_color);}
.pItem:hover .i_more{background: var(--i_color);}
.pItem:hover .i_more b,.pItem:hover .i_more iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.pItem{padding: 16px;}
	.pItem .txt{margin-top: 10px;}
	.pItem .txt p{font-size: 15px; line-height: 1.4;}
	.pItem .i_more{display: none;}
}
@media screen and (max-width:560px) {
	.pItem .txt p{font-size: 14px; font-weight: normal;}
}







.i_products_nav {display:-webkit-flex;display:flex;flex-wrap:wrap;position:relative;overflow:hidden;}
.i_products_nav::before {content:'';position:absolute;left:0;top:0;width:100%;height:1px;background:#DDD;}
.i_products_nav ul {width:100%;display:-webkit-flex;display:flex;flex-wrap:nowrap;position:relative;}
.i_products_nav li {flex-shrink:0;text-align:center;position:relative;cursor:pointer;}
.i_products_nav li::before {content:'';position:absolute;left:0;top:0;width:0;height:2px;background:var(--i_color);transition:all .5s;}
.i_products_nav .swiper-slide-thumb-active::before {width:100%;}
.i_products_nav li p {padding:.2rem 0;font-size:.2rem;font-weight:bold;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}

.i_products_show {position:relative;overflow:hidden;}
.i_products_show .swiper-wrapper {display:flex;position:relative;width:100%}
.i_products_show .swiper-slide {flex-shrink:0;position:relative;}
.i_products_list {width:100%;box-sizing:border-box;display:-webkit-flex;display:flex;flex-wrap:nowrap;position:relative;gap:0 2%;overflow:hidden;}
.i_products_list li {position:relative;cursor:pointer;border-radius:6px;width:23.5%;box-sizing:border-box;border:1px solid #DDD;background:#FFF;overflow:hidden;}

@media screen and (max-width:1200px) {
	.i_products_nav li p{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.i_products_nav{}
	.i_products_nav li p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.i_products_nav li p{padding: 16px 0;}
	.i_products_nav li p{font-size: 15px;}

	.i_products_list{flex-wrap: wrap; gap: 20px 3%;}
	.i_products_list li{width: 48.5%;}
}
@media screen and (max-width:560px) {
	.i_products_list{gap: 14px 3%;}
}






.about{}

.aboutCont{display:flex; flex-wrap:nowrap;align-items: center; gap: 0 6%; background:url(static/images/about_text_bg.webp) no-repeat left; background-size: 60%;}

.about_t{width: 100%;}
.about_t article{font-size: 0.16rem;line-height: 1.6;}

.about_p{flex-shrink: 0; width: 36%; box-sizing: border-box; padding: 10px; position: relative;}
.about_p img{width: 100%;}

.about_p .box1{width: 100%; position: relative;}
.about_p .box1::before{content: '';display: block;padding-bottom: 100%;}
.about_p .box1 em{position:absolute; top:0; left:0; width:100%; height:100%; border-radius:50%; box-sizing: border-box; border: 1px solid var(--i_color); animation:rotate 40s infinite linear}
.about_p .box1 em::after{content: '';position: absolute;top: -7px; left:50%; transform:translate(-50%,0); width: 14px;height: 14px;background: var(--i_color); border-radius:50%;}
.about_p .box1 img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: calc(100% - .4rem); height: calc(100% - .4rem); border-radius:50%; overflow: hidden;}

.about_p .box2{position: absolute; right: 0;bottom: 0;width: 35%; border-radius:50%; overflow: hidden;}
.about_p .box2::before{content: '';display: block;padding-bottom: 100%;}
.about_p .box2 img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

@keyframes rotate{
	0% {transform:rotate(0deg);}
	100% {transform:rotate(360deg);}
}

@media screen and (max-width:1024px) {
	.about_t article{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.aboutCont{flex-wrap: wrap; gap: 20px 0;}
	.about_p{width: 100%; max-width: 400px;}
}
@media screen and (max-width:560px) {
	.about_t article{font-size: 13px;}

	.about_p .box1 img{width: calc(100% - 26px); height: calc(100% - 26px);}
}




.vBtn{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); cursor: pointer;}
.vBtn span{position: relative;}
.vBtn span::before,.vBtn span::after{content: '';position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); background: rgb(255 255 255 / 50%); -webkit-border-radius:50%; border-radius:50%;}
.vBtn span::before{width: 82%;height: 82%; -webkit-animation:diffuse 2s infinite linear; animation:diffuse 2s infinite linear}
.vBtn span::after{width: 100%;height: 100%; -webkit-animation:diffuse 2s infinite linear; animation:diffuse 2s infinite linear}
@keyframes diffuse{
	0% {
		opacity: 0
	}
	5% {
		opacity: 1
	}
	80% {
		opacity: 0
	}
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1.8);
		-ms-transform: translate(-50%, -50%) scale(1.8);
		-o-transform: translate(-50%, -50%) scale(1.8);
		-webkit-transform: translate(-50%, -50%) scale(1.8);
		-moz-transform: translate(-50%, -50%) scale(1.8)
	}
}
.vBtn i{display: block;width: 0.7rem;height: 0.7rem; background: #FFF; -webkit-border-radius:50%; border-radius:50%; position: relative;}
.vBtn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.4rem;color: var(--i_color);}

@media screen and (max-width:1024px) {
	.vBtn i{width: 50px;height: 50px;}
	.vBtn iconify-icon{font-size: 30px;}
}
@media screen and (max-width:560px) {
	.vBtn i{width: 46px;height: 46px;}
	.vBtn iconify-icon{font-size: 26px;}
}




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





.aboutNum{display:flex; flex-wrap:nowrap; gap: 0 2.5%;}
.aboutNum dt{width: 100%; max-width: 33%; box-sizing: border-box; padding: .3rem; background: #F6F6F6;}

.aboutNum span{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .1rem;}
.aboutNum span i{flex-shrink: 0; width: 0.48rem;height: 0.48rem;background: #373434; border-radius:50%; position: relative;}
.aboutNum span iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.24rem;color: #FFF;}
.aboutNum span p{font-size: 0.18rem;}

.aboutNum dt>div{font-family: 'DIN-Bold', Arial; font-size: 0.3rem; margin-top: 0.1rem; display:flex; flex-wrap:wrap; align-items: baseline; justify-content: flex-end; margin-left: auto;}
.aboutNum div i{font-size: 0.5rem;font-weight: bold;}

.aboutNum dt:hover{background: var(--i_color);}
.aboutNum dt:hover span i{background: #FFF;}
.aboutNum dt:hover span iconify-icon{color: var(--i_color);}
.aboutNum dt:hover span p,.aboutNum dt:hover div{color: #FFF;}

@media screen and (max-width:1024px) {
	.aboutNum dt{padding: 20px;}
	.aboutNum span i{width: 36px;height: 36px;}
	.aboutNum span iconify-icon{font-size: 20px;}
	.aboutNum span p{font-size: 14px;}

	.aboutNum div i{font-size: 40px;}
}
@media screen and (max-width:768px) {
	.aboutNum{flex-wrap: wrap; gap: 20px 0;}
	.aboutNum dt{max-width: 100%;}
	.aboutNum dt>div{font-size: 26px;}
	.aboutNum div i{font-size: 32px;}
}
@media screen and (max-width:560px) {}





.case{background:linear-gradient(to bottom, #F8F8F8, transparent);}

.case .pr{padding: 0 .1rem; overflow: hidden;}

.caseList{padding: 1.3rem 0; position:relative;}
.caseList .swiper-wrapper{display:flex; width:100%; align-items: center;}
.caseList .swiper-slide{flex-shrink:0; opacity: .4; width: 40vw; background: #FFF; position:relative; border-radius:6px; box-shadow: 0 0 .1rem rgb(0 0 0 / 20%); transition:transform .8s ease;}
.caseList .swiper-slide-active{opacity: 1 !important; border: 1px solid var(--i_color); box-shadow: 0 0 .1rem rgb(248 182 43 / 20%); transform: scale(1.8, 1.8); z-index: 3;}

.caseList .swiper-slide a{padding: .2rem; display:flex; flex-wrap:nowrap; gap: 0 .2rem; align-items: center;}

.caseList .coverPic{flex-shrink: 0; width:50%; position:relative; overflow:hidden}
.caseList .coverPic::before{content:""; display:block; padding-bottom:100%}
.caseList .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; transition:all .5s ease;}

.caseList .t{width: 100%;}

.caseList .t h6{font-size: 0.16rem;color: #111;line-height: 1.6;}
.caseList .t>span{display: block; margin: .14rem 0 .2rem; font-size: 12px; color: #666; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:5;}

.caseList .btn{display: table; background: var(--i_color); border-radius:4px;}
.caseList .btn span{padding:.1rem .16rem; display:flex; flex-wrap:wrap; align-items: center; justify-content: center; gap: 0 .06rem;}
.caseList .btn b{font-size: .14rem; color: #FFF;}
.caseList .btn iconify-icon{height: .18rem; font-size: .18rem; color: #FFF; display:flex; flex-wrap:wrap; align-items: center;}

@media screen and (min-width:1025px) {
	.caseList .swiper-slide-active .t h6{font-size: 0.12rem;}
	.caseList .swiper-slide-active .t>span{font-size: .08rem;}
	.caseList .swiper-slide-active .btn span{padding:.06rem .16rem; gap: 0 .06rem;}
	.caseList .swiper-slide-active .btn b{font-size: .08rem;}
	.caseList .swiper-slide-active .btn iconify-icon{font-size: .12rem;}
}

.caseList-navigation{display:flex; flex-wrap:wrap;justify-content: center; gap: 0 .3rem;}

.caseList-navigation>div{width:.5rem; height:.5rem; box-sizing: border-box; border: 1px solid #555; border-radius:50%; z-index:3; cursor:pointer; outline:none; position: relative; user-select:none}
.caseList-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.2rem; color:#555;}
.caseList .swiper-button-disabled{cursor:not-allowed}
.caseList-navigation>div:hover{border-color: var(--i_color);}
.caseList-navigation>div:hover iconify-icon{color: var(--i_color);}

.caseList-pagination{display: none;}

@media screen and (max-width:1200px) {
	.caseList{padding: .9rem 0;}
}
@media screen and (max-width:1024px) {
	.caseList{padding: 10px 0;}
	.caseList .swiper-slide{opacity: 1;}
	.caseList .swiper-slide-active{transform: none;}

	.caseList .coverPic{width: 30%;}

	.caseList-navigation{display: none;}

	.caseList-pagination{display:block; margin-top:0.3rem; text-align:center}
	.caseList-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#CCC; border-radius:50%; outline:none; cursor:pointer;}
	.caseList-pagination .swiper-pagination-bullet-active{background:var(--i_color)}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {
	.caseList .swiper-slide a{padding: 14px; flex-wrap: wrap; gap: 16px 0;}
	.caseList .coverPic{width: 100%;}
	.caseList .t h6{font-size: 15px;}
	.caseList .t>span{-webkit-line-clamp:3;}

	.caseList-pagination{margin-top: 20px;}
}






.homeAdv{
	--li_width: 28%;
	background:linear-gradient(to bottom, #EAEBEC, #F1F1F1, #F5F6F5);
	position: relative;
	overflow: hidden;
}
.homeAdv::before{content: '';position:absolute; top: .16rem; left:50%; transform:translate(-50%,0); width: 60%;height: 5rem;background:url(static/images/logo-gradient.webp) no-repeat top; background-size: contain;}

.homeAdv .i_tit{position: relative; z-index: 3;}

.homeAdvCont{position: relative;}

.homeAdvList{display:flex; flex-wrap:wrap; justify-content:space-between; gap: .4rem calc(100% - var(--li_width) * 2); position: relative; z-index: 2;}
.homeAdvList li{width: var(--li_width);}
.homeAdvList li:nth-child(odd){text-align: right;}

.homeAdvList i{font-family: 'DIN-Bold', Arial; font-size: 0.26rem;font-weight: bold;}
.homeAdvList h6{margin: .1rem 0; font-size: 0.22rem;font-weight: bold;}
.homeAdvList p{font-size: 0.16rem; line-height: 1.5;}

.homeAdvList li:hover i, .homeAdvList li:hover h6{color: var(--i_color);}

.homeAdvPic{position:absolute; top:55%; left:50%; transform:translate(-50%,-50%); width: 70%;}

@media screen and (max-width:1024px) {
	.homeAdvList{gap: 20px 0;}
	.homeAdvList li{width: 100%; text-align: left !important;}

	.homeAdvList i{font-size: 20px;}
	.homeAdvList h6{margin: 10px 0;font-size: 18px;}
	.homeAdvList p{font-size: 14px; color: #666;}

	.homeAdvPic{display: none;}
}
@media screen and (max-width:560px) {
	.homeAdvList i{font-size: 16px;}
	.homeAdvList h6{font-size: 16px;}
	.homeAdvList p{font-size: 13px;}
}






.homeNews{position: relative;}

.homeNews .circle{position:absolute; top: 10%; left:50%; transform:translate(-50%,0); width: 7rem;height: 7rem;background:linear-gradient(to bottom, #FEF6E5, transparent); border-radius:50%;}
.homeNews .circle::after{content: '';position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 60%;height: 60%;background: #FFF; border-radius:50%;}

.homeNews_tit{}
.homeNews_tit h4{color: var(--i_color); font-weight: bold;}
.homeNews_tit h6{margin-top: 0.1rem; display:flex; flex-wrap:wrap;align-items: center; gap: 0 .1rem; font-size: 0.3rem;font-weight: bold;}
.homeNews_tit h6 em{width: 1rem;height: 2px;background: #CCC;}
.homeNews_tit h6 i{font-weight: bold; color: var(--i_color);}

.homeNewsCont{}
.homeNewsCont .item{display:flex; flex-wrap:nowrap; gap: 0 6%; align-items: flex-start;}

.homeNews_t{width: 100%; margin-top: 0.4rem;}
.homeNews_t .tit{margin-bottom: 0.2rem; font-size: 0.28rem;font-weight: bold; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;}
.homeNews_t>p{font-size: 0.16rem;color: #777; line-height: 1.6; overflow:hidden;}
.homeNews_t>p a{color: var(--i_color);}
.homeNews_t i{display: block; margin-top: 0.3rem; padding-bottom: 0.2rem; font-size: 0.16rem; border-bottom: 1px solid #EEE;}

.homeNews_p{padding-top: 0.3rem; margin-left: auto; flex-shrink: 0; width: 42%; position: relative;}
.homeNews_p::before{content: '';position: absolute; top: 0;right: 0; width: 55%; height: 80%; background: var(--i_color); -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);}
.homeNews_p a{position: relative;}
.homeNews_p img{width: 100%;}

.homeNews_t .tit:hover{color: var(--i_color);}
.homeNews_t>p a:hover{text-decoration: underline;}
.homeNews_p img:hover{opacity: .9;}

@media screen and (max-width:1024px) {
	.homeNews .circle{width: 400px;height: 400px;}

	.homeNews_tit h6{font-size: 18px;}

	.homeNews_t .tit{font-size: 18px;}
	.homeNews_t>p{font-size: 14px;}
	.homeNews_t i{font-size: 15px;}

	.homeNews_p{padding-top: 16px;}
}
@media screen and (max-width:768px) {
	.homeNews .circle{display: none;}

	.homeNewsCont .item{flex-wrap: wrap; gap: 20px 0;}
	.homeNews_p{order: -1; width: 100%;}

	.homeNews_t{margin: 0;}
}
@media screen and (max-width:560px) {
	.homeNews_t .tit{font-size: 15px;}
	.homeNews_t>p{font-size: 13px;}
	.homeNews_t i{font-size: 13px;}

	.homeNews_t .i_more{margin-top: 20px;}
}






.Partners{position: relative; overflow: hidden;}
.Partners::before{content: '';position: absolute;top: 0;right: 0;width: 50%;height: 100%; background:linear-gradient(to right, transparent, #F1F1F1);}

.Partners .title_box {width:max-content;display:block;margin-left:0.35rem;}
.Partners .p_content {width:100%;display:flex; align-items: flex-start;}
.Partners .p_content .p_gif {width:34%;}
.Partners .p_content .p_gif .p_gif_box {width:100%;padding-bottom:100%;position:relative;}
.Partners .p_content .p_gif .p_gif_box img {position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}
.Partners .p_content .p_info {width:55%;margin-left:auto;}
.Partners .p_content .p_info p {font-size:0.18rem;color:#222;line-height:1.6;text-align:right;}
.Partners .p_num {margin-top:0.3rem;}
.Partners .p_info .p_num > div {display:flex;width:max-content;margin-left:auto;}
.Partners .p_info .p_num > div span {font-family: 'DIN-Bold', Arial; color:var(--i_color);font-weight:bold;font-size:0.84rem;}
.Partners .p_info .p_num > div i {color:var(--i_color);font-weight:500;font-size:0.4rem; font-weight: bold;}
.Partners .p_info .p_num > p {font-size:0.22rem;color:#666;}

.partnersList{padding: .1rem; position:relative; overflow:hidden}
.partnersList .swiper-wrapper{display:flex; position:relative; width:100%}
.partnersList .swiper-slide{flex-shrink:0; position:relative; background: #FFF; position: relative; box-shadow: 0 0 .1rem rgb(0 0 0 / 10%);}
.partnersList .swiper-slide::before{content: '';display: block;padding-bottom: 45%;}
.partnersList img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:80%; height:70%; object-fit: contain;}

.partnersList-pagination{display:block; text-align:center}
.partnersList-pagination .swiper-pagination-bullet{width:.3rem; height:1px; display:inline-block; margin:0 0; background:#CCC; outline:none; cursor:pointer;}
.partnersList-pagination .swiper-pagination-bullet-active{height: 2px; background:var(--i_color)}

@media screen and (max-width:1024px) {
	.Partners::before{display: none;}
	.Partners .p_content .p_info p{font-size: 14px;}
	.Partners .p_info .p_num > div span{font-size: 54px;}
	.Partners .p_info .p_num > div i{font-size: 26px;}
}
@media screen and (max-width:768px) {
	.Partners .p_content{flex-wrap: wrap; gap: 30px 0;}
	.Partners .p_content .p_gif{width: 100%; max-width: 400px;}
	.Partners .p_content .p_info{width: 100%;}
	.Partners .p_content .p_info p{text-align: left;}
	.Partners .p_info .p_num > div{margin: 0 0;}
}
@media screen and (max-width:560px) {
	.Partners .p_content .p_info p{font-size: 13px;}
	.Partners .p_info .p_num > div span{font-size: 40px;}

	.partnersList img{width: 70%;}
}






.homeContact{}

.homeContact_wrap{display:flex; flex-wrap:nowrap; gap: 0 5%;}

.homeContact_form{flex-shrink: 0; width: 50%;}
#wpforms-94{
	--wpforms_input_height:48px;
	--wpforms_textarea_height:120px;
	--wpforms_input_font_size: 16px;
}
#wpforms-94{margin:0; padding:0;}
#wpforms-form-94{width:100%; position:relative;}

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

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

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

/* 隐藏 Label 标签 */
#wpforms-94 .wpforms-field-container .wpforms-field-label{height: 0; font-size: 0;margin: 0 0;}
#wpforms-94 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 6px; font-size: 16px; font-weight: bold;}

/* 输入框水平排列，一行两个 */
/* #wpforms-94 .wpforms-field-container{display:flex; flex-wrap:wrap;justify-content: space-between;}
#wpforms-94-field_1-container,
#wpforms-94-field_2-container{width: 49% !important;} */

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


.homeContact_t{width: 100%; margin-left: auto;}
.homeContact_t>h5{font-size: 0.26rem;}

.homeContact_tList{display:flex; flex-wrap:wrap; flex-direction: column; gap: .26rem 0;}
.homeContact_tList li{}
.homeContact_tList span{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 6px;}
.homeContact_tList img{flex-shrink: 0; height: 0.32rem;}
.homeContact_tList h6{font-size: 0.18rem;}
.homeContact_tList p{margin-top: 0.1rem; font-size: 0.16rem;color: #888; line-height: 1.6;}

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

	.homeContact_tList img{height: 26px;}
	.homeContact_tList h6{font-size: 15px;}
	.homeContact_tList p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.homeContact_wrap{flex-wrap: wrap; gap: 30px 0;}
	.homeContact_form{width: 100%;}
}
@media screen and (max-width:560px) {
	.homeContact_t>h5{font-size: 18px;}
	.homeContact_tList img{height: 20px;}
}





footer{}

.fContact{background:url(static/images/fContact-bg.webp) no-repeat center; background-size: cover;}
.fContact .wrap{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 4%;}
.fContact h3{font-size: 0.3rem; color: #FFF; line-height: 1.5; font-weight: bold;}
.fContact .i_more{margin-left: auto; flex-shrink: 0;}
@media screen and (max-width:1024px) {
	.fContact h3{font-size: 20px;}
}
@media screen and (max-width:560px) {
	.fContact h3{font-size: 15px;}
}



.fCont{background: #222;}

.fMain{display:-webkit-flex; display:flex; flex-wrap:nowrap; justify-content: space-between;}

.fLeft{flex-shrink: 0; width: 26%;}
.fLogo img{max-height: .8rem;}
.fLeft>p{margin-top: 0.3rem; font-size: 0.18rem;color: rgb(255 255 255 / 80%); line-height: 1.6;}

.fMedia{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 0 .3rem;}
.fMedia li{transition:all .5s ease;}
.fMedia a{display: block; width: 0.5rem;height: 0.5rem; background: rgb(255 255 255 / 10%); border-radius:6px; position: relative;}
.fMedia iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.24rem;color: #FFF;}
.fMedia li:hover{transform:translate(0,-6px);}
.fMedia li:hover a{background: var(--i_color);}


.fTit{margin-bottom: 0.26rem; font-size: 0.26rem;color: var(--i_color);font-weight: bold;}

.fNav ul{}
.fNav li{}
.fNav li a{display: block; padding: .1rem 0; font-size: 0.18rem;color: rgb(255 255 255 / 80%);}
.fNav li a:hover{color: var(--i_color);}

.fC{width: 25%;}
.fC_list{}
.fC_list li{margin-bottom: 0.2rem; display:flex; flex-wrap:nowrap; gap: 0 .1rem;}
.fC_list iconify-icon{font-size: 0.22rem;color: var(--i_color);}
.fC_list a,.fC_list p{font-size: 0.18rem; color: #FFF; line-height: 1.6;}


.fCR{border-top: 1px solid rgb(255 255 255 / 15%);}
.fCR p,.fCR a{font-size: 0.15rem; color: #FFF;}

@media screen and (max-width:1024px) {
	.fMain{flex-wrap: wrap; gap: 50px 0;}

	.fLeft{width: 100%;}
	.fLogo img{height: 40px;}
	.fLeft>p{font-size: 15px;}
	.fMedia{margin-top: 26px;}
	.fMedia a{width: 36px;height: 36px;}
	.fMedia iconify-icon{font-size: 18px;}

	.fNav{display: none;}

	.fC{width: 100%;}

	.fTit{font-size: 20px;}

	.fC_list li{margin-bottom: 14px;}
	.fC_list iconify-icon{margin-top: 3px; font-size: 18px;}
	.fC_list a, .fC_list p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.fMain{gap: 30px 0;}

	.fLogo img{height: 30px;}
	.fLeft>p{margin-top: 18px;}

	.fMedia{gap: 0 16px;}
	.fMedia a{width: 30px;height: 30px;}
	.fMedia iconify-icon{font-size: 16px;}

	.fTit{font-size: 18px;}

	.fC_list a, .fC_list p{font-size: 15px;}

	.fCR{padding: 18px 0;}
	.fCR p, .fCR a{font-size: 13px; line-height: 1.5;}
}








/* ------------------------------------------------------- */

.banner__{width: 100%; font-size: 0; overflow: hidden;}
.banner__ img{width: 100vw; max-height: 5rem; object-fit: cover;}






/* Breadcrumb */
.in_position{padding:.2rem 0;background:#F1F1F1;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}
}








.categoryBox{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 2.5%;}
.cat_nav{flex-shrink: 0; width: 22%; box-sizing: border-box; padding-bottom: 1rem; padding-right: 2.5%; border-right: 1px solid #DDD; position: relative;}
.catList_show{width: 100%; margin-left: auto;}

@media screen and (max-width:1440px) {
	.cat_nav{width: 24%;}
}
@media screen and (max-width:1024px) {
	.categoryBox{flex-wrap: wrap; gap: 40px 0;}
	.cat_nav{width: 100%; padding: 0 0; background: none; border: none;}
	.catList_show{width: 100%; padding: 0 0; margin: 0 0;}
}
@media screen and (max-width:560px) {
	.categoryBox{margin-bottom: 50px;}
}







.cat_nav_tit{margin-bottom: 0.2rem; padding-bottom: 0.2rem; position: relative; border-bottom: 1px solid #CCC;}
.cat_nav_tit h4{font-size: 0.22rem;color: #666;}
.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;padding: 0 .1rem 0 .2rem; gap: 0 .2rem; border-radius:4px;}
.cat_fold_tit a{padding: .16rem 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{background: var(--i_color);}
.active .cat_fold_tit a{color: #FFF;}
.active .cat_fold_tit iconify-icon{color: #FFF; -webkit-transform:rotate(90deg); transform:rotate(90deg);}

.cat_fold_sub{display: none; padding: .1rem 0;}
.cat_fold_sub dt{box-sizing: border-box; border-radius:4px;}
.cat_fold_sub a{display: block;padding: .12rem .26rem .14rem;font-size: 0.16rem; position: relative;}
.cat_fold_sub a::before{content: '';position: absolute; top: 38%; left:6px; width: 6px;height: 6px;background: #AAA; border-radius:50%;}
.cat_fold_sub dt.active a{color: var(--i_color) !important;}
.cat_fold_sub dt:hover a{color: var(--i_color);}

@media screen and (max-width:1200px) {
	.cat_nav_tit h4{font-size: 0.22rem;}
}
@media screen and (max-width:1024px) {
	.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;}

	.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{margin-bottom: 0.2rem; position: relative;}
.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;}
}







.pList{display:flex; flex-wrap:wrap; gap: .34rem 2.5%;}
.pList li{position:relative;cursor:pointer;border-radius:6px;width:31.66%;box-sizing:border-box;border:1px solid #DDD;background:#FFF;overflow:hidden;}

@media screen and (max-width:768px) {
	.pList{gap: 20px 3%;}
	.pList li{width: 48.5%;}
}
@media screen and (max-width:560px) {
	.pList{gap: 14px 3%;}
}






/* Paging */
.in_paging{
	--size:34px;
	--border_radius:0;
}
.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:#EEE;box-sizing: border-box; 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;}
}







.p_dataBox{
	background:linear-gradient(to bottom, transparent, #F4F4F4);
}

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

/* atlas */
.p_atlas {flex-shrink: 0; width:35%; 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:contain;}

/* thumbnail */
.p_thumbnail_list {width:calc(100% - 1.4rem);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: 1px solid #DDD; flex-shrink:0;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:.5rem;height:.5rem; box-sizing: border-box; border: 1px solid #AAA; border-radius:50%; 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:0;}
.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:#888}
.thumbnail-prev:hover, .thumbnail-next:hover{background: var(--i_color); border-color: 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: #666;}
.thumbnail-pagination .swiper-pagination-current{font-size: 0.22rem;color: var(--i_color);}

@media screen and (max-width:1024px) {
	.p_data{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:768px) {

}
@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%;}

.pCat_name{margin: .1rem 0; font-size: 0.18rem; text-decoration: underline;}
.p_title h1{margin-top: 0.22rem; padding-bottom: 0.22rem; border-bottom: 1px solid #DDD; color: var(--i_color); font-weight: bold; line-height: 1.4;}

.p_des{}
.p_des>h5{margin-bottom: 0.12rem; font-size: 0.18rem; color: #333; font-weight: bold;}
.p_des article{}

.p_share{border-bottom: 1px solid #DDD; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center;gap: 0 .1rem;}
.p_share>p{font-size: 0.18rem;font-weight: bold;}
.p_share dl{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;gap: 0 .2rem;}
.p_share dt a{display:block;}
.p_share dt iconify-icon {font-size:0.22rem;color:#666;}

.p_share dt:hover a{background:var(--i_color);}
.p_share dt:hover iconify-icon{color: #FFF;}

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

@media screen and (max-width:1024px) {
	.pCat_name{font-size: 14px;}
	.p_des>h5{font-size: 18px;}

	.p_share>p{font-size: 18px;}
	.p_share dt iconify-icon{font-size: 20px;}
}
@media screen and (max-width:560px) {
	.p_des>h5{font-size: 16px;}

	.p_share>p{font-size: 16px;}
	.p_share dl{gap: 0 14px;}
}







.pAdv_icon{display:flex; flex-wrap:nowrap;}
.pAdv_icon dt{width: 100%;box-sizing: border-box;padding: 0 .1rem; text-align: center; border-left: 1px solid #DDD;}
.pAdv_icon dt:first-child{border-left: none;}

.pAdv_icon img{height: 0.6rem;}
.pAdv_icon p{margin-top: 0.2rem; font-size: 0.16rem; line-height: 1.4;}

@media screen and (max-width:1024px) {
	.pAdv_icon img{height: 40px;}
}
@media screen and (max-width:768px) {
	.pAdv_icon img{height: 30px;}
	.pAdv_icon p{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.pAdv_icon{flex-wrap: wrap; gap: 30px 0;}
	.pAdv_icon dt{width: 50%; border: none;}
	.pAdv_icon p{font-size: 14px;}
}







.pContentBox{}

.pContent_nav{background: #F3F3F3; display:flex; flex-wrap:nowrap; position: relative;}
.pContent_nav::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background: #DDD;}
.pContent_nav dt{cursor: pointer; position: relative;}
.pContent_nav dt::before{content: '';position:absolute; left:50%; transform:translate(-50%,0); top: 0; width: 0;height: 2px;background: var(--i_color); transition:all .5s ease;}
.pContent_nav p{text-align: center; padding: .18rem .5rem; font-size: 0.2rem;font-weight: bold;}

.pContent_nav .active{background: #FFF;}
.pContent_nav .active::before{width: 100%;}

@media screen and (max-width:1024px) {
	.pContent_nav p{padding: 18px 30px; font-size: 18px;}
}
@media screen and (max-width:768px) {
	.pContent_nav p{padding: 18px 20px; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.pContent_nav dt{width: 100%;}
	.pContent_nav p{padding: 16px 10px; font-size: 15px;}
}






.pContent_show{width: 100%; overflow: hidden;}
.pContent_show .item{display: none; width: 80%;}
.pContent_show .item.active{display: block;}
.pDownloadBox{width: 100% !important;}

.pContent_tit{padding-left: 0.24rem; font-size: 0.2rem; font-weight: bold; position: relative;}
.pContent_tit::before{content: '';position:absolute; left: 0; top:50%; margin-top: -2px; width: 0.12rem;height: 2px;background: var(--i_color);}

@media screen and (max-width:1024px) {
	.pContent_show .item{width: 100%;}
	.pContent_tit{font-size: 18px;}
}
@media screen and (max-width:768px) {
	.pContent_tit{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.pContent_tit{margin-bottom: 20px;}
	.pContent_tit{font-size: 15px;}
}






.pDownload{}
.pDownload li{border-bottom: 1px solid #DDD;}
.pDownload li:first-child{border-top: 1px solid #DDD;}
.pDownload a{padding: .22rem 0; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .4rem;}
.pDownload h5{font-size: 0.18rem; line-height: 1.5;}
.pDownload .i_more{flex-shrink: 0; margin-left: auto;}

@media screen and (max-width:1024px) {
	.pDownload h5{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.pDownload h5{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.pDownload a{padding: 16px 0; gap: 0 30px;}
	.pDownload h5{font-size: 14px;}
}





.pBottom{background: #F7F7F7;}

.p_tags{padding-bottom: 0.2rem; border-bottom: 1px solid #DDD;display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: baseline; gap: .16rem 0;}
.p_tags>p{margin-right: .14rem; font-size: 0.2rem;font-weight: bold;}
.p_tags a{margin-right: 0.24rem; padding: .08rem .1rem; font-size: 15px; background: #FFF; -webkit-border-radius:4px; border-radius:4px;}
.p_tags a:hover{background: rgb(248 182 43 / 10%); color: 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.4rem;height: 0.4rem;border-radius:50%; box-sizing: border-box; border: 1px solid #555; position: relative;}
.p_view_other span iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: .24rem; color: #555;}
.p_view_other p{font-size: 0.16rem; line-height: 1.5;}
.p_view_other p b{font-size: 0.18rem; font-weight: bold;}

.p_view_other li:hover span{border-color: var(--i_color);}
.p_view_other li:hover span iconify-icon{color: var(--i_color);}
.p_view_other a:hover p{color: var(--i_color); text-decoration: underline;}

@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 .swiper-slide{flex-shrink:0; position:relative;cursor:pointer;border-radius:6px;width:23.5%;box-sizing:border-box;border:1px solid #DDD;background:#FFF;overflow:hidden;}

.pRelated-pagination{display:block; text-align:center}
.pRelated-pagination .swiper-pagination-bullet{width:.6rem; height:1px; display:inline-block; margin:0 0; background:#CCC; outline:none; cursor:pointer;}
.pRelated-pagination .swiper-pagination-bullet-active{height: 2px; background:var(--i_color)}

@media screen and (max-width:1024px) {
	.pRelated-pagination .swiper-pagination-bullet{width: 40px;}
}
@media screen and (max-width:560px) {
	.pRelated-pagination .swiper-pagination-bullet{width: 30px;}
}








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






.oemodm{}

.oemodmBox{width: 100%; position: relative; overflow: hidden;}
.oemodmBox::before{content: '';display: block;padding-bottom: 36.45%;}

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

.oemodmList{position:absolute; top:0; left:0; width:100%; height:100%; display:flex; flex-wrap:nowrap;}
.oemodmList dt{width: 18vw; height: 100%; box-sizing: border-box; padding: .5rem; border-left: 1px solid #FFF; position: relative; transition:all .5s ease; overflow: hidden;}
.oemodmList dt:first-child{border-left: none;}

.oemodmList .t1{position: absolute;left: 0;bottom:.3rem; width: 100%; box-sizing: border-box; padding: 0.2rem; text-align: center; z-index: 3;}
.oemodmList .t1 img{height: 0.5rem; -webkit-filter:brightness(100); filter:brightness(100);}
.oemodmList .t1 h5{margin-top: 0.2rem; font-size: 0.18rem; color: #FFF; font-weight: bold;}

.oemodmList .t2{opacity: 0; visibility: hidden; width: 36vw; position: relative;}
.oemodmList .t2 img{height: 0.5rem; -webkit-filter:brightness(100); filter:brightness(100);}
.oemodmList .t2 h5{margin: 0.2rem 0; font-size: 0.18rem; color: #FFF; font-weight: bold;}
.oemodmList .t2 p{font-size: 0.16rem;color: #FFF; line-height: 1.6;}

.oemodmList dt.curr{background:linear-gradient(to bottom, rgb(0 165 255 / 35%), transparent);}
.oemodmList dt.curr .t1{opacity: 0; visibility: hidden;}
.oemodmList dt.curr .t2{opacity: 1; visibility: visible;}

.oemodmList .t1,.oemodmList .t2{transition:all .5s ease;}

@media screen and (max-width:1440px) {
	.oemodmList .t1 img, .oemodmList .t2 img{height: 0.4rem;}
}
@media screen and (max-width:1024px) {
	.oemodmBox{display:flex; flex-wrap:wrap; flex-direction: column;}
	.oemodmBox::before{display: none;}
	.oemodmBox>img{position: initial;}

	.oemodmList{order: -1; position: initial; flex-wrap: wrap; width: 94%; margin: 0 auto;}
	.oemodmList dt{margin-bottom: 30px; width: 100%; padding: 0; border: none;}

	.oemodmList .t1{display: none !important;}
	.oemodmList .t2{opacity: 1; visibility: visible; width: 100%;}
	.oemodmList .t2 img{-webkit-filter:none; filter:none; height: 26px;}
	.oemodmList .t2 h5{color: #333;}
	.oemodmList .t2 p{font-size: 15px; color: #888;}
}
@media screen and (max-width:560px) {
	.oemodmList .t2 h5{margin: 10px 0; font-size: 16px;}
	.oemodmList .t2 p{font-size: 13px;}
}







.process{background: #F5F5F4;}

.process_list{position: relative;}
.process_list::before{content: '';position: absolute;left: .8rem;top: 0;width: 2px;height: 100%;background: #EEE;}

.process_list .bar{position: absolute;left: .8rem;top: 0;width: 2px;height: 0;background: var(--i_color);}
.process_list .bar.active::before{
	content: '';
	position:absolute; left:50%; transform:translate(-50%,0);bottom: -1px;
	width: 30px;height: 30px;
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 7'%3E%3Cpath fill='%23F8B62B' d='M8 6.5a.47.47 0 0 1-.35-.15l-4.5-4.5c-.2-.2-.2-.51 0-.71s.51-.2.71 0l4.15 4.15l4.14-4.14c.2-.2.51-.2.71 0s.2.51 0 .71l-4.5 4.5c-.1.1-.23.15-.35.15Z'/%3E%3C/svg%3E") no-repeat bottom;
	background-size: contain;
}

.process_list dt{padding-bottom: 0.4rem; display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 6%; position: relative; cursor: pointer; z-index: 2;}
.process_list .order{flex-shrink: 0; width: 1.6rem; padding: 6px 0; display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center; justify-content: center; gap: 0 10px; background: #F7F7F7;border-radius:6px; position: relative;}
.process_list .order::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);left: 100%;width: 2rem;height: 2px;background: #EEE;}
.process_list .order b{font-family: 'DIN-Bold'; font-size: 0.26rem; color: #333}
.process_list .order i{width: 0.3rem;height: 1px;background: #666;position: relative;}
.process_list .order i::before{content: '';position:absolute; top:-4px;right: -2px;width:0; height:0; border-top:5px solid transparent; border-bottom:5px solid transparent; border-left:6px solid #444;}

.process_list .cont{width: 100%;display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; box-sizing: border-box;padding: .2rem .4rem; background: #F7F7F7; -webkit-border-radius:.2rem; border-radius:.2rem;position: relative; z-index: 2;}
.process_list .cont p{font-weight: bold;}
.process_list .cont h6{display: none;}
.process_list .pic{margin-left: auto; width: 1.6rem; position: relative;-webkit-border-radius:.08rem; border-radius:.08rem; overflow: hidden;}
.process_list .pic::before{content: '';display: block;padding-bottom: 50%;}
.process_list .pic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.process_list .cont,
.process_list .cont .pic
{-webkit-transition:all .3s ease; transition:all .3s ease;}

/* --------- active --------- */
.process_list dt.active .order{background: var(--i_color);}
.process_list dt.active .order::before{background: var(--i_color);}
.process_list dt.active .order b{color: #FFF;}
.process_list dt.active .order i{background: #FFF;}
.process_list dt.active .order i::before{border-left:6px solid #FFF;}

.process_list dt.show .cont{flex-wrap: wrap; padding: .4rem .4rem; background: #F7F1E4;}
.process_list dt.show .cont p{width: 100%; color: var(--i_color);}
.process_list dt.show .cont h6{display: block; width: 66%;}
.process_list dt.show .cont .pic{width: 30%;}

@media screen and (max-width:1024px) {
	.process_list::before{display: none;}
	.process_list dt{gap: 0 2%;}
	.process_list .order{width: auto;padding: 6px 20px;}
	.process_list .order::before{display: none;}
	.process_list .order b{font-size: 20px;}
	.process_list .order i{width: 16px;}


	.process_list .cont{flex-wrap: wrap;}
	.process_list .cont h6{display: block; margin: 10px 0 20px; width: 100%;}
	.process_list .pic{margin-left: 0; width: 100%; max-width: 420px;}

	.process_list .bar{display: none !important;}
}
@media screen and (max-width:560px) {
	.process_list dt{flex-wrap: wrap;}
	.process_list .order,.process_list .cont{background: none; padding: 0 0;}
	.process_list .order{margin-bottom: 10px;}
}







.obmService{}

.obmService_nav{display:flex; flex-wrap:nowrap; border: 1px solid var(--i_color);}
.obmService_nav li{padding: .26rem .2rem; width: 100%; display:flex; flex-wrap:nowrap; justify-content: center; align-items: center; gap: 0 .16rem; cursor: pointer;}
.obmService_nav iconify-icon{font-size: 0.36rem;color: var(--i_color);}
.obmService_nav p{font-size: 0.18rem;font-weight: bold;}

.obmService_nav li.active{background: var(--i_color);}
.obmService_nav li.active iconify-icon, .obmService_nav li.active p{color: #FFF;}

@media screen and (max-width:1024px) {
	.obmService_nav li{padding: 20px 10px;}
	.obmService_nav iconify-icon{font-size: 20px;}
	.obmService_nav p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.obmService_nav{flex-wrap: wrap;}
	.obmService_nav li{padding: 14px 10px;}
	.obmService_nav iconify-icon{font-size: 18px;}
	.obmService_nav p{font-size: 15px;}
}






.obmService_show{}
.obmService_show .item{display: none;}
.obmService_show .item.active{display: block;}

.obmService_show .box{display:flex; flex-wrap:nowrap; gap: 0 4%; align-items: center;}
.obmService_show .pic{flex-shrink: 0; width: 35%; position: relative;}
.obmService_show .pic::before{content: ''; display: block; padding-bottom: 78%;}
.obmService_show .pic::after{content: '';position: absolute; right: -.1rem; bottom: -.1rem;width: 80%; height: 80%; background: var(--i_color);}
.obmService_show .pic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; z-index: 3;}

.obmService_show .txt{}
.obmService_show .txt span{margin-bottom: 0.26rem; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .18rem;}
.obmService_show .txt iconify-icon{font-size: 0.32rem;color: var(--i_color);}
.obmService_show .txt h5{font-size: 0.2rem;font-weight: bold;}
.obmService_show article{font-size: 0.16rem; line-height: 1.6;}

@media screen and (max-width:1024px) {
	.obmService_show .box{align-items: flex-start;}

	.obmService_show .txt iconify-icon{font-size: 20px;}
	.obmService_show .txt h5{font-size: 16px;}
	.obmService_show article{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.obmService_show .box{flex-wrap: wrap; gap: 40px 0;}
	.obmService_show .pic{width: 100%;}
	.obmService_show .pic::after{right: -4px; bottom: -4px;}

	.obmService_show .txt iconify-icon{font-size: 18px;}
	.obmService_show .txt h5{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.obmService_show .txt span{margin-bottom: 16px;}
	.obmService_show article{font-size: 13px;}
}







.faq{}
.faq .wrap{display:flex; flex-wrap:nowrap; gap: 0 5%;}

.faqCont{width: 100%;}
.faqList{padding-right: 0.2rem; height: 4.6rem; overflow-y: auto;}
.faqList::-webkit-scrollbar{width:3px; height:8px}
.faqList li{padding-bottom: 0.2rem; margin-bottom: 0.2rem; border-bottom: 1px dashed #CCC;}

.faqTit{padding: .1rem 0; display:flex; flex-wrap:nowrap; gap: 0 .16rem; cursor: pointer;}
.faqTit i{flex-shrink: 0; width: 0.2rem;height: 0.2rem; position: relative;}
.faqTit i iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.24rem;}
.faqTit p{margin-top: 1px; font-size: 0.2rem;}

.faqTit.active i{transform:rotate(-90deg);}
.faqTit.active i iconify-icon{color: var(--i_color);}
.faqTit.active p{color: var(--i_color);}

.faqList article{display: none; margin-top: 0.2rem; padding-left: 0.36rem; font-size: 0.16rem; line-height: 1.5;}

.faqPic{flex-shrink: 0; width: 32%; margin-left: auto;}
.faqPic img{width: 100%;}

@media screen and (max-width:1024px) {
	.faq .wrap{flex-wrap: wrap; gap: 30px 0;}
	.faqList{height: auto; padding: 0 0;}

	.faqTit i iconify-icon{font-size: 20px;}
	.faqTit p{font-size: 16px;}
	.faqList article{margin-top: 10px; font-size: 15px;}

	.faqPic{display: none;}
}
@media screen and (max-width:560px) {
	.faqList li{padding-bottom: 10px;margin-bottom: 10px;}
	.faqTit p{font-size: 15px;}
	.faqList article{margin-top: 8px; font-size: 13px;}
}







.aboutAdv{}

.aboutAdv_tit{padding-bottom: 1.2rem; background: #F4F4F4;}

.aboutAdv_tit .tit{display:-webkit-flex; display:flex; flex-wrap:nowrap;justify-content: center; align-items: center; gap: 0 .2rem;}
.aboutAdv_tit .tit img{height: 0.5rem;}
.aboutAdv_tit h3,.aboutAdv_tit p{text-align: center; color: #333;}
.aboutAdv_tit h3{font-weight: bold;}
.aboutAdv_tit p{width: 100%; max-width: 1000px; margin-left: auto;margin-right: auto; color:#666;}
@media screen and (max-width:1024px) {
	.aboutAdv_tit{padding-bottom: 60px;}
	.aboutAdv_tit .tit img{height: 30px;}
}
@media screen and (max-width:768px) {
	.aboutAdv_tit{padding-bottom: 40px;}
	.aboutAdv_tit .tit{width: 80%;margin-left: auto;margin-right: auto;}
	.aboutAdv_tit .tit img:first-child{}
	.aboutAdv_tit .tit img{display: none;}
}
@media screen and (max-width:560px) {
	.aboutAdv_tit .tit{width: 100%;}
	.aboutAdv_tit h3{font-size: 16px;}
}






.aboutAdv_cont{background:linear-gradient(to bottom, #FFF, #FFF9F3);}
.aboutAdv_cont .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 .6rem;}

.aboutAdv_contTit{flex-shrink: 0; width: 28%; margin-top: 0.4rem;}
.aboutAdv_contTit li{margin: .3rem 0; padding: .22rem .3rem; display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center; gap: 0 .2rem; background: #FFF; box-shadow: var(--boxShadow); -webkit-border-radius:.1rem; border-radius:.1rem;cursor: pointer; position: relative; overflow: hidden;}
.aboutAdv_contTit li::before{content: '';position: absolute; left: 0;top: 0;width: 0;height: 100%;background: var(--i_color);}
.aboutAdv_contTit iconify-icon{font-size: 0.34rem;color: var(--i_color);position: relative;}
.aboutAdv_contTit p{font-size: 0.2rem;font-weight: bold; position: relative;}

.aboutAdv_contTit li.active::before{width: 100%;}
.aboutAdv_contTit li.active iconify-icon,.aboutAdv_contTit li.active p{color: #FFF;}

.aboutAdv_contTit li::before,.aboutAdv_contTit iconify-icon,.aboutAdv_contTit p{-webkit-transition:all .7s ease; transition:all .7s ease;}

.aboutAdv_contShow{width: 100%; margin-top: -.6rem;}
.aboutAdv_contShow dt{position: relative; left: .5rem; height: 0; background: #FFF; box-shadow: 0 0 .16rem rgb(248 182 43 / 18%); overflow: hidden; -webkit-transition:all .7s ease; transition:all .7s ease;}
.aboutAdv_contShow dt.active{height: auto; left: 0;}

.aboutAdv_pic{width:100%; position:relative; overflow:hidden; -webkit-transition:all .5s 1s; transition:all .5s 1s;}
.aboutAdv_pic::before{content:""; display:block; padding-bottom:42%}
.aboutAdv_pic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.aboutAdv_contShow span{display: block;padding: .3rem; color: #666;}

@media screen and (max-width:1440px) {
	.aboutAdv_contTit{margin-top: .2rem; width: 27%;}
	.aboutAdv_contTit li{padding: .22rem .3rem;}
	.aboutAdv_contTit p{font-size: 0.18rem;}
}
@media screen and (max-width:1200px) {
	.aboutAdv_contTit{margin-top: .1rem; width: 30%;}
	.aboutAdv_contTit li{padding: .16rem .2rem;}
}
@media screen and (max-width:1024px) {
	.aboutAdv_cont{padding-top: 40px;}
	.aboutAdv_cont .wrap{flex-wrap: wrap;gap: 30px 0;}
	.aboutAdv_contShow{margin-top: 0;}

	.aboutAdv_contTit{margin: 0 0; display:-webkit-flex; display:flex; flex-wrap:wrap; width: 100%;gap: 18px 3%;}
	.aboutAdv_contTit li{margin: 0 0; width: 47.5%; box-sizing: border-box; padding: 16px 16px;}
	.aboutAdv_contTit iconify-icon{font-size: 30px;}
	.aboutAdv_contTit p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.aboutAdv_contTit li{padding: 12px 16px; -webkit-border-radius:6px; border-radius:6px;}

	.aboutAdv_contShow span{padding: 24px 20px;}
}
@media screen and (max-width:560px) {
	.aboutAdv_contTit li{padding: 10px 14px; gap: 0 10px;}
	.aboutAdv_contTit iconify-icon{font-size: 24px;}
	.aboutAdv_contTit p{font-size: 13px;}
}







.partner{background:url(static/images/partner-bg.webp) no-repeat center; background-size: contain;}

.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:4px; 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: contain;}

.brandLogo-pagination{display:block; text-align:center}
.brandLogo-pagination .swiper-pagination-bullet{width:.6rem; height:1px; display:inline-block; margin:0 0; background:#CCC; outline:none; cursor:pointer;}
.brandLogo-pagination .swiper-pagination-bullet-active{height: 2px; background:var(--i_color)}

@media screen and (max-width:1024px) {
	.brandLogo-pagination .swiper-pagination-bullet{width: 0.2rem;}
}







.environment{}

.environment_list{position:relative; overflow:hidden}
.environment_list .swiper-wrapper{display:flex; position:relative; width:100%}
.environment_list .swiper-slide{flex-shrink:0; height: 5rem; position:relative; transition:all .5s ease;}

.environment_list .swiper-slide img{width:100%; height:100%; object-fit: cover;}

@media screen and (min-width:1025px) {
	.environment_list .swiper-slide-next{width: 45% !important;}
}

.environment-pagination{display:none}

.environment_list-navigation{display:flex; flex-wrap:wrap;justify-content: center; gap: 0 .3rem;}
.environment_list-navigation>div{width:.5rem; height:.5rem; box-sizing: border-box; border: 1px solid #555; border-radius:50%; z-index:3; cursor:pointer; outline:none; position: relative; user-select:none}
.environment_list-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.2rem; color:#555;}
.environment_list .swiper-button-disabled{cursor:not-allowed}
.environment_list-navigation>div:hover{border-color: var(--i_color);}
.environment_list-navigation>div:hover iconify-icon{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.environment_list .swiper-slide{height: 4rem;}
}
@media screen and (max-width:1024px) {
	.environment_list .swiper-slide{height: auto; overflow: hidden;}
	.environment_list .swiper-slide::before{content: '';display: block;padding-bottom: 70%;}
	.environment_list .swiper-slide img{position:absolute; top:0; left:0;}

	.environment_list-navigation{display: none;}

	.environment-pagination{display:block; margin-top:0.3rem; text-align:center}
	.environment-pagination .swiper-pagination-bullet{width:.3rem; height:1px; display:inline-block; background:#CCC; outline:none; cursor:pointer;}
	.environment-pagination .swiper-pagination-bullet-active{height: 2px; background:var(--i_color)}
}







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

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

.certT{width: 50%;}
.certT>img{max-width: 38%;}



.certBox{padding: .2rem 0; margin-left: auto; width: 40%; background: #FFF; position: relative;}

.cert_list{width: 60%; margin-left: auto;margin-right: auto; position:relative; overflow:hidden}
.cert_list .swiper-wrapper{display:flex; position:relative; width:100%}
.cert_list .swiper-slide{flex-shrink:0; position:relative; overflow: hidden;}
.cert_list .swiper-slide::before{content: '';display: block;padding-bottom: 144%;}
.cert_list .swiper-slide img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: contain;}

.cert-prev,.cert-next{position:absolute; top:50%; transform:translate(0,-50%); width:.5rem; height:.5rem; box-sizing: border-box; border: 1px solid #555; border-radius:50%; z-index:3; cursor:pointer; outline:none; user-select:none}
.cert-prev{left:8%;}
.cert-next{right:8%;}
.cert-prev iconify-icon,.cert-next iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.2rem; color:#555;}
.cert_list .swiper-button-disabled{cursor:not-allowed}
.cert-prev:hover,.cert-next:hover{border-color: var(--i_color);}
.cert-prev:hover iconify-icon,.cert-next:hover iconify-icon{color: var(--i_color);}

.cert-pagination{display: none;}

@media screen and (max-width:1440px) {
	.cert-prev{left: 6%;}
	.cert-next{right: 6%;}
}
@media screen and (max-width:1024px) {
	.certBox{width: 45%;}
	.cert_list{width: 80%;}

	.cert-prev,.cert-next{display: none;}

	.cert-pagination{display:block; margin-top:0.3rem; text-align:center}
	.cert-pagination .swiper-pagination-bullet{width:.2rem; height:1px; display:inline-block;background:#CCC; outline:none; cursor:pointer;}
	.cert-pagination .swiper-pagination-bullet-active{height: 2px; background:var(--i_color)}
}
@media screen and (max-width:768px) {
	.certT{width: 100%;}
	.certBox{width: 100%; margin-top: 40px; box-sizing: border-box; padding: 20px;}
	.cert_list{width: 100%;}
}
@media screen and (max-width:560px) {
	.certBox{margin-top: 30px}
}







.recIndustry{}
.recIndustry article{text-align: center;}






.recPolicy{background:url(static/images/recPolicy-bg.webp) no-repeat center; background-size: cover; background-attachment: fixed;}

.recPolicy .wrap{box-sizing: border-box; border: 1px solid rgb(255 255 255 / 40%); background: rgb(255 255 255 / 15%) url(static/images/recPolicy-text-bg.webp) no-repeat center; background-size: cover;}

.recPolicy .i_tit h3,.recPolicy .i_tit h6{color: #FFF;}






.recPolicyList{background: #F9F9F9;}

.recPolicyList dl{display:flex; flex-wrap:nowrap; gap: 0 0;}
.recPolicyList dt{padding: .5rem .3rem; width: 100%; box-sizing: border-box; border-left: 1px solid #DDD;}
.recPolicyList dt:first-child{border-left: none;}

.recPolicyList .up{display:flex; flex-wrap:nowrap; align-items: baseline; gap: 0 .14rem;}
.recPolicyList .line{flex-shrink: 0; display:flex; flex-wrap:wrap;gap: 0 2px; align-items: flex-end;}
.recPolicyList .line i{width: 4px; height: 10px; background: #373434; border-radius:20px 20px 0 0;}
.recPolicyList dt:nth-child(1) .line i:nth-child(1),
.recPolicyList dt:nth-child(2) .line i:nth-child(2),
.recPolicyList dt:nth-child(3) .line i:nth-child(3){height: 16px; background: var(--i_color);}
.recPolicyList .up h6{font-size: 0.16rem;font-weight: bold; color: #666;}

.recPolicyList .title{margin: .5rem 0 .3rem; text-align: center;}
.recPolicyList .title iconify-icon{font-size: 0.6rem; color: #373434;}
.recPolicyList .title h5{margin-top: 0.3rem; font-size: 0.22rem;font-weight: bold;}

.recPolicyList dt>p{text-align: center; font-size: 0.16rem; line-height: 1.5;}

.recPolicyList dt:hover .title iconify-icon{color: var(--i_color);}
.recPolicyList dt:hover .title h5{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.recPolicyList dl{flex-wrap: wrap;}
	.recPolicyList dt{border: none; border-bottom: 1px solid #DDD; padding: 30px 0;}

	.recPolicyList .title{margin: 20px 0; display:flex; flex-wrap:nowrap; gap: 0 .14rem; align-items: center; text-align: left;}
	.recPolicyList .title iconify-icon{flex-shrink: 0; font-size: 36px;}
	.recPolicyList .title h5{margin: 0 0; font-size: 18px;}
	.recPolicyList dt>p{text-align: left; font-size: 14px;}
}
@media screen and (max-width:768px) {
	.recPolicyList .title iconify-icon{font-size: 30px;}
}
@media screen and (max-width:560px) {
	.recPolicyList dt{padding: 20px 0;}
	.recPolicyList .up h6{font-size: 14px;}
	.recPolicyList .title iconify-icon{font-size: 24px;}
	.recPolicyList .title h5{font-size: 16px;}
	.recPolicyList dt>p{font-size: 13px;}
}







.recAgency{}

.recAgencyList{display:flex; flex-wrap:nowrap; background:url(static/images/recAgency-bg.webp) no-repeat center; background-size: cover;}
.recAgencyList dt{width: 100%; box-sizing: border-box; padding: .6rem .3rem; position: relative; background: rgb(255 255 255 / 76%); transition:all .5s ease;}
.recAgencyList dt::before{content: '';position: absolute;left: 0;top: 0;width: 1px;height: 100%; background: #D1D0D0;}
.recAgencyList dt::after{content: '';position:absolute; top:50%; transform:translate(0,-50%);left: -1px; width: 3px;height: 0.5rem;background: var(--i_color);}
.recAgencyList dt:first-child::before, .recAgencyList dt:first-child::after{display: none;}

.recAgencyList .num{text-align: center;}
.recAgencyList .num i{display: block; margin: 0 auto; width: 1px;height: 0.4rem; background: #D1D0D0;}
.recAgencyList .num p{margin: .1rem auto; font-family: 'DIN-Bold', Arial; font-size: 0.4rem;}

.recAgencyList .txt{margin-top: 1rem; text-align: center;}
.recAgencyList .txt iconify-icon{font-size: 0.36rem;}
.recAgencyList .txt h5{padding-bottom: 0.12rem; height: 0.6rem; display:flex; flex-wrap:wrap; align-items: flex-end; justify-content: center; margin-top: 0.2rem; font-size: 0.18rem; font-weight: bold; line-height: 1.5; position: relative;}
.recAgencyList .txt h5::before{content: '';position:absolute; bottom: 0; left:50%; transform:translate(-50%,0); width: 30%; height: 3px;background: var(--i_color);}

.recAgencyList dt:hover{background: rgb(0 0 0 / 70%);}
.recAgencyList dt:hover .num i{background: rgb(255 255 255 / 30%);}
.recAgencyList dt:hover .num p{color: var(--i_color);}
.recAgencyList dt:hover iconify-icon{color: #FFF;}
.recAgencyList dt:hover h5{color: #FFF;}

.recAgencyList dt{transition:all .5s ease;}

@media screen and (max-width:1024px) {
	.recAgencyList{flex-wrap: wrap; padding: 20px 0; position: relative;}
	.recAgencyList::before{content: '';position:absolute; top:0; left:0; width:100%; height:100%; background: rgb(255 255 255 / 70%);}
	.recAgencyList dt{display:flex; flex-wrap:nowrap; padding: 20px 4%; background: none;}
	.recAgencyList dt::before,.recAgencyList dt::after{display: none;}

	.recAgencyList .num{display: none;}

	.recAgencyList .txt{margin: 0 0; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .2rem;}
	.recAgencyList .txt iconify-icon{flex-shrink: 0; font-size: 24px;}
	.recAgencyList .txt h5{height: auto; margin: 0 0; padding: 0 0;}
	.recAgencyList .txt h5::before{display: none;}
}
@media screen and (max-width:768px) {
	.recAgencyList .txt h5{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.recAgencyList dt{padding: 10px 4%;}
	.recAgencyList .txt{gap: 0 14px;}
	.recAgencyList .txt iconify-icon{font-size: 20px;}
	.recAgencyList .txt h5{font-size: 15px;}
}









.recProcess{
	background:linear-gradient(to bottom, transparent, #FCF4EC);
}

.recProcess_top{display:flex; flex-wrap:nowrap; gap: 0 .3rem; align-items: center;}
.recProcess_top .i_tit{flex-shrink: 0;}

.recProcess_top .line{display: block; width: 100%; height: 1px;background: #DDD;}

.recProcess-navigation{flex-shrink: 0; margin-left: auto; display:flex; flex-wrap:wrap; gap: 0 .2rem;}
.recProcess-navigation>div{width:.5rem; height:.5rem; box-sizing: border-box; border: 1px solid #555; border-radius:50%; z-index:3; cursor:pointer; outline:none; position: relative; user-select:none}
.recProcess-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.2rem; color:#555;}
.recProcess-list.swiper-button-disabled{cursor:not-allowed}
.recProcess-navigation>div:hover{border-color: var(--i_color);}
.recProcess-navigation>div:hover iconify-icon{color: var(--i_color);}



.recProcess_list{position:relative; overflow:hidden}
.recProcess_list .swiper-wrapper{display:flex; position:relative; width:100%}
.recProcess_list .swiper-slide{flex-shrink:0; position:relative; box-sizing: border-box; padding: .3rem .2rem .2rem; display:flex; flex-wrap:wrap; flex-direction: column; justify-content: space-between;}
.recProcess_list .swiper-slide::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 0; background: #FFF; transition:all .5s ease;}

.recProcess_list .t1{opacity: 0; visibility: hidden; margin-bottom: 0.4rem; position: relative;}
.recProcess_list .num{display: block; padding-left: 0.2rem; font-family: 'DIN-Bold', Arial; font-size: 0.3rem; position: relative;}
.recProcess_list .num::before{content: '';position:absolute; left: 0; top:50%; transform:translate(0,-50%); width: 0.1rem;height: 2px; background: var(--i_color);}
.recProcess_list .t1 .num{color: var(--i_color);}

.recProcess_list .tit{margin: .26rem 0 .2rem; font-size: 0.18rem;font-weight: bold;}
.recProcess_list .t1 p{font-size: 0.15rem; line-height: 1.5;}

.recProcess_list .t2{position: absolute;left: .2rem;top: 30%; width: 100%;}

.recProcess_list .swiper-slide-active::before{height: 100%;}
.recProcess_list .swiper-slide-active .t1{opacity: 1; visibility: visible;}
.recProcess_list .swiper-slide-active .t2{opacity: 0; visibility: hidden;}

/* .recProcess_list .t1,.recProcess_list .t2{transition:all.5s ease;} */

.recProcess_list .pic{width: 100%; position:relative; overflow:hidden}
.recProcess_list .pic::before{content:""; display:block; padding-bottom:40%}
.recProcess_list .pic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}



.recProcess-pagination{display: none;}

@media screen and (max-width:1024px) {
	.recProcess-navigation{display: none;}

	.recProcess_list .t1{opacity: 1; visibility: visible;}
	.recProcess_list .swiper-slide::before{height: 100%;}
	.recProcess_list .t2{display: none;}

	.recProcess_list .t1 p{font-size: 14px;}

	.recProcess-pagination{display:block; margin-top:0.3rem; text-align:center}
	.recProcess-pagination .swiper-pagination-bullet{width:.2rem; height:1px; display:inline-block;background:#CCC; outline:none; cursor:pointer;}
	.recProcess-pagination .swiper-pagination-bullet-active{height: 2px; background:var(--i_color)}
}
@media screen and (max-width:560px) {
	.recProcess_list .t1{margin-bottom: 18px;}
	.recProcess_list .num{font-size: 24px;}
	.recProcess_list .tit{font-size: 16px;}
	.recProcess_list .t1 p{font-size: 13px;}
}






.navLine{width: 100%; display:flex; flex-wrap:wrap; justify-content: center; gap: 0 .3rem; position: relative;}
.navLine::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background: #DDD;}
.navLine li{position: relative;}
.navLine li::before{content: '';position: absolute;left: 0;bottom: 0;width: 0;height: 3px;background: var(--i_color);}

.navLine a{display: block; padding: .2rem .2rem; font-size: 0.18rem; font-weight: bold; color: #666;}

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

.navLine li:hover a{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.navLine{gap: 0 10px;}
	.navLine a{padding: 20px 16px; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.navLine{gap: 10px 10px;}
	.navLine a{padding: 12px 14px; font-size: 15px;}
}






.nList{display:flex; flex-wrap:wrap; gap: .5rem 3%;}
.nList li{width: 31.33%;}

.nList a{display: block;}

.nList .coverPic{width:100%; position:relative; overflow:hidden}
.nList .coverPic::before{content:""; display:block; padding-bottom:80%}
.nList .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; transition:all .5s ease;}

.nList .text{margin-top: 0.2rem; padding-left: 0.2rem; border-left: 1px solid #DDD;}
.nList .text h5{font-size: 0.18rem; font-weight: bold; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.nList .text h6{margin: .16rem 0; font-size: 0.18rem;}
.nList .text p{font-size: 0.15rem;line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;}
.nList .text span{margin-top: 0.2rem; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .1rem;}
.nList .text b{font-size: 0.16rem}
.nList .text iconify-icon{font-size: 0.18rem}

.nList li:hover img{transform: scale(1.05, 1.05);}
.nList li:hover h5{color: var(--i_color);}
.nList li:hover b,.nList li:hover iconify-icon{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.nList .text h5{font-size: 16px;}
	.nList .text h6{font-size: 14px; color: #888;}
	.nList .text p{font-size: 14px; color: #888; -webkit-line-clamp:2}
	.nList .text span{display: none;}
}
@media screen and (max-width:768px) {
	.nList{gap: 40px 4%;}
	.nList li{width: 48%;}
}
@media screen and (max-width:560px) {
	.nList{gap: 40px 0;}
	.nList li{width: 100%;}
	.nList .text h5{font-size: 15px;}
}






.contactForm{background:url(static/images/contact-bg.webp) no-repeat center; background-size: cover;}

#wpforms-97{
	--wpforms_input_height:48px;
	--wpforms_textarea_height:120px;
	--wpforms_input_font_size: 16px;
}
#wpforms-97{margin:0; padding:0;}
#wpforms-form-97{width:100%; position:relative;}

/* 字段样式 */
#wpforms-97 .wpforms-field-container>.wpforms-field{width: 100%; padding: 0 1px 20px; margin: 0 0 6px;overflow-x:initial !important; position: relative;}
#wpforms-97 label.wpforms-field-label{display: block; margin-bottom: 8px; font-size: 16px; font-weight: bold;}
#wpforms-97 .wpforms-field-container .wpforms-required-label{color: #D63637;}
#wpforms-97 .wpforms-field-container .wpforms-field>input,
#wpforms-97 .wpforms-field-container textarea
{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;}
#wpforms-97 .wpforms-field-container .wpforms-field>input{height: var(--wpforms_input_height);}
#wpforms-97 .wpforms-field-container textarea{height: var(--wpforms_textarea_height);}
#wpforms-97 input::placeholder, #wpforms-97 textarea::placeholder{color:#AAA; font-size:var(--wpforms_input_font_size); line-height: 1.4;}

#wpforms-97 .wpforms-field-container .wpforms-field>input:hover,
#wpforms-97 .wpforms-field-container textarea:hover,
#wpforms-97 .wpforms-field-container .wpforms-field>input:focus,
#wpforms-97 .wpforms-field-container textarea:focus{border-color: #F60;}

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

/* 隐藏 Label 标签 */
/* #wpforms-97 .wpforms-field-container .wpforms-field-label{height: 0; font-size: 0;margin: 0 0;}
#wpforms-97 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 6px; font-size: 16px; font-weight: bold;} */

/* 输入框水平排列，一行两个 */
#wpforms-97 .wpforms-field-container{display:flex; flex-wrap:wrap;justify-content: space-between;}
#wpforms-97-field_1-container,
#wpforms-97-field_2-container{width: 49% !important;}

/* 提交按钮样式 */
#wpforms-97 .wpforms-submit-container{width: 220px; padding:0 0; position: relative; overflow: hidden;}
#wpforms-97 .wpforms-submit-container button{width: 100%; height:44px; font-size: 15px; color: #FFF; font-weight: bold; background: var(--i_color);}
#wpforms-97 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-97 .wpforms-submit-container button:hover{background: #D15807;}

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	#wpforms-97 .wpforms-field-container>.wpforms-field{width: 100% !important;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}







.contact__{}

.contact__list{display:flex; flex-wrap:wrap;}
.contact__list dt{width: 30.33%; padding: .4rem 0;}
.contact__list dd{width: 100%; padding: .4rem 0; border-top: 1px solid #DDD; border-bottom: 1px solid #DDD;}

.contact__list h5{margin-bottom: 0.2rem; font-size: 0.18rem;font-weight: bold;}
.contact__list a,.contact__list p{font-size: 0.18rem; color: #555; line-height: 1.6;}
.contact__list a:hover{text-decoration: underline; color: var(--i_color);}

@media screen and (max-width:1024px) {
	.contact__list a,.contact__list p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.contact__list dt{width: 100%; padding: 16px 0;}
	.contact__list dd{border: none; padding: 16px 0;}
}
@media screen and (max-width:560px) {
	.contact__list h5{font-size: 16px;}
	.contact__list a,.contact__list p{font-size: 15px;}
}







.map{position: relative; background: #EEE; overflow: hidden;}
.map::before{content: '';display: block;padding-bottom: 35%;}
.map iframe{position:absolute; top:0; left:0; width:100%; height:100%;}

@media screen and (max-width:1024px) {
	.map::before{padding-bottom: 50%;}
}
@media screen and (max-width:560px) {
	.map::before{padding-bottom: 110%;}
}
