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

:root {
	--i_color: #28968C;
	--jb_color:linear-gradient(to right, #88C68E, #3D6EB5);
	--header_height: .9rem;
}
@media screen and (max-width:1024px) {
	:root {
		--header_height: .6rem;
	}
}




.wrap{width: 1400px; margin-left: auto; margin-right: auto;}
.wrap_l{box-sizing: border-box; padding-left: calc((100vw - 1400px) / 2);}
.wrap_r{box-sizing: border-box; padding-right: calc((100vw - 1400px) / 2);}

.wrap2{width: 90%; margin-left: auto;margin-right: auto;}

.wrap_top{width: 94%; margin-left: auto;margin-right: auto;}

@media screen and (min-width:1921px) {
	.wrap{width: 88vw;}
	.wrap_l{padding-left: 6vw;}
	.wrap_r{padding-right: 6vw;}
}
@media screen and (max-width:1440px) {
	.wrap{width: 88vw;}
	.wrap_l{padding-left: 6vw;}
	.wrap_r{padding-right: 6vw;}
}
@media screen and (max-width:1024px) {
	.wrap,.wrap2{width: 94%;}
	.wrap_l{padding-left: 3vw;}
	.wrap_r{padding-right: 3vw;}
}





/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFF;
	z-index: 2014;
}
header::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background: #E8E8E8;}



.wrap_top{display:flex; flex-wrap:nowrap; align-items: center; box-sizing: border-box;}



/* logo */
.logo {
	flex-shrink: 0;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: var(--header_height);
}
.logo a {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
.logo img {max-width: 3rem; max-height: 80%;}
@media screen and (max-width:1440px) {
	.logo img {max-height: 70%;}
}
@media screen and (max-width:1366px) {
	.logo img {max-height: 62%;}
}
@media screen and (max-width:560px) {
	.logo img {max-height: 65%;}
}





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

	.i_nav>li {position: relative;}
	.i_nav>li::before{content: ''; position:absolute; bottom: 0; left:50%; transform:translate(-50%,0); width: 0; height: 3px; background: var(--i_color);transition:all .5s ease;}

	.i_nav>li>a {
		display: block;
		font-size: .18rem;
		color: #222;
		line-height: var(--header_height);
		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>.active::before
	{
		width: 100%;
	}
	.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
	{
		font-weight: bold;
	}
	.i_nav>.current-menu-parent>a{}

	.nav_products .sub-menu {display: none !important;}

	.i_nav .sub-menu {
		display: none;
		position: absolute;
		left:50%; transform:translate(-50%,0);
		min-width: 1.6rem;
		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);
	}

	.nav_contact{display:flex; flex-wrap:wrap; align-items: center; height: var(--header_height);}
	.nav_contact a{padding: .1rem .24rem; line-height: 1 !important; color: #FFF !important; background: var(--jb_color); border-radius:2rem;}
	.nav_contact::before{display: none !important;}
}
@media screen and (max-width:1366px) {
	.i_nav{gap: 0 2.5vw;}
	.i_nav>li>a{font-size: 15px;}
}
@media screen and (max-width:1200px) {
	/* .i_nav{gap: 0 4.5vw;} */
}






@media screen and (max-width:1024px) {
	.i_nav {
		opacity: 0;
		position: fixed;
		top: var(--header_height);
		left: 101%;
		margin: 0 0;
		width: 100%;
		width: 100vw;
		height: calc(100vh - var(--header_height));
		background: #FFF;
		overflow-y: auto;
		-webkit-transition:all .5s ease; transition:all .5s ease;
		z-index: 9999
	}
	.i_nav.active{opacity: 1; left: 0;}
	/*滚动条*/
	.i_nav::-webkit-scrollbar {
		width: 3px;
		height: 8px
	}
	.i_nav::-webkit-scrollbar-thumb {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		background: #555
	}
	.i_nav::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		border-radius: 0;
		background: #F1F1F1
	}

	.i_nav>li {
		margin: 0 0 !important;
		border-bottom: 1px solid var(--border_color);
		position: relative
	}
	.i_nav>.menu-item-has-children span {
		display: block;
		position: absolute;
		top: 8px;
		right: 20px;
		width: 30px;
		height: 30px;
		box-sizing: border-box;
		border: 1px solid #CCC;
		-webkit-border-radius:50%; border-radius:50%;
		background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
		background-size: 20px;
	}
	.i_nav>.menu-item-has-children span.on {
		background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 12.998H5v-2h14z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
		background-size: 20px;
	}

	.i_nav>li>a {
		padding: 0 20px;
		font-size: 16px;
		color: #222;
		line-height: 44px;
		text-transform: uppercase;
	}
	.i_nav>.current-menu-item>a,
	.i_nav>.current-category-ancestor>a,
	.i_nav>.current-post-ancestor>a,
	.i_nav>.current-menu-ancestor>a,
	.i_nav>.current-menu-parent>a{
		color: var(--i_color) !important;
	}

	.i_nav>li>.sub-menu {
		display: none
	}
	.i_nav>li>.sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu a {
		padding: 0 40px;
		font-size: 15px;
		color: #555;
		line-height: 40px;
		position: relative;
	}
	.i_nav .sub-menu li:not(:last-child) {
		border-bottom: 1px solid var(--border_color)
	}

	.i_nav>li>.sub-menu b {
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 40px;
		background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat center;
		background-size: 16px;
	}
	.i_nav>li>.sub-menu b.on {
		background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat center;
		background-size: 16px;
	}

	.i_nav .sub-menu .sub-menu {
		display: none;
	}

	.i_nav .sub-menu .sub-menu a {
		padding: 0 60px;
		font-size: 13px;
		color: #888;
		line-height: 36px;
		position: relative;
	}

	.i_nav a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis
	}
}




.navMenu_products{display: none; position: fixed;top: var(--header_height); left: 0;width: 100%;background: #FFF;box-shadow: 0 4px 10px rgb(0 0 0 / 10%); z-index: 2014;-webkit-transition:top .5s ease; transition:top .5s ease;}
.navMenu_products>.wrap2{padding: .4rem 0 .6rem; display:flex; flex-wrap:wrap; align-items: center; gap: 0 6%;}

.navMenu_productsNav{flex-shrink: 0; width: 24%; text-align: right;}

.navMenu_productsNav>a{margin-bottom: 0.36rem; display:flex; flex-wrap:wrap; align-items: center; justify-content:flex-end; gap: 0 .2rem; font-size: 0.24rem;}
.navMenu_productsNav>a iconify-icon{font-size: 0.28rem;}
.navMenu_productsNav>a:hover{color: var(--i_color);}

.navMenu_productsNav ul{display:flex; flex-wrap:wrap; flex-direction: column; gap: .16rem 0;}
.navMenu_productsNav li{display: table; margin-left: auto; position: relative; cursor: pointer;}
.navMenu_productsNav li::before{content: '';position: absolute; right: 0; bottom: 0; width: 0; height: 2px; background: var(--i_color); transition:all .5s ease;}
.navMenu_productsNav li p, .navMenu_productsNav li a{padding-bottom: 2px; font-size: 0.18rem; color: #888;}
.navMenu_productsNav li.active::before{width: 100%;}
.navMenu_productsNav li.active p,.navMenu_productsNav li.active a{color: #111;}

.navMenu_productsShow{width: 66%;}
.navMenu_productsShow dt{width: 100%; height: 0; opacity: 0; visibility: hidden; position: relative; top: .2rem;}
.navMenu_productsShow dt.active{height: auto; top: 0; opacity: 1; visibility: visible; transition:all .5s ease;}

.navMenu_productsShow ul{padding: 0 0 .2rem; width: 100%; display:flex; flex-wrap:nowrap; overflow-x: auto;}
.navMenu_productsShow ul::-webkit-scrollbar{height:3px;}
.navMenu_productsShow ul::-webkit-scrollbar-thumb{background: var(--i_color)}

.navMenu_productsShow li{min-width: 20%; max-width: 20%; text-align: center;}
.navMenu_productsShow li a{display: block; padding: 0 .2rem;}
.navMenu_productsShow .pic{width: 100%; aspect-ratio: 1 / 1; position: relative;}
.navMenu_productsShow .pic img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 80%; height: 80%; object-fit: contain; transition:all .5s ease;}
.navMenu_productsShow li p{height: 0.45rem; margin-top: 0.1rem; font-size: 0.16rem; color: #888; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.navMenu_productsShow li:hover img{transform: translate(-50%,-50%) scale(1.05, 1.05);}
.navMenu_productsShow li:hover p{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.navMenu_productsNav>a{font-size: 0.2rem;}
	.navMenu_productsShow{width: 70%;}
}
@media screen and (max-width:1200px) {
	.navMenu_productsNav li p, .navMenu_productsNav li a{font-size: 0.16rem;}
}





/* 移动端导航按钮 */
.nav_menu {
	/* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
	flex-shrink: 0;
	position: relative;
	width: 22px;
	height: 16px;
	display: none;
	cursor: pointer
}
.nav_menu i {
	display: block;
	width: 100%;
	height: 3px;
	position: absolute;
	top: 50%;
	margin-top: -2px;
	background: var(--i_color);
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 3px;
	background: var(--i_color);
	position: absolute;
	left: 0;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before {
	top: 0;
}
.nav_menu::after {
	bottom: 0;
}


.nav_menu.on i {
	opacity: 0
}

.nav_menu.on::before {
	transform: rotate(45deg);
	top: 50%;
	margin-top: -2px
}

.nav_menu.on::after {
	transform: rotate(-45deg);
	top: 50%;
	margin-top: -2px
}

@media screen and (max-width:1024px) {
	.nav_menu {
		display: block !important;
		margin-left: 0.3rem;
	}
}
@media screen and (max-width:560px) {
	.nav_menu{margin-left: 24px;}
}




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





.top_search_ico{position: relative; font-size: 0; height: var(--header_height); display:flex; flex-wrap:wrap; align-items: center; cursor: pointer;}
.top_search_ico iconify-icon{font-size: var(--size);color: #555; -webkit-transition:all .5s ease; transition:all .5s ease;}
.top_search_ico.on iconify-icon{color: var(--i_color);}

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

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





.top_language{flex-shrink: 0; height: var(--header_height); display:flex; flex-wrap:wrap; align-items: center; position: relative;}
.top_language_btn{height: 100%;display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; cursor: pointer; position: relative;}
/* .top_language_btn::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);right: 0; width: 0.2rem; height: 0.2rem; width:0; height:0; border-left:4px solid transparent; border-right:4px solid transparent; border-top:6px solid #333;} */
.top_language_btn iconify-icon{font-size: var(--size);color: #555;-webkit-transition:all .5s ease; transition:all .5s ease;}
/* .top_language_btn p{margin-left: 8px; font-size: .16rem;} */
.top_language_btn.on iconify-icon{color: var(--i_color);}

.top_language_list {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(100% + .16rem);
	right: -.1rem;
	min-width: 1.6rem;
	background: #FFF;
	box-sizing: border-box;
	box-shadow: 2px 6px 10px rgb(0 0 0 / 10%);
	padding: .1rem .18rem .1rem;
	z-index: 2;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}
.top_language_list.on {
	visibility: visible;
	opacity: 1;
	top: 100%;
}

.top_language_list ul {overflow: hidden;}
.top_language_list li{position: relative;left: 0;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_language_list a>span {
	display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;gap: 0 8px;
	box-sizing: border-box;
	overflow: hidden
}
.top_language_list .trp-ls-language-name{font-size: 15px; color: #666;line-height: .3rem;}

.top_language_list li:hover{left: 4px;}
.top_language_list li:hover .trp-ls-language-name{color: var(--i_color);}

@media screen and (max-width:768px) {
	.top_language_btn p{display: none;}
}
@media screen and (max-width:560px) {}





.full_header_height{height: var(--header_height);}





/* banner */
.banner {
	width: 100%;
	font-size: 0;
	overflow: hidden;
	position: relative;
}

.banner .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
.banner .swiper-wrapper {
	display: flex;
	position: relative;
	width: 100%;
	z-index: 1
}
.banner .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-shrink: 0;
	height: 0;
	padding-bottom: 44.776%;
	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{opacity: .5; position:absolute; top:48%; transform:translate(0,-50%); width: 0.5rem;height: 0.5rem;box-sizing: border-box;border: 1px solid #FFF; cursor: pointer; border-radius:50%; 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.2rem; color:#FFF;}
.banner:hover .banner-button-prev{left: .2rem;}
.banner:hover .banner-button-next{right: .2rem;}
.banner-button-prev:hover{opacity: 1;}
.banner-button-next:hover{opacity: 1;}

.banner-pagination {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: .3rem;
	text-align: center;
	z-index: 99999999;
}
.banner-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	margin: 0 .1rem;
	-webkit-border-radius:2rem; border-radius:2rem;
	background: #CCC;
	outline: none;
	cursor: pointer;
	position: relative;
	-webkit-transition:width .5s ease; transition:width .5s ease;
}
.banner-pagination .swiper-pagination-bullet-active {background: var(--i_color);}

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





.banner1_text{position: absolute; top:40%; transform:translate(0,-50%); left: 6%; width: 50%;}
.banner1_text h3{font-size: 3.6vw; color: #FFF; font-weight: 600; line-height: 1.4;}
.banner1_text p{margin-top: 0.3rem; font-size: 1.9vw; color: #FFF; line-height: 1.4;}
@media screen and (max-width:1440px) {
	.banner1_text h3{font-size: 3.2vw;}
	.banner1_text p{font-size: 1.6vw;}
}
@media screen and (max-width:768px) {
	.banner1_text{left: 3%; width: 57%;}
	.banner1_text h3{font-size: 4vw;}
	.banner1_text p{margin-top: 0.2rem; font-size: 2vw;}
}
@media screen and (max-width:560px) {
	.banner1_text h3{font-size: 4.5vw;}
	.banner1_text p{margin-top: 0.1rem; font-size: 2.8vw;}
}





/* Main */
main{position: relative;overflow: hidden;}
.mainBg{background: #F4F4F4;}

section{overflow: hidden;}



.i_tit{}
.i_tit h3{font-weight: bold;}
.i_tit h6{margin-top: 4px; color: #666;}

.i_tit.center{text-align: center;}
.i_tit.white h3,.i_tit.white h6{color: #FFF;}

@media screen and (max-width:768px) {
	.i_tit h6{font-size: 14px;}
}





.i_more{display: table; padding: .1rem .3rem; border-radius:1rem; position: relative; overflow: hidden;}
.i_more::before{content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; box-sizing: border-box; border: 1px solid var(--i_color); border-radius:1rem;}
.i_more::after{content: '';position: absolute; top: 0; left: -2px; width: 0; height: 100%; background: var(--jb_color);}
.i_more b{font-size: 14px; color: var(--i_color); position: relative; white-space: nowrap; z-index: 3;}
.i_more.center{margin-left: auto;margin-right: auto;}

.i_more.white::before{border-color: #FFF;}
.i_more.white b{color: #FFF;}

.i_more:hover{transform:translate(0,-4px); box-shadow: 0 4px .16rem rgb(40 150 140 / 60%);}
.i_more:hover::before,.i_more.active::before{opacity: 0;}
.i_more:hover::after, .i_more.active::after{width: 102%;}
.i_more:hover b, .i_more.active b{color: #FFF;}

.i_more, .i_more::before, .i_more::after, .i_more b{transition:all .5s ease;}

@media screen and (max-width:1024px) {
	.i_more{padding: 8px 20px;}
}
@media screen and (max-width:560px) {
	.i_more{padding: 6px 20px;}
	.i_more b{font-size: 13px;}
}






.public-pagination{display:flex; flex-wrap:wrap; justify-content: center; gap: 0 5px;}
.public-pagination .swiper-pagination-bullet{width:.12rem; height:.12rem; box-sizing: border-box; border: 1px solid #333; border-radius:50%; outline:none; cursor:pointer;}
.public-pagination .swiper-pagination-bullet-active{background:var(--i_color); border-color: var(--i_color) !important;}
@media screen and (max-width:1024px) {
	.public-pagination .swiper-pagination-bullet{width: 10px; height: 10px;}
}
@media screen and (max-width:560px) {
	.public-pagination .swiper-pagination-bullet{width: 8px; height: 8px; border-color: #888;}
}





.pItem{--lr_padding:.3rem}
.pItem{box-sizing: border-box; padding: .3rem var(--lr_padding) 1.1rem; background: #FFF; text-align: center; border-radius:.2rem; position: relative; overflow: hidden;}
.pItem h5{font-size: 0.18rem; color: var(--i_color); overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}
.pItem .pic{margin: .14rem auto; width: 90%; aspect-ratio: 1 / 1;}
.pItem .pic img{width: 100%; height: 100%; object-fit: contain; transition:all .5s ease;}
.pItem .model{font-size: 0.24rem; color: #666;}
.pItem i{position: absolute; left: var(--lr_padding); bottom: .36rem; width: calc(100% - var(--lr_padding) * 2); box-sizing: border-box; margin-top: 0.16rem; border: 1px solid #666; padding: .12rem .16rem; font-size: .18rem; color: #444; border-radius:1rem; transition:all .5s ease;}

.pItem:hover img{transform: scale(1.03, 1.03);}
.pItem:hover i{background: var(--i_color); border-color: var(--i_color); color: #FFF;}

@media screen and (max-width:1440px) {
	.pItem .model{font-size: 0.2rem;}
}
@media screen and (max-width:1200px) {
	.pItem .model{font-size: 0.18rem;}
	.pItem i{padding: .1rem .16rem; font-size: 0.16rem;}
}
@media screen and (max-width:1024px) {
	.pItem{--lr_padding:20px}
	.pItem{padding: 20px var(--lr_padding) 80px;}
	.pItem h5{font-size: 14px;}
	.pItem .model{font-size: 15px;}
	.pItem i{bottom: 26px; padding: 8px 16px; font-size: 14px;}
}
@media screen and (max-width:560px) {
	.pItem{padding: 20px var(--lr_padding) 70px;}
	.pItem .pic{width:100%}
	.pItem .model{font-size: 14px;}
	.pItem i{bottom: 20px; padding: 6px 16px; font-size: 13px;}
}







.homeSolVideo{width: 100%; aspect-ratio: 4 / 2; position: relative; overflow: hidden;}

.vimeoBox{position:absolute; top:50%; transform:translate(0,-50%); left: 0; width: 100%; padding:56.25% 0 0 0;}
.vimeoBox iframe{position:absolute;top:0;left:0;width:100%;height:100%;}






.homeProducts{}

.pSwiper_list{position:relative; overflow:hidden}
.pSwiper_list .swiper-wrapper{display:flex; position:relative; width:100%}
.pSwiper_list li{flex-shrink:0; position:relative; aspect-ratio: 63 / 55; background: #FFF; border-radius:.2rem; overflow: hidden;}
.pSwiper_list li::before{content: '';position: absolute; left: 0; top: 0; width: 100%; height: 30%; background:linear-gradient(to bottom, #D4D4D4, transparent);}
.pSwiper_list li::after{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 30%; background:linear-gradient(to bottom, transparent, #444);}

.pSwiper_list li img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width: 60%; max-height: 80%; object-fit: contain;}

.pSwiper_list .txt{position: absolute; left: 0; bottom: 0; width: 100%; box-sizing: border-box; padding: 0 .3rem; text-align: center; z-index: 3;}
.pSwiper_list .txt p{font-size: 0.18rem; color: #FFF; font-weight: bold; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}
.pSwiper_list .txt i{display: table; margin: .18rem auto .24rem; border: 1px solid #FFF; padding: 4px .1rem; font-size: 14px; color: #FFF; border-radius:1rem;}

.pSwiper_list li:hover img{transform:translate(-50%,-50%) scale(.95,.95);}
/* .pSwiper_list li:hover .txt p{color: var(--i_color);} */
.pSwiper_list li:hover .txt i{background: var(--i_color); border-color: var(--i_color);}

.pSwiper_list li img,.pSwiper_list .txt p,.pSwiper_list .txt i{transition:all .5s ease;}

@media screen and (max-width:1366px) {
	.pSwiper_list .txt i{margin: .1rem auto .2rem;}
}
@media screen and (max-width:1024px) {
	.pSwiper_list{width: 94%; margin-left: auto;margin-right: auto;}
	.pSwiper_list li{border-radius:.1rem;}
	.pSwiper_list .txt p{margin-bottom: 10px; font-size: 15px; font-weight: 600;}
	.pSwiper_list .txt i{display: none;}
}
@media screen and (max-width:560px) {
	.pSwiper_list .txt{padding: 0 16px;}
	.pSwiper_list .txt p{font-size: 13px; font-weight: normal;}
}






.homeTab{position: relative; overflow: hidden;}

.homeTabPic{width: 100%; aspect-ratio: 1920 / 950; position: relative;}
.homeTabPic::after{content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgb(0 0 0 / 30%); z-index: 3;}

.homeTabPic dt{position: absolute; left: 0; top: 0; width: 100%; height: 100%}
.homeTabPic dt img{opacity: 0; visibility: hidden; width: 100vw; height: 100%; object-fit: cover;}
.homeTabPic dt.active{z-index: 2;}
.homeTabPic dt.active img{opacity: 1; visibility: visible; transition:all .5s ease;}

.homeTabTit{position: absolute; left: 0; top: 18%; width: 100%; z-index: 4;}
.homeTabTit h3{font-size: 0.5rem; color: #FFF; font-weight: bold;}

.homeTabTxt{position: absolute; left: 0; bottom: 44%; width: 100%; z-index: 4;}
.homeTabTxt article{width: 50%; font-size: 0.22rem; color: #FFF; line-height: 1.6;}

.homeTabNav{position: absolute; left: 0; bottom: 10%; width: 100%; z-index: 4;}
.homeTabNav ul{display:flex; flex-wrap:nowrap; position: relative; border-radius:.1rem; overflow: hidden;}
.homeTabNav ul::before{content: ''; position:absolute; top:0; left:0; width:100%; height:100%; background: rgb(255 255 255 / 40%); -webkit-backdrop-filter: blur(30px); backdrop-filter: blur(30px);}
.homeTabNav li{padding: .38rem .3rem; width: 100%; position: relative; border-radius:.1rem; cursor: pointer; position: relative;}
.homeTabNav li::before{content: ''; position:absolute; top:50%; transform:translate(0,-50%); right: -2px; width: 2px; height: 0.2rem; background: #000;}
.homeTabNav li:last-child::before{display: none;}
.homeTabNav .tit{height: 100%; display:flex; flex-wrap:wrap; align-items: center; justify-content: center;}
.homeTabNav .tit p{font-size: 0.18rem; text-align: center;}
.homeTabNav .txt{display: none; visibility: hidden;}

.homeTabNav li.active{background: #FFF; z-index: 2;}
.homeTabNav li.active::before{opacity: 0;}

@media screen and (max-width:1366px) {
	.homeTabTit h3{font-size: 0.44rem;}
	.homeTabTxt article{font-size: 0.2rem;}

	.homeTabNav{bottom: 6%;}
	.homeTabNav li{padding: .32rem .2rem;}
	.homeTabNav .tit p{font-size: 0.17rem;}
}
@media screen and (max-width:1200px) {
	.homeTabTit h3{font-size: 0.38rem;}

	.homeTabNav li{padding: .26rem .14rem;}
	.homeTabNav .tit p{font-size: 0.15rem;}
}
@media screen and (max-width:1024px) {
	.homeTabTit{top: 8%;}
	.homeTabTit h3{font-size: 24px;}

	.homeTabTxt{bottom: initial; top: 18%;}
	.homeTabTxt article{width: 80%; font-size: 16px;}

	.homeTabNav{margin-top: 20px; position: relative; bottom: initial;}
	.homeTabNav ul{flex-wrap: wrap; gap: 20px 3%; border-radius:0;}
	.homeTabNav ul::before{display: none;}
	.homeTabNav li{width: 31.33%; box-sizing: border-box; padding: 10px 14px; border: 1px solid #DDD;}
	.homeTabNav li::before{display: none;}
	.homeTabNav .tit p{font-size: 14px;}

	.homeTabNav li.active{background: var(--i_color); border-color: var(--i_color);}
	.homeTabNav li.active .tit p{color: #FFF;}
}
@media screen and (max-width:768px) {
	.homeTabTit h3{font-size: 20px; font-weight: 600;}
	.homeTabTxt article{margin-top: 0; width: 100%; font-size: 14px;}

	.homeTabNav li{border-radius:6px;}
	.homeTabNav .tit p{font-size: 13px;}
}
@media screen and (max-width:560px) {
	.homeTabTit{top: 5%;}
	.homeTabTit h3{font-size: 18px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}
	.homeTabTxt{top: 13%;}
	.homeTabTxt article{font-size: 13px;}

	.homeTabNav ul{gap: 10px 0;}
	.homeTabNav li{width: 100%;}
	.homeTabNav .tit p{font-size: 12px;}
}






.homeWhy{}

.homeWhy .i_tit h3{color: var(--i_color);}

.homeWhy_line{display: block; margin-left: auto;margin-right: auto; width: 1px; height: 1.6rem; position: relative;}
.homeWhy_line i{position: absolute; top: 0; left: 0; width: 1px; height: 100%; background: var(--i_color); transition:all .5s ease;}

.homeWhy article {
	font-size: 0.24rem;
	line-height: 1.8;
	text-align: center;
	background-image: -webkit-linear-gradient(left, #3F71B4, #5aadff 25%, #333 50%, #666 75%, var(--i_color));
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-background-size: 200% 100%;
	-webkit-animation: maskedAnimation 10s infinite linear;
}
@keyframes maskedAnimation {
	0% {
		background-position: 100% 0;
	}
	50% {
		background-position: 0 0;
	}
	100% {
		background-position: -100% 0;
	}
}

@media screen and (max-width:1024px) {
	.homeWhy_line{height: 80px;}
	.homeWhy article{font-size: 17px;}
}
@media screen and (max-width:768px) {
	.homeWhy article{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.homeWhy_line{height: 60px;}
	.homeWhy article{font-size: 14px;}
}




.homeWhy_global{min-height: 6rem; position: relative;}

.homeGlobalPic{width: 6rem; height: 6rem; margin-left: auto;margin-right: auto; position: relative;}
.homeGlobalPic img{width: 100%; height: 100%;}
.homeGlobalPic .dot{
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%;
	border-radius:50%;
	animation: round 20s linear infinite;
	-webkit-animation: round 20s linear infinite;
}
.homeGlobalPic .dot i{display: block; margin-left: auto;margin-right: auto; width: 0.14rem; height: 0.14rem; background: var(--i_color); border-radius:50%; position: relative; top: -.05rem;}

@-webkit-keyframes round {
	from {
		transform: rotateZ(0deg);
	}
	to {
		transform: rotateZ(360deg);
	}
}

@keyframes round {
	from {
		transform: rotateZ(0deg);
	}
	to {
		transform: rotateZ(360deg);
	}
}

.homeGlobalNum{position:absolute; top:50%; transform:translate(0,-50%); left: 0; width: 100%; display:flex; flex-wrap:wrap; justify-content: space-between; gap: 1.4rem 40%;}
.homeGlobalNum dt{width: 22%; text-align: center;}

.homeGlobalNum span{display:flex; flex-wrap:wrap; justify-content: center; align-items: baseline; font-size: 0.2rem; color: #666;}
.homeGlobalNum span i{font-size: 3vw; font-weight: 600; color: #000;}
.homeGlobalNum p{font-size: 0.16rem;}

@media screen and (max-width:1024px) {
	.homeWhy_global{min-height: auto;}
	.homeGlobalPic{width: 50%; height: auto; aspect-ratio: 1 / 1;}

	.homeGlobalNum{gap: 100px 40%;}
	.homeGlobalNum span i{font-size: 4vw;}
	.homeGlobalNum p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.homeGlobalNum{gap: 60px 40%;}
}
@media screen and (max-width:560px) {
	.homeGlobalPic .dot i{top: -4px; width: 10px; height: 10px;}

	.homeGlobalNum{gap: 30px 40%;}
	.homeGlobalNum span{font-size: 14px;}
	.homeGlobalNum span i{font-size: 4.2vw;}
	.homeGlobalNum p{font-size: 12px;}
}






.homeLives{min-height: calc(100vh - var(--header_height)); display:flex; flex-wrap:wrap; align-items: center; justify-content: center; background:url(static/images/home-lives.webp) no-repeat center; background-attachment: fixed; background-size: cover;}

.homeLives_list{padding-top: 0.1rem; position:relative; overflow:hidden}
.homeLives_list .swiper-wrapper{display:flex; position:relative; width:100%}
.homeLives_list li{flex-shrink:0; position:relative; background: #FFF; border-radius:.1rem; overflow: hidden;}

.homeLives_list .pic{position: relative; aspect-ratio: 446 / 260; overflow: hidden;}
.homeLives_list .pic img{width: 100%; height: 100%; object-fit: cover;}
.homeLives_list .pic i{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 0.8rem; height: 0.8rem; background: var(--i_color); border-radius:50%;}
.homeLives_list .pic iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.36rem; color: #FFF;}

.homeLives_list .txt{padding: .14rem .2rem .4rem;}
.homeLives_list .txt p{font-size: 0.18rem; color: #111; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.homeLives_list li:hover{transform:translate(0,-6px);}
.homeLives_list li:hover img{transform: scale(1.05, 1.05);}
.homeLives_list li:hover .pic i{transform:translate(-50%,-50%) rotate(360deg); transition:all .5s ease;}
.homeLives_list li:hover p{color: var(--i_color);}
.homeLives_list li, .homeLives_list .pic img{transition:all .5s ease;}

.homeLives-pagination{display: none;}

@media screen and (max-width:1440px) {
	.homeLives_list .pic i{width: 0.7rem; height: 0.7rem;}
	.homeLives_list .pic iconify-icon{font-size: 0.3rem;}
	.homeLives_list .txt p{font-size: 0.17rem;}
}
@media screen and (max-width:1024px) {
	.homeLives{min-height: auto; display: block;}

	.homeLives_list .pic i{width: 60px; height: 60px;}
	.homeLives_list .pic iconify-icon{font-size: 26px;}
	.homeLives_list .txt p{font-size: 15px;}

	.homeLives-pagination{display: flex;}
}
@media screen and (max-width:768px) {
	.homeLives_list .txt p{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.homeLives_list .txt{padding-bottom: 30px;}
}







.homeNews{min-height: calc(100vh - var(--header_height)); display:flex; flex-wrap:wrap; align-items: center; justify-content: center; background:url(static/images/home-news.webp) no-repeat center; background-attachment: fixed; background-size: cover;}

.homeNews_list{position:relative; overflow:hidden}
.homeNews_list .swiper-wrapper{display:flex; position:relative; width:100%}
.homeNews_list li{flex-shrink:0; position:relative; background: #FFF; border-radius:.1rem; overflow: hidden;}
.homeNews_list li a{display:flex; flex-wrap:wrap;}
.homeNews_list .txt,.homeNews_list .pic{width: 50%;}

.homeNews_list .txt{box-sizing: border-box; padding: .4rem .4rem 0;}
.homeNews_list .txt i{font-size: 0.16rem; color: #999;}
.homeNews_list .txt h5{margin: .1rem 0 .2rem; font-size: 0.2rem; font-weight: 600; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.homeNews_list .txt p{font-size: 0.16rem; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.homeNews_list .txt span{margin-top: 0.6rem; display:flex; flex-wrap:wrap; align-items: center; gap: 0 4px; font-size: 0.16rem;}
.homeNews_list .txt span iconify-icon{font-size: 0.18rem; color: #999;}
.homeNews_list .pic{aspect-ratio: 70 / 36; overflow: hidden;}
.homeNews_list .pic img{width: 100%; height: 100%; object-fit: cover; transition:all .5s ease;}

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

.homeNews-prev,.homeNews-next{position:absolute; top:50%; transform:translate(0,-50%); width:.3rem; height:.3rem; z-index:3; cursor:pointer; outline:none; user-select:none}
.homeNews-prev{left:-.36rem;}
.homeNews-next{right:-.36rem;}
.homeNews-prev iconify-icon,.homeNews-next iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.14rem; color:#FFF;}
.homeNews_list .swiper-button-disabled{cursor:not-allowed}
.homeNews-prev:hover iconify-icon,.homeNews-next:hover iconify-icon{color: var(--i_color);}

.homeNews-pagination{display: none;}

@media screen and (max-width:1366px) {
	.homeNews_list .txt h5{margin-bottom: 0.14rem;}
	.homeNews_list .txt span{margin-top: 0.46rem;}
}
@media screen and (max-width:1024px) {
	.homeNews{min-height: auto; display: block;}

	.homeNews_list .txt, .homeNews_list .pic{width: 100%;}
	.homeNews_list .txt{padding: 30px;}
	.homeNews_list .txt i{font-size: 14px;}
	.homeNews_list .txt h5{font-size: 17px;}
	.homeNews_list .txt p{font-size: 14px;}
	.homeNews_list .txt span{margin-top: 20px; font-size: 14px;}

	.homeNews_list .pic{order: -1;}

	.homeNews-pagination{display: flex;}
	.homeNews-prev,.homeNews-next{display: none;}
}
@media screen and (max-width:768px) {
	.homeNews_list .txt{padding: 20px 20px;}
}
@media screen and (max-width:560px) {
	.homeNews_list .txt h5{font-size: 16px;}
	.homeNews_list .txt p{font-size: 13px;}
	.homeNews_list .txt span{font-size: 13px;}
}






.secContact{}
.secContact .wrap2{display:flex; flex-wrap:nowrap; align-items: center;}

.secContact_logo{width: 35.5%}
.secContact_logo img{width: 100%}

.secContact span{width: 50%; margin-left: auto;}
.secContact span h5{font-size: 2vw;}
.secContact span p{margin-top: 0.1rem; font-size: .16rem; color: #666;}
.secContact span i{
	display: block;
	font-weight: bold;
	background-image: -webkit-linear-gradient(left, #3F71B4, #5aadff 25%, #86C99C 50%, #3B91C8 75%, var(--i_color));
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-background-size: 200% 100%;
	-webkit-animation: maskedAnimation 6s infinite linear;
}

.secContact .btn{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .5rem;}

@media screen and (max-width:1024px) {
	.secContact_logo{width: 26%}

	.secContact span{width: 66%;}
	.secContact span h5{font-size: 2.6vw;}
}
@media screen and (max-width:768px) {
	.secContact span p{font-size: 15px;}
	.secContact .btn{flex-wrap: wrap; gap: 10px 3vw;}
}
@media screen and (max-width:560px) {
	.secContact span h5{font-size: 3.8vw;}
	.secContact span i{margin-top: 4px;}
	.secContact span p{font-size: 13px;}
}







footer{min-height: calc(100vh - var(--header_height)); background:url(static/images/footer-bg.webp) no-repeat center; background-size: cover; display:flex; flex-wrap:wrap; align-items: center;}
footer>.box{width: 100%;}

.fCont{}

.fMedia{text-align: center; border-bottom: 1px solid rgb(255 255 255 / 10%);}
.fMedia h4{color: #FFF;}

.fMedia_list{display:flex; flex-wrap:wrap; justify-content: center; gap: 5vw;}
.fMedia_list li{transition:all .5s ease;}
.fMedia_list a{display: block; width: 0.48rem; height: 0.48rem; box-sizing: border-box; border: 1px solid #FFF; border-radius:50%; position: relative; transition:all .5s ease;}
.fMedia_list iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.24rem; color: #FFF;}

.fMedia_list li:hover{transform:translate(0,-4px);}
.fMedia_list a:hover{background: var(--i_color); border-color: var(--i_color);}

.fNav{display:flex; flex-wrap:nowrap; justify-content: space-between; gap: 0 4vw;}
.fNav dt{max-width: 28%;}
.fNav dt>a{display: block; margin-bottom: 0.2rem; font-size: 0.22rem; color: #FFF; font-weight: 600;}
.fNav li{}
.fNav li a{display: block; padding: 6px 0; font-size: 0.18rem; color: rgb(255 255 255 / 80%); line-height: 1.6;}
.fNav li a:hover{color: var(--i_color);}

.fCR{}
.fLogo{padding-bottom: 0.2rem; margin-bottom: 0.2rem; border-bottom: 1px solid rgb(255 255 255 / 10%);}
.fLogo img{height: 0.65rem;}
.fCR p, .fCR p a{font-size: 14px; color: rgb(255 255 255 / 40%);}
.fCR p a{margin-left: 0.2rem; text-decoration: underline;}
.fCR p a:hover{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.fMedia_list a{width: 44px; height: 44px;}
	.fMedia_list iconify-icon{font-size: 20px;}

	.fNav{gap: 0 3%;}
	.fNav dt{max-width: 24%;}
	.fNav dt>a{font-size: 20px;}
	.fNav li a{font-size: 14px;}

	.fLogo img{height: 50px;}
}
@media screen and (max-width:768px) {
	.fNav{flex-wrap: wrap; gap: 40px 4%;}
	.fNav dt{max-width: none; width: 48%;}
	.fNav dt>a{margin-bottom: 14px; font-size: 18px;}
	.fNav li a{line-height: 1.4;}
}
@media screen and (max-width:560px) {
	.fMedia_list a{width: 34px; height: 34px;}
	.fMedia_list iconify-icon{font-size: 18px;}

	.fNav dt>a{margin-bottom: 10px; font-size: 16px;}
	.fNav li a{font-size: 13px;}

	.fLogo img{height: 44px;}

	.fCR p a{display: block; margin: 4px 0 0;}
}






.clickTop{opacity: 0; position: fixed; right: -3vw; bottom: 2vw; z-index: 9999; transition:all .5s ease;}
.clickTop.show{opacity: 1; right: 1vw;}
.clickTop a{display: block; width: 0.6rem; height: 0.6rem; background:linear-gradient(to bottom, #29948E 0%, #3D6EB5 40%); border-radius:50%; position: relative; transition:all .5s ease;}
.clickTop a iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.34rem; color: #FFF;}

.clickTop a:hover{box-shadow: 0 4px .16rem rgb(40 150 140 / 60%)}

@media screen and (max-width:1024px) {
	.clickTop a{width: 48px; height: 48px;}
	.clickTop a iconify-icon{font-size: 26px;}
}
@media screen and (max-width:768px) {
	.clickTop a{width: 40px; height: 40px;}
	.clickTop a iconify-icon{font-size: 22px;}
}
@media screen and (max-width:560px) {
	.clickTop{bottom: 20px;}
	.clickTop.show{right: 2.5%;}
	.clickTop a{width: 34px; height: 34px;}
	.clickTop a iconify-icon{font-size: 18px;}
}





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

.banner__{width: 100%; position: relative; overflow: hidden;}
.banner__>img{width: 100vw; transform: scale(1.4, 1.4); transition:all 3s ease;}
.banner__>img.scale{transform: scale(1, 1);}

.banner_forText{position: absolute; top: 15%; left: 0; width: 100%;}
.banner_forText h2{font-size: 2.2vw; color: #FFF;}
.banner_forText .span{display: block; font-size: 0.18rem; color: #FFF; line-height: 1.5;}
.banner_forText .btn{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .5rem;}

@media screen and (max-width:1440px) {
	.banner_forText{top: 12%;}
}
@media screen and (max-width:1024px) {
	.banner_forText .span{font-size: 14px; text-shadow: 0 0 4px rgb(0 0 0 / 20%);}
}
@media screen and (max-width:768px) {
	.banner__forPage>img{position: absolute; left: 0; top: 0; height: 100%; object-fit: cover;}
	.banner__forPage::after{content: '';position:absolute; top:0; left:0; width:100%; height:100%; background: rgb(0 0 0 / 40%);}

	.banner_forText{position: relative; top: initial; padding: 60px 0 80px; z-index: 2;}
	.banner_forText h2{font-size: 3vw;}
	.banner_forText .span{font-size: 13px;}
	.banner_forText .btn{gap: 10px 3vw;}
	.banner_forText .i_more::before{border-color: #FFF;}
	.banner_forText .i_more b{color: #FFF;}
}
@media screen and (max-width:560px) {
	.banner_forText h2{font-size: 4vw;}
}






/* Breadcrumb */
.in_position{padding:.2rem 0;background:#F9F9F9;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://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m2 8l9.732-4.866a.6.6 0 0 1 .536 0L22 8m-2 3v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8'/%3E%3C/svg%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:#2CAD42 !important}
.in_position a:hover {color:#2CAD42}
@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}
}






.forTab{}

.forTab_box{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 5%;}
.forTab_box>img{flex-shrink: 0; width: 58%; border-radius:.16rem;}

.forTab_list{width: 100%;}
.forTab_list li{margin-bottom: 0.3rem;}
.forTab_list .tit{display:flex; flex-wrap:nowrap; align-items: center; cursor: pointer; gap: 0 .2rem;}
.forTab_list .tit h5{font-size: 0.24rem;}
.forTab_list .tit i{margin-left: auto; flex-shrink: 0; width: 0.24rem; height: 0.24rem; box-sizing: border-box; border: 2px solid #000; border-radius:50%; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z'/%3E%3C/svg%3E") no-repeat center; background-size: .2rem;}
.forTab_list .active .tit h5{color: var(--i_color);}
.forTab_list .active .tit i{border-color: var(--i_color); background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2328968C' d='M19 12.998H5v-2h14z'/%3E%3C/svg%3E") no-repeat center; background-size: .2rem;}

.forTab_list .txt{display: none; margin-top: 0.2rem;}
.forTab_list .txt span{font-size: 0.18rem; color: #444; line-height: 1.7;}

@media screen and (max-width:1440px) {
	.forTab_list .tit h5{font-size: 0.2rem;}
	.forTab_list .txt span{font-size: .16rem;}
}
@media screen and (max-width:1200px) {
	.forTab_box>img{width: 52%;}
}
@media screen and (max-width:1024px) {
	.forTab_box{padding-left: 3%; flex-wrap: wrap; gap: .24rem 0;}
	.forTab_box>img{width: 100%;}

	.forTab_list .tit h5{font-size: 18px;}
	.forTab_list .tit i{width: 22px; height: 22px;}
	.forTab_list .tit i, .forTab_list .active .tit i{background-size: 16px;}
	.forTab_list .txt span{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.forTab_list .tit h5{font-size: 17px;}
}
@media screen and (max-width:560px) {
	.forTab_list .tit h5{font-size: 16px;}
	.forTab_list .txt span{font-size: 13px;}
	.forTab_list .tit i{width: 20px; height: 20px; border-width: 1px;}
	.forTab_list .tit i, .forTab_list .active .tit i{background-size: 14px;}
}






.forTabVideo_cont{position: relative;}
.forTabVideo_cont .card{width: 100vw; height: 100vh; background: #FFF; position: relative; overflow: hidden;}
.forTabVideo_cont .card:nth-child(2){background: #000;}
.forTabVideo_cont .card::after{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 35%; background:linear-gradient(to bottom, transparent, rgb(40 150 140 / 65%));}

.cardRound{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); height: 90%; will-change: transform; aspect-ratio: 1 / 1; border: 9rem solid #FFF; transform-origin:center center; transition:all .5s ease; border-radius:50%; z-index: 3;}

.forTabVideo_tit{opacity: 0; position: absolute; left: 0; top: 16%; width: 100%; transition:opacity .8s .2s; z-index: 2;}
.forCITabPic .forTabVideo_tit{opacity: 1 !important;}

.forTabVideo_url{position:absolute; top:0; left:0; width:100%; height:100%;}
/* .forTabVideo_url img{width: 100%; height: 100%; object-fit: cover;} */
.forTabVideo_url dt{display: none; position:absolute; top:0; left:0; width:100%; height:100%;}
.forTabVideo_url dt.active{display: block;}
.forTabVideo_url dt img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.forTabVideo_nav{position: absolute; left: 0; bottom: 4%; width: 100%; z-index: 2;}
.forTabVideo_nav ul{display:flex; flex-wrap:nowrap; position: relative;}
.forTabVideo_nav ul::before{content: '';position: absolute; left: 0; top: 1px; width: 100%; height: 1px; background: #222;}
.forTabVideo_nav li{width: 100%; box-sizing: border-box; padding: .2rem .3rem; text-align: center; position: relative; cursor: pointer;}
.forTabVideo_nav li::before{content: ''; position:absolute; left:50%; transform:translate(-50%,0); top: 0; width: 0; height: 3px; background: var(--i_color);}
.forTabVideo_nav h5{font-size: 0.16rem; color: #FFF;font-weight: 600; position: relative;}
.forTabVideo_nav p{margin-top: 0.1rem; font-size: 0.16rem; color: #FFF; line-height: 1.5;}

.forTabVideo_nav li.active::before{width: 100%; transition:all .5s ease;}

@media screen and (max-width:1200px) {
	.forTabVideo_url .vimeoBox{padding: 0 0; height: 100%;}
	.forTabVideo_url .vimeoBox iframe{top:50%; left:50%; transform:translate(-50%,-50%); width: 110%; height: 110%;}
}
@media screen and (max-width:1024px) {
	.forTabVideo_cont .card{height: auto; margin-bottom: 70px;}
	.forTabVideo_cont .card:nth-child(2){background: none;}
	.forTabVideo_cont .card::after{display: none;}

	.cardRound{display: none !important;}

	.forTabVideo_tit{opacity: 1; position: initial; margin-bottom: 40px;}
	.forTabVideo_tit .i_tit h3{color: #222;}

	.forTabVideo_url{position: relative; height: auto;}
	.forTabVideo_url dt{position: initial; height: auto; aspect-ratio: 1920 / 1080;}
	.forTabVideo_url .vimeoBox iframe{width: 100%; height: 100%;}

	.forTabVideo_nav{position: relative; bottom: initial; margin-top: 20px;}
	.forTabVideo_nav ul{gap: 0 10px;}
	.forTabVideo_nav ul::before{display: none;}
	.forTabVideo_nav li{box-sizing: border-box; border: 1px solid #DDD; padding: 10px 12px; display:flex; flex-wrap:wrap; align-items: center; justify-content: center;}
	.forTabVideo_nav li::before{display: none;}
	.forTabVideo_nav h5{font-size: 16px; line-height: 1.4; color: #444;}
	.forTabVideo_nav p{display: none;}

	.forTabVideo_nav li.active{border-color: var(--i_color); background: var(--i_color);}
	.forTabVideo_nav li.active h5{color: #FFF;}
}
@media screen and (max-width:768px) {
	.forTabVideo_nav ul{flex-wrap: wrap; gap: 14px 4%;}
	.forTabVideo_nav li{width: 48%}

	.forTabVideo_nav h5{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.forTabVideo_nav li{padding: 6px 12px;}
	.forTabVideo_nav h5{font-size: 13px;}
}






.forTabPic{}

.forTabPic_cont{position: relative;}

.forTabPic_pic{position: relative;}
.forTabPic_pic::after{content: '';position: absolute; left: 0; top: 0; width: 100%; height: 2rem; background:linear-gradient(to bottom, rgb(255 255 255 / 70%), transparent);}
.forTabPic_pic dt{display: none; width: 100%; aspect-ratio: 192 / 70;}
.forTabPic_pic dt.active{display: block;}
.forTabPic_pic dt img{width: 100vw; height: 100%; object-fit: cover;}

.forTabPic_nav{position: absolute; left: 0; top: 0.4rem; width: 100%; z-index: 2;}
.forTabPic_nav ul{margin: 0 auto; width: 94%; display:flex; flex-wrap:nowrap; justify-content: center; gap: 0 4vw;}
.forTabPic_nav li{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .1rem; cursor: pointer;}
.forTabPic_nav li i{flex-shrink: 0; display: block; width: 0.22rem; height: 0.22rem; box-sizing: border-box; border: 1px solid #000; border-radius:50%; position: relative;}
.forTabPic_nav li i::after{opacity: 0; content: '';position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 60%; height: 60%; background: #1659A8; border-radius:50%;}
.forTabPic_nav li p{font-size: 0.16rem;}

.forTabPic_nav li.active i::after{opacity: 1;}

.forTabPic_text{margin-top: -.8rem; background: #F0F0F0; text-align: center; box-sizing: border-box; padding: .3rem .5rem; position: relative; border-radius:.14rem; z-index: 2;}
.forTabPic_text h5{margin-bottom: 0.2rem; font-size: 0.24rem; font-weight: 600;}
.forTabPic_text span{color: #555;}

@media screen and (max-width:1024px) {
	.forTabPic_nav{margin-bottom: 30px; position: initial; top: initial;}
	.forTabPic_nav li i{width: 18px; height: 18px;}
	.forTabPic_nav li p{font-size: 15px;}

	.forTabPic_text{margin-top: -30px;}
	.forTabPic_text h5{margin-bottom: 10px; font-size: 18px;}
	.forTabPic_text span{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.forTabPic_text{padding: 20px 30px;}
	.forTabPic_text h5{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.forTabPic_nav li i{width: 14px; height: 14px;}
	.forTabPic_nav li p{font-size: 13px;}

	.forTabPic_text{margin-top: -16px; padding: 20px 20px; border-radius:6px;}
	.forTabPic_text h5{font-size: 15px;}
}







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

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

@media screen and (max-width:768px) {
	.forProduct_list{gap: 30px 4%;}
	.forProduct_list li{width: 48%;}
}
@media screen and (max-width:560px) {
	.forProduct_list{gap: 18px 4%;}
}






.forAccordion{}

.forAccordion_cont{position: relative;}
.forAccordion_cont::before{content: '';display: block; padding-bottom: 42%;}

.forAccordion_cont ul {position: absolute; top: 0; left: 0; width: 100%; height: 100%; display:flex; flex-wrap:nowrap; gap: 0 1%;}

.forAccordion_cont li {
	flex-grow: 1;
	width: 14%;
	height: 100%;
	border-radius:.14rem;
	position: relative;
	transition: all 0.7s ease;
	cursor: pointer;
	overflow: hidden;
	z-index: 2;
}
.forAccordion_cont li::after{content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgb(255 255 255 / 20%); transition:all .7s ease;}
.forAccordion_cont .bg{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.forAccordion_cont .t1,.forAccordion_cont .t2{position: absolute; left: 0; width: 100%; box-sizing: border-box; z-index: 3;}
.forAccordion_cont .t1{bottom: .2rem; padding: 0 10px; transition:all .5s .3s;}
.forAccordion_cont .t1 h5{font-size: 14px; color: #FFF; text-align: center;}
.forAccordion_cont .t2{opacity: 0; visibility: hidden; bottom: -.4rem; padding: .1rem .2rem; text-align: center; border-radius:.2rem .2rem 0 0; overflow: hidden;}
.forAccordion_cont .t2::before{content: '';position:absolute; top:0; left:0; width:100%; height:100%; background: rgb(0 0 0 / 40%); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border-radius:.2rem .2rem 0 0}
.forAccordion_cont .t2 span{display: block; width: 34vw; margin-left: auto;margin-right: auto;}
.forAccordion_cont .t2 h5{margin-bottom: 0.1rem; font-size: 0.2rem;color: #FFF; position: relative;}
.forAccordion_cont .t2 p{font-size: 0.16rem; color: #FFF; line-height: 1.6; position: relative;}

.forAccordion_cont li.active{flex-grow: 1000 !important;}
.forAccordion_cont li.active::after{opacity: 0;}
.forAccordion_cont li.active .t1{opacity: 0; visibility: hidden;}
.forAccordion_cont li.active .t2{bottom: -1px; opacity: 1; visibility: visible;}

@media screen and (max-width:1200px) {
	.forAccordion_cont .t2 h5{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.forAccordion_cont::before{display: none;}
	.forAccordion_cont ul{position: initial; flex-wrap:wrap; gap:30px 4%;}
	.forAccordion_cont li{width: 48%; border-radius:0;}
	.forAccordion_cont li::after{display: none;}
	.forAccordion_cont .bg{position: initial; height: auto; aspect-ratio: 74 / 60; border-radius:.1rem;}

	.forAccordion_cont .t1{display: none;}
	.forAccordion_cont .t2{display: block; position: initial; padding: 0; margin-top: 0.18rem; opacity: 1; visibility: visible;}
	.forAccordion_cont .t2::before{display: none;}
	.forAccordion_cont .t2 span{width: 100%;}
	.forAccordion_cont .t2 h5{font-size: 16px; color: #333;}
	.forAccordion_cont .t2 p{font-size: 14px; color: #666;}
}
@media screen and (max-width:560px) {
	.forAccordion_cont li{width: 100%;}
}






.forApp{}

.forApp_cont{background: #FCFDFB;}
.forApp_cont .wrap2{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 7%;}

.forApp_cont .appPic{flex-shrink: 0; width: 32.5%;}

.forApp_cont .t{width: 100%;}
.forApp_cont .t h5{margin-bottom: 0.2rem; font-size: 0.26rem; font-weight: 600;}
.forApp_cont .t i,.forApp_cont .t p{font-size: 0.22rem; color: #666; line-height: 2;}
.forApp_cont .t i{color: var(--i_color);}

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {
	.forApp_cont .t h5{font-size: 0.22rem;}
	.forApp_cont .t i,.forApp_cont .t p{font-size: 0.2rem;}
}
@media screen and (max-width:1200px) {
	.forApp_cont .t i,.forApp_cont .t p{font-size: 0.17rem;}
}
@media screen and (max-width:1024px) {
	.forApp_cont .t h5{font-size: 20px;}
	.forApp_cont .t i,.forApp_cont .t p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.forApp_cont .wrap2{flex-wrap: wrap; gap: 30px 0;}
	.forApp_cont .appPic{width: 90%; max-width: 400px;}
	.forApp_cont .t{padding-bottom: 40px;}
}
@media screen and (max-width:560px) {
	.forApp_cont .t h5{font-size: 17px;}
	.forApp_cont .t i,.forApp_cont .t p{font-size: 14px;}
}






.forProject{}

.forProject_cont{position: relative;}

.forProject_list{background: #F4F4F4; border-radius:.2rem 0 0 .2rem; position:relative; overflow:hidden}
.forProject_list::after{content: '';position: absolute; bottom: 0; left: 10%; width: 40%; height: .85rem; background:url(static/images/for-project_logo.webp) no-repeat right bottom; background-size: contain;}

.forProject_list .swiper-wrapper{display:flex; position:relative; width:100%}
.forProject_list li{flex-shrink:0; position:relative; display:flex; flex-wrap:wrap; align-items: center;}

.forProject_list .txt{width: 50%; box-sizing: border-box; padding: 0 5vw 8vw 13.4vw;}
.forProject_list h5{margin-bottom: 0.2rem; font-size: 0.24rem; font-weight: 600;}
.forProject_list span{font-size: 0.17rem; color: #666; line-height: 1.6;}

.forProject_list .pic{width: 50%; aspect-ratio: 96 / 65;}
.forProject_list .pic img{width: 100%; height: 100%; object-fit: cover;}

.forProject-prev,.forProject-next{position:absolute; top:50%; transform:translate(0,-50%); width:.4rem; height:.4rem; background: #8A8A8A; border-radius:50%; z-index:3; cursor:pointer; outline:none; user-select:none}
.forProject-prev{left:6vw;}
.forProject-next{right:6vw;}
.forProject-prev iconify-icon,.forProject-next iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.24rem; color:#FFF;}
.forProject_list .swiper-button-disabled{cursor:not-allowed}
.forProject-prev:hover,.forProject-next:hover{background: var(--i_color);}

.forProject-pagination{display:none;}

@media screen and (max-width:1680px) {
	.forProject_list .txt{padding: 0 5vw 8vw 8.3vw;}
}
@media screen and (max-width:1440px) {
	.forProject-prev{left:3vw;}
	.forProject-next{right:3vw;}
}
@media screen and (max-width:1024px) {
	.forProject_list .txt{padding: 0 3vw;}
	.forProject_list h5{font-size: 18px;}
	.forProject_list span{font-size: 15px;}

	.forProject-pagination{display:flex;}
	.forProject-prev,.forProject-next{display: none;}
}
@media screen and (max-width:768px) {
	.forProject_list{border-radius:0; background: none;}
	.forProject_list::after{width: 80%; left: initial; right: 0;}
	.forProject_list li{padding-bottom: 30px; align-items: flex-start; flex-direction: column; background: #F1F1F1;}
	.forProject_list .pic{width: 100%; order: -1;}

	.forProject_list .txt{width: 100%; margin-top: 26px;}
	.forProject_list h5{margin-bottom: 10px; font-size: 17px;}
}
@media screen and (max-width:560px) {
	.forProject{margin-bottom: 20px;}
	.forProject_list h5{font-size: 16px;}
}







.forTabProduct{}

.forTabProduct_cont{background: #F4F4F4;}

.forTabProduct_nav{display:flex; flex-wrap:wrap; justify-content: center; gap: 0 5%;}
.forTabProduct_nav li{cursor: pointer; position: relative;}
.forTabProduct_nav li::before{content: '';position:absolute; bottom: 0; left:0; width: 0; height: 3px; background: var(--i_color);}
.forTabProduct_nav p{padding-bottom: 6px; font-size: 0.24rem;}
.forTabProduct_nav .active::before{width: 100%; transition:all .5s ease;}
.forTabProduct_nav .active p{color: var(--i_color); font-weight: 600;}


.forTabProduct_show{}
.forTabProduct_show .item{height: 0; opacity: 0; visibility: hidden; position: relative; top: 0.3rem;}
.forTabProduct_show .item.active{height: auto; opacity: 1; visibility: visible; top: 0; transition:all .5s ease;}

.forTabProduct_content{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 4%;}
.forTabProduct_content .txt{width: 100%;}
.forTabProduct_content .txt h5{margin-bottom: 0.2rem; font-size: 0.24rem; color: var(--i_color); font-weight: 600;}
.forTabProduct_content .txt article{font-size: 0.16rem; line-height: 1.8; color: #555;}
.forTabProduct_content .pic{flex-shrink: 0; width: 50%;}
.forTabProduct_content .pic img{width: 100%; border-radius:.16rem 0 0 .16rem;}

@media screen and (max-width:1200px) {
	.forTabProduct_nav p{font-size: 0.22rem;}
}
@media screen and (max-width:1024px) {
	.forTabProduct_nav p{font-size: 18px;}

	.forTabProduct_content .txt h5{font-size: 20px;}
	.forTabProduct_content .txt article{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.forTabProduct_nav p{font-size: 16px;}

	.forTabProduct_content{padding-right: 3vw; flex-wrap: wrap; gap: 30px 0;}
	.forTabProduct_content .pic{order: -1; width: 100%;}
	.forTabProduct_content .pic img{border-radius:12px;}
}
@media screen and (max-width:560px) {
	.forTabProduct_nav li::before{height: 2px;}
	.forTabProduct_nav p{font-size: 14px;}

	.forTabProduct_content .txt h5{margin-bottom: 10px; font-size: 16px;}
	.forTabProduct_content .txt article{font-size: 13px;}
}






.cateInfo{}
.cateInfo h1, .cateInfo h2{color: #222; font-weight: bold;}
.cateInfo article{margin-top: 0.24rem; font-size: 0.16rem; color: #555; line-height: 1.8;}
@media screen and (max-width:1024px) {
	.cateInfo article{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.cateInfo article{font-size: 13px;}
}





.nav_cate{display:flex; flex-wrap:wrap; justify-content: center; gap: .14rem 3vw;}
.nav_cate li{position: relative;}
.nav_cate li::before{content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--i_color);}
.nav_cate a{display: block; padding: 6px 0; font-size: 0.18rem; transition:all .5s ease;}

.nav_cate li:hover::before, .nav_cate .active::before{width: 100%; transition:all .5s ease;}
.nav_cate li:hover a, .nav_cate .active a{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.nav_cate{justify-content: flex-start; gap: 10px 5vw;}
	.nav_cate a{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.nav_cate a{padding: 4px 0; font-size: 15px;}
}





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

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






/* Paging */
.in_paging{
	--size:36px;
	--border_radius:1rem;
}
.in_paging ul{display:flex; flex-wrap:wrap;justify-content:center;align-items:center;text-align: center;}
.in_paging li{min-width: var(--size);margin: 0 4px;}
.in_paging a,.in_paging span {display:block;padding: 0 10px; height: var(--size); line-height:calc(var(--size) - 2px);font-size:14px;color:#666;background:#FFF;box-sizing: border-box; border:1px solid #CCC; border-radius:var(--border_radius);overflow:hidden;}
.in_paging i {margin-top:14px;width:100%;font-size:13px;color:#888;}
.in_paging a:hover,.in_paging .curr_page a,.in_paging .curr_page span {border-color:var(--i_color) !important;background:var(--i_color);color:#FFF !important}

@media screen and (max-width:768px) {
	.in_paging{--size:28px;}
}






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

.pTitleInfo{margin: .4rem auto .5rem; text-align: center;}
.pTitleInfo i{font-size: 0.18rem; color: #666;}
.pTitleInfo h1{font-size: 0.38rem; color: #333;}
.pModel{font-size: 0.3rem; color: #FF7C00; line-height: 1.5;}

.pBanner_list{position:relative; overflow:hidden}
.pBanner_list .swiper-wrapper{display:flex; position:relative; width:100%}
.pBanner_list li{flex-shrink:0; position:relative;}
.pBanner_list li span{display: block; width: 100%; aspect-ratio: 1 / 1;}
.pBanner_list li img{width: 100%; height: 100%; object-fit: contain; transform: scale(.55, .55); object-fit: contain; transition:all .8s ease;}

.pBanner_list .swiper-slide-active img{transform: scale(1, 1) !important;}

.pBanner-prev,.pBanner-next{position:absolute; top:50%; transform:translate(0,-50%); width:.4rem; height:.4rem; background: #8A8A8A; border-radius:50%; z-index:3; cursor:pointer; outline:none; user-select:none}
.pBanner-prev{left:0;}
.pBanner-next{right:0;}
.pBanner-prev iconify-icon,.pBanner-next iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.3rem; color:#FFF;}
.pBanner_list .swiper-button-disabled{cursor:not-allowed}
.pBanner-prev:hover,.pBanner-next:hover{background: var(--i_color);}

.pBanner-pagination{display:none;}

@media screen and (max-width:1440px) {
	.pTitleInfo{margin-bottom: 0.4rem;}
}
@media screen and (max-width:1024px) {
	.pTitleInfo{margin: 20px auto 30px;}
	.pTitleInfo i{font-size: 16px;}
	.pTitleInfo h1{font-size: 20px;}
	.pModel{font-size: 26px;}

	.pBanner-prev,.pBanner-next{display: none;}
	.pBanner-pagination{display:flex;}
}
@media screen and (max-width:560px) {
	.pTitleInfo{margin: 20px auto 20px;}
	.pTitleInfo i{font-size: 13px;}
	.pTitleInfo h1{margin: 4px 0; font-size: 16px;}
	.pModel{font-size: 20px;}

	.pBanner_list li img{transform: scale(.8, .8);}
}







.pFourPic{}

@media screen and (min-width:769px) {
	.pFourPicBox{
		width: 100%;
		aspect-ratio: 144 / 70;
		display: grid;
		grid-template-columns: repeat(10, 1fr);
		grid-template-rows: auto auto;
		gap: .2rem;
	}
	.pFourPicBox li{grid-column: span 3; height: 100%; position: relative; background: #CCC; border-radius:.14rem; overflow: hidden;}
	.pFourPicBox li:nth-child(1){grid-row: span 2; grid-column: span 4;}
	.pFourPicBox li:nth-child(4){grid-column: span 6;}

	.pFourPicBox li img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}
	.pFourPicBox li p{position: absolute;top: .2rem; left: .2rem; font-size: 0.2rem; color: #FFF;}
}

@media screen and (max-width:1440px) {
	.pFourPicBox li p{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.pFourPicBox li p{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.pFourPicBox{display:flex; flex-wrap:wrap; gap: 30px 4%;}
	.pFourPicBox li{width: 48%;}
	.pFourPicBox li img{width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius:.1rem;}
	.pFourPicBox li p{margin-top: 0.12rem; text-align: center; font-size: 16px; color: #444;}
}
@media screen and (max-width:560px) {
	.pFourPicBox li p{font-size: 14px;}
}





.pCoverPic{}

.pCoverPicBox{height: auto;}
.pCoverPicBox .item{width: 100%; aspect-ratio: 4 / 2; overflow: hidden; -webkit-border-radius:6px; border-radius:6px; position: sticky; position: -webkit-sticky; top: 1.6rem; margin-bottom: 1.6rem;}
.pCoverPicBox .item img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

/* .pCoverPicBox .cardRound{border-radius:0 !important;} */

.pCoverPicBox .play{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); cursor: pointer; z-index: 4;}
.pCoverPicBox .play iconify-icon{font-size: 0.5rem;}

@media screen and (max-width:1024px) {
	.pCoverPic{margin-bottom: 50px;}
	.pCoverPicBox .item{position: relative; top: 0; margin: 0 0 34px;}
}
@media screen and (max-width:768px) {
	.pCoverPicBox .play iconify-icon{font-size: 40px;}
}
@media screen and (max-width:560px) {
	.pCoverPicBox .item{margin-bottom: 20px;}
	.pCoverPicBox .play iconify-icon{font-size: 34px;}
}






.pAdv{}

.pAdv_cont{min-height: 70vh; position: relative;}

.pAdv_list{position:absolute; top:50%; transform:translate(0,-50%); left: 0; width: 100%; display:flex; flex-wrap:wrap; justify-content: space-between; gap: .7rem 40%; z-index: 3;}
.pAdv_list dt{width: 25%; text-align: center; position: relative;}
.pAdv_list dt img{height: 0.32rem;}
.pAdv_list h5{margin: .1rem auto .1rem; font-size: 0.22rem; color: var(--i_color); font-weight: 600;}
.pAdv_list p{font-size: 0.18rem; color: #555; line-height: 1.8;}

.pAdv_list dt:nth-child(1),.pAdv_list dt:nth-child(5){left: 8%;}
.pAdv_list dt:nth-child(2),.pAdv_list dt:nth-child(6){right: 8%;}

.pAdv_center{margin: 0 auto; width: 45%; aspect-ratio: 1 / 1; position: relative; top: 0.3rem;}
.pAdv_pic{position:absolute; left:50%; transform:translate(-50%,0); top: 0; max-width: 70%; height: 80%; object-fit: contain; z-index: 2;}
.pAdv_bg{position:absolute; left:50%; transform:translate(-50%,0); bottom: 0; width: 100%; animation:scaling 8s infinite linear}
@keyframes scaling{
	0% {width:100%}
	50% {width:110%}
	100% {width:100%}
}

@media screen and (max-width:1440px) {
	.pAdv_list dt:nth-child(1),.pAdv_list dt:nth-child(5){left: 6%;}
	.pAdv_list dt:nth-child(2),.pAdv_list dt:nth-child(6){right: 6%;}

	.pAdv_list h5{font-size: 0.2rem;}
	.pAdv_list p{font-size: 0.16rem;}
}
@media screen and (max-width:1200px) {
	.pAdv_list{gap: .4rem 40%;}
	.pAdv_list h5{font-size: 0.18rem;}
	.pAdv_list p{font-size: 0.15rem; line-height: 1.5;}
}
@media screen and (max-width:1024px) {
	.pAdv_cont{min-height: auto;}
	.pAdv_center{width: 90%; max-width: 550px;}

	.pAdv_list{margin-top: 80px; position: initial; transform: none; top: initial; gap: 40px 4%;}
	.pAdv_list dt{width: 48%; left: 0 !important; right: 0 !important;}
}
@media screen and (max-width:768px) {
	.pAdv_list dt img{height: 28px;}
	.pAdv_list h5{font-size: 16px;}
	.pAdv_list p{font-size: 13px;}
}
@media screen and (max-width:560px) {
	.pAdv .i_tit{margin-bottom: 24px;}

	.pAdv_list{margin-top: 50px; gap: 26px 0;}
	.pAdv_list dt{width: 100%; text-align: left;}
	.pAdv_list dt span{margin-bottom: 14px; display:flex; flex-wrap:wrap; align-items: center; gap: 0 14px;}
	.pAdv_list dt img{height: auto; width: 28px;}
	.pAdv_list h5{margin: 0 0;}
}







.pParameters{background:url(static/images/p-parameters-bg.webp) no-repeat bottom center; background-size: 100%;}

.pParameters_navBox{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .3rem; box-sizing: border-box; padding: .16rem; border-radius:.1rem; position:relative; box-shadow: 0 0 .16rem rgb(0 0 0 / 15%); background: #F4F4F4; overflow:hidden}

.pParameters_nav{width: 100%; overflow: hidden;}
.pParameters_nav .swiper-wrapper{display:flex; position:relative; width:100%}
.pParameters_nav li{display:flex; flex-wrap:wrap; align-items: center; justify-content: center; flex-shrink:0; position:relative; border-radius:.1rem; cursor: pointer; transition:all .5s ease;}
.pParameters_nav li p{padding: .1rem .1rem; text-align: center; font-size: 0.17rem; color: #555; transition:all .5s ease;}
.pParameters_nav li.active{background: var(--i_color);}
.pParameters_nav li.active p{color: #FFF;}

.pParameters-navigation{flex-shrink: 0; margin-left: auto; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .08rem;}
.pParameters-navigation>div{width:.34rem; height:.34rem; border-radius:50%; background: #8A8A8A; z-index:3; cursor:pointer; outline:none; user-select:none; position: relative;}
.pParameters-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.24rem; color:#FFF;}
.pParameters_nav .swiper-button-disabled{cursor:not-allowed}
.pParameters-navigation>div:hover{background: var(--i_color);}

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {
	.pParameters_nav li p{font-size: 0.16rem;}
}
@media screen and (max-width:1024px) {
	.pParameters_nav li p{font-size: 14px;}
	.pParameters-navigation>div{width: 30px; height: 30px;}
}
@media screen and (max-width:768px) {
	.pParameters_navBox{gap: 0 20px;}
}
@media screen and (max-width:560px) {
	.pParameters_navBox{padding: 10px; border-radius:6px;}
	.pParameters_nav li{border-radius:8px;}
	.pParameters_nav li p{font-size: 13px;}

	.pParameters-navigation>div{width: 24px; height: 24px;}
}





.pParameters_show{background: #FFF; padding: .5rem .6rem; border-radius:.14rem; box-shadow: 0 0 .1rem rgb(0 0 0 / 10%);}
.pParameters_show .box{height: 0; opacity: 0; visibility: hidden; position: relative; top: 0.2rem;}
.pParameters_show .box.active{height: auto; opacity: 1; visibility: visible; top: 0; transition:all .5s ease;}

.pParameters_cont{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 4%;}
.pParameters_cont>img{flex-shrink: 0; width: 32%;}

.pParameters_tableBox{width: 100%;}
.pParameters_table{height: 45vh; overflow-y: auto;}
.pParameters_table::-webkit-scrollbar{width:3px;}
.pParameters_table::-webkit-scrollbar-thumb{background: var(--i_color)}

.pParameters_table table {
	width: 100% !important;
	max-width: 100% !important;
	border-collapse: collapse !important;
	border-spacing: 0 !important;
	border: none;
	position: relative;
}
.pParameters_table table::before{content: ''; position: absolute; left: 50%; width: 0; height: 100%; border: 1px dashed #DDD;}
.pParameters_table tbody {
	width: 100% !important;
	max-width: 100% !important
}
.pParameters_table table tr{display:flex; flex-wrap:nowrap; gap: 0 4%;}
.pParameters_table table td {font-size: 0.18rem; width: 100%; box-sizing: border-box; padding: 10px; border: none;}
.pParameters_table table tr td:nth-child(1){flex-shrink: 0; width: 48%; color: #666;}
.pParameters_table table tr td:nth-child(n+3){display: none;}

.pParameters_tableBox .btn{display:flex; flex-wrap:wrap; gap: 18px .3rem;}

@media screen and (max-width:1440px) {
	.pParameters_show{padding: .5rem 0.4rem;}
	.pParameters_tableBox .btn{gap: 18px .2rem;}
}
@media screen and (max-width:1200px) {
	.pParameters_cont>img{width: 30%;}
	.pParameters_table table td{font-size: 0.17rem;}
}
@media screen and (max-width:1024px) {
	.pParameters_table table td{font-size: 15px; padding: 6px;}
}
@media screen and (max-width:768px) {
	.pParameters_show{padding: 40px 20px;}
	.pParameters_cont{flex-wrap: wrap; gap: 30px 0;}
	.pParameters_cont>img{width: 100%; max-width: 400px; display: block; margin: 0 auto;}

	.pParameters_table{height: auto; overflow: hidden;}
}
@media screen and (max-width:560px) {
	.pParameters_show{padding: 30px 20px; border-radius:8px;}

	.pParameters_table table td{font-size: 13px;}

	.pParameters_tableBox .btn{gap: 12px 10px;}
}






.pCoop{width: 100%; aspect-ratio: 192 / 94; background:url(static/images/coop-bg.webp) no-repeat center; background-size: cover; position: relative;}

.pCoop_list{position:absolute; top:0; left:0; width:100%; height:100%;}
.pCoop_list dl{width: 100%; height: 100%; background:url(static/images/coop-line.webp) no-repeat center; background-size: cover; position: relative;}
.pCoop_list dt{width: 1.3rem; height: 1.3rem; background: #FFF; border-radius:50%; box-shadow: 0 0 0.14rem rgb(128 219 54 / 30%); position: absolute;}
.pCoop_list .size1{width: 1.3rem; height: 1.3rem;}
.pCoop_list .size2{width: 1rem; height: 1rem;}
.pCoop_list .size3{width: .8rem; height: .8rem;}
.pCoop_list dt img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 100%; height: 100%; object-fit: contain;}

.pCoop_list dt:nth-child(1){top: 20%; left: 12%;}
.pCoop_list dt:nth-child(2){bottom: 25%; left: 11%;}
.pCoop_list dt:nth-child(3){top: 30%; left: 19%;}
.pCoop_list dt:nth-child(4){bottom: 13%; left: 23%;}
.pCoop_list dt:nth-child(5){top: 19%; left: 32.5%;}
.pCoop_list dt:nth-child(6){bottom: 24%; left: 29%;}
.pCoop_list dt:nth-child(7){top: 10.5%; right: 44%;}
.pCoop_list dt:nth-child(8){bottom: 16%; left: 41%;}
.pCoop_list dt:nth-child(9){top: 16%; right: 32%;}
.pCoop_list dt:nth-child(10){bottom: 43%; right: 26.5%;}
.pCoop_list dt:nth-child(11){bottom: 10%; right: 36%;}
.pCoop_list dt:nth-child(12){top: 29%; right: 21.2%;}
.pCoop_list dt:nth-child(13){bottom: 21%; right: 23%;}
.pCoop_list dt:nth-child(14){top: 23%; right: 12.3%;}
.pCoop_list dt:nth-child(15){bottom: 28%; right: 10.7%;}

.pCoop_tit{position:absolute; top:50%; transform:translate(0,-50%); left: 0; width: 100%; z-index: 2;}
.pCoop_tit .t{width: 30vw; margin: 0.24rem auto 0; text-align: center; font-size: 0.18rem; color: #777; line-height: 1.8;}

.pLogo_list{display: none;}

@media screen and (min-width:1025px) {
	.move4s {
		animation: bounceIn-infinite2 4s linear infinite;
		-webkit-animation: bounceIn-infinite2 4s linear infinite;
		-moz-animation: bounceIn-infinite2 4s linear infinite;
		-o-animation: bounceIn-infinite2 4s linear infinite;
		-ms-animation: bounceIn-infinite2 4s linear infinite;
	}
	.move5s {
		animation: bounceIn-infinite2 5s linear infinite;
		-webkit-animation: bounceIn-infinite2 5s linear infinite;
		-moz-animation: bounceIn-infinite2 5s linear infinite;
		-o-animation: bounceIn-infinite2 5s linear infinite;
		-ms-animation: bounceIn-infinite2 5s linear infinite;
	}
	.move6s {
		animation: bounceIn-infinite2 6s linear infinite;
		-webkit-animation: bounceIn-infinite2 6s linear infinite;
		-moz-animation: bounceIn-infinite2 6s linear infinite;
		-o-animation: bounceIn-infinite2 6s linear infinite;
		-ms-animation: bounceIn-infinite2 6s linear infinite;
	}
}
@-webkit-keyframes bounceIn-infinite2 {
	0% {
		-webkit-transform: translate(0, 0);
	}
	20% {
		-webkit-transform: translate(0, 12px);
	}
	50% {
		-webkit-transform: translate(0, 0);
	}
	70% {
		-webkit-transform: translate(0, -12px);
	}
	100% {
		-webkit-transform: translate(0, 0);
	}
}
@keyframes bounceIn-infinite2 {
	0% {
		transform: translate(0, 0);
	}
	20% {
		transform: translate(0, 12px);
	}
	50% {
		transform: translate(0, 0);
	}
	70% {
		transform: translate(0, -12px);
	}
	100% {
		transform: translate(0, 0);
	}
}

@media screen and (max-width:1440px) {
	.pCoop_list .size1{width: 1rem; height: 1rem;}
	.pCoop_list .size2{width: .9rem; height: .9rem;}
	.pCoop_list .size3{width: .7rem; height: .7rem;}
}
@media screen and (max-width:1366px) {
	.pCoop_tit .t{font-size: 0.17rem;}
}
@media screen and (max-width:1200px) {
	.pCoop_list .size1{width: .9rem; height: .9rem;}
	.pCoop_list .size2{width: .74rem; height: .74rem;}
	.pCoop_list .size3{width: .6rem; height: .6rem;}
}
@media screen and (max-width:1024px) {
	.pCoop{aspect-ratio:initial; padding: 70px 0 80px;}
	.pCoop_list{display: none;}

	.pCoop_tit{position: initial; top: initial; transform: none;}
	.pCoop_tit .t{width: 100%; margin-top: 16px; font-size: 15px;}

	.pLogo_list{display: block; position:relative; overflow:hidden}
	.pLogo_list .swiper-wrapper{
		display:flex; position:relative; width:100%;
		-webkit-transition-timing-function: linear !important;
		-moz-transition-timing-function: linear !important;
		-ms-transition-timing-function: linear !important;
		-o-transition-timing-function: linear !important;
		transition-timing-function: linear !important;
	}
	.pLogo_list li{flex-shrink:0; position:relative; aspect-ratio: 1 / 1; border-radius:50%; background: #FFF;}
	.pLogo_list img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 100%; height: 100%; object-fit: contain;}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:560px) {
	.pCoop_tit .t{font-size: 14px;}
}







.pSolutions{}

.pSolutions_list{display:flex; flex-wrap:wrap; flex-direction: column; gap: .5rem 0;}
.pSolutions_list dt{display:flex; flex-wrap:nowrap; gap: 0 5%;}

.pSolutions_list .txt{margin-top: 0.4rem; width: 100%;}
.pSolutions_list .txt span{display: block; margin-top: 0.3rem; width: 80%; color: #555;}

.pSolutions_list .pic{flex-shrink: 0; width: 46%;}
.pSolutions_list .pic img{width: 100%; border-radius:.14rem 0 0 .14rem;}

.pSolutions_list dt:nth-child(even) .pic{order: -1;}
.pSolutions_list dt:nth-child(even) .pic img{border-radius:0 .14rem .14rem 0;}

@media screen and (max-width:1024px) {
	.pSolutions_list{gap: 40px 0;}
	.pSolutions_list .txt{margin-top: 20px;}
	.pSolutions_list .txt span{width: 100%;}
}
@media screen and (max-width:768px) {
	.pSolutions_list dt{flex-wrap: wrap; gap: 28px 0; padding-left: 3%; padding-right: 3%;}
	.pSolutions_list .pic{order: -1; width: 100%;}
	.pSolutions_list .pic img{border-radius:10px !important;}
	.pSolutions_list .txt{margin: 0 0;}
}
@media screen and (max-width:560px) {
	.pSolutions_list{gap: 30px 0;}
	.pSolutions_list .txt h5{font-size: 17px;}
	.pSolutions_list .txt span{margin-top: 10px; font-size: 14px;}
}






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

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

.pItem-prev,.pItem-next{position:absolute; top:50%; transform:translate(0,-50%); width:.4rem; height:.4rem; background: #8A8A8A; border-radius:50%; z-index:3; cursor:pointer; outline:none; user-select:none}
.pItem-prev{left:-.56rem;}
.pItem-next{right:-.56rem;}
.pItem-prev iconify-icon,.pItem-next iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.24rem; color:#FFF;}
.pItem_list .swiper-button-disabled{cursor:not-allowed}
.pItem-prev:hover,.pItem-next:hover{background: var(--i_color);}

.pItem-pagination{display:none}

@media screen and (max-width:1024px) {
	.pItem-prev,.pItem-next{display: none;}
	.pItem-pagination{display: flex;}
}






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

.pForm_nav{padding: 0 5%; display:flex; flex-wrap:wrap; gap: 0 .3rem;}
.pForm_nav li{background: #F3F3F3; border-radius:.12rem .12rem 0 0; cursor: pointer;}
.pForm_nav p{padding: .1rem .26rem; font-size: 0.18rem;}

.pForm_nav li.active{background: var(--jb_color);}
.pForm_nav li.active p{color: #FFF;}

.pForm_show{background: #FFF; padding: .3rem 5%;}
.pForm_show .item{height: 0; opacity: 0; visibility: hidden; position: relative; top: 0.3rem;}
.pForm_show .item.active{height: auto; opacity: 1; visibility: visible; top: 0; transition:all .5s ease;}

@media screen and (max-width:1024px) {
	.pForm_nav{padding: 0 4%;}
	.pForm_nav p{font-size: 16px;}

	.pForm_show{padding: 38px 4%;}
}
@media screen and (max-width:768px) {
	.pForm_nav p{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.pForm_nav{gap: 0 10px;}
	.pForm_nav li{border-radius:8px 8px 0 0;}
	.pForm_nav p{padding: 8px 16px 6px; font-size: 13px;}

	.pForm_show{padding: 30px 4%;}
}






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

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

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

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

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

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

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

