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

:root {
	--i_color: #005BA2;
	--header_height:1rem;
}
@media screen and (max-width:1024px) {
	:root {
		--header_height: 60px;
	}
}




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

@media screen and (min-width:1921px) {
	.wrap{max-width: none;}
}
@media screen and (max-width:1024px) {
	.wrap{width: 94%;}
}


.wrap_l{padding-left: 10.8vw;}
.wrap_r{padding-right: 10.8vw;}

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






/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2014;
}
header::before{content: '';position: absolute;left: 0; top: 0; width: 100%; height: 100%; -webkit-backdrop-filter: blur(0); backdrop-filter: blur(0); background: none; transition:all 1s ease;}
header.header_on::before, header.header_on_fixed::before, header:hover::before{background: rgb(0 91 162 / 70%); -webkit-backdrop-filter: blur(16.5px); backdrop-filter: blur(16.5px)}

@media screen and (max-width:1024px) {
	header::before{background: var(--i_color) !important;}
}

header .wrap2{display:flex; flex-wrap:nowrap; align-items: center; position: relative;}






/* 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: 2rem; max-height: 75%;}
@media screen and (max-width:1366px) {
	.logo img {max-height: 65%;}
}
@media screen and (max-width:1024px) {
	.logo img {max-height: 70%;}
}





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

	.i_nav>li {position: relative;}

	.i_nav>li>a {
		text-align: center;
		height: var(--header_height); display:flex; flex-wrap:wrap; align-items: center; justify-content: center;
		font-size: .18rem;
		color: #FFF;
		white-space: nowrap;
		position: relative;
		font-weight: 300;
	}
	.i_nav>li>a::before{content: ''; position: absolute; left: 0; bottom: 35%; width: 0; height: 1px; background: #FFF; transition:all .5s ease;}
	.i_nav>.current-menu-item>a::before,
	.i_nav>.current-category-ancestor>a::before,
	.i_nav>.current-post-ancestor>a::before,
	.i_nav>.current-menu-ancestor>a::before,
	.i_nav>.current-menu-parent>a::before,
	.i_nav>li:hover>a::before,
	.i_nav>li.active>a::before
	{width: 100%;}

	.i_nav .sub-menu {
		display: none;
		position: absolute;
		left: 0;
		top: var(--header_height);
		min-width: 1.5rem;
		background: #FFF;
		box-shadow: 4px 4px 16px rgb(0 0 0 / 20%);
		font-size: 0;
	}

	.i_nav .sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu li:not(:last-child):before {content: '';position:absolute; bottom: 0; left: 0; width: 100%;height: 1px; background: #EEE;}
	.i_nav .sub-menu a {
		display: block;
		padding: 0 .2rem;
		font-size: 0.15rem;
		color: #666;
		line-height: 0.44rem;
		font-weight: 300;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: relative;
	}
	.i_nav .sub-menu .menu-item-has-children>a{padding-right: 0.46rem;}
	.i_nav .sub-menu .menu-item-has-children>a::after{content: '';position:absolute; top:50%; transform:translate(0,-50%); right: .1rem; width: .24rem; height: .24rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' fill-rule='evenodd' d='m10.207 8l-3.854 3.854l-.707-.707L8.793 8L5.646 4.854l.707-.708z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center; background-size: contain;}

	/* .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>li>.sub-menu>li:hover>a {
		color: var(--i_color);
	}

	.i_nav .sub-menu .sub-menu {
		display: none;
		top: 0; left: 100%;
		box-shadow:8px 4px 8px rgb(0 0 0 / 10%);
	}
	.i_nav .sub-menu .sub-menu a:hover{color: var(--i_color);}
}
@media screen and (max-width:1366px) {
	.i_nav>li>a{font-size: 0.17rem;}
}
@media screen and (max-width:1200px) {
	.i_nav{gap: 0 .3rem;}
	.i_nav>li>a{font-size: 0.16rem;}
}






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

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

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

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

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

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

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

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






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


.nav_menu.on i {
	opacity: 0
}

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

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

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





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




.top_search_ico{position: relative; font-size: 0; height: var(--header_height); display:flex; flex-wrap:wrap; align-items: center; cursor: pointer;}
.top_search_ico iconify-icon{font-size: var(--size);color: #FFF;-webkit-transition:all .5s ease; transition:all .5s ease;}
/* .top_search_ico.on iconify-icon{color: var(--i_color);} */
@media screen and (max-width:1024px) {
	.top_search_ico::before{display: none;}
}

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

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





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

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

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

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




.top_contact{border-color: #FFF !important;}
@media screen and (max-width:1024px) {
	.top_contact{display: none !important;}
}




.full_header_height{display: none; height: var(--header_height);}
@media screen and (max-width:1024px) {
	.full_header_height{display: block;}
}




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

.banner .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
.banner .swiper-wrapper {
	display: flex;
	position: relative;
	width: 100%;
	z-index: 1
}
.banner .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-shrink: 0;
	height: 0;
	padding-bottom: calc(100vh - var(--header_height));
	position: relative;
	overflow: hidden
}
.banner .swiper-slide>img,
.banner .swiper-slide>a>img {
	position:absolute; top:0; left:0; width:100vw; height:100%; object-fit: cover;
}

.banner-button{position:absolute; top:48%; transform:translate(0,-50%); width: 0.6rem;height: 0.6rem;box-sizing: border-box;cursor: pointer; z-index: 3;-webkit-transition:all .5s ease; transition:all .5s ease;}
.banner-button-prev{left: -1rem}
.banner-button-next{right: -1rem;}
.banner-button iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.5rem;color:#FFF;}
.banner:hover .banner-button-prev{left: .1rem;}
.banner:hover .banner-button-next{right: .1rem;}

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

@media screen and (max-width:1366px) {
	.banner-button{width: 0.4rem; height: 0.4rem;}
	.banner-button iconify-icon{font-size: 0.3rem;}
}
@media screen and (max-width:1024px) {
	.banner .swiper-slide{padding-bottom: 50%;}
	.banner-button-prev,.banner-button-next{display: none;}
}
@media screen and (max-width:560px) {
	.banner-pagination{bottom: 14px;}
}





.banner_text1{position:absolute; top:48%; transform:translate(0,-50%); left: 0; width: 100%;}
.banner_text1 span{display: block; width: 40%;}
.banner_text1 h2{padding-bottom: 0.2rem; margin-bottom: 0.2rem; font-size: 2.3vw; color: #FFF; font-weight: 600; line-height: 1.5; position: relative;}
.banner_text1 h2::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 6px; background:linear-gradient(to right, #FFF, transparent);}
.banner_text1 p{font-size: 0.18rem; color: #FFF; line-height: 1.7;}

@media screen and (max-width:1440px) {
	.banner_text1 h2{line-height: 1.4;}
}
@media screen and (max-width:1024px) {
	.banner_text1 span{width: 50%;}
	.banner_text1 h2::before{height: 4px;}
	.banner_text1 p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.banner_text1 span{width: 70%;}
	.banner_text1 h2{padding-bottom: 14px; margin-bottom: 10px; font-size: 3vw;}
	.banner_text1 h2::before{height: 3px;}
	.banner_text1 p{font-size: 15px;}
	.banner_text1 .i_more{margin-top: 20px;}
}
@media screen and (max-width:560px) {
	.banner_text1 span{width: 90%;}
	.banner_text1 h2{padding-bottom: 10px; margin-bottom: 12px; font-size: 4vw; line-height: 1.2;}
	.banner_text1 p{font-size: 11px; line-height: 1.3;}
	.banner_text1 .i_more{margin-top: 14px;}
}






/* Main */
main{position: relative;overflow: hidden;}
.mainBG{background: #F6F6F6;}


.i_tit{}
.i_tit h3{font-weight: 600;}
.i_tit h6{font-size: 0.18rem; margin-top: 0.1rem; color: #777; line-height: 1.6;}

.i_tit.white h3{color: #FFF;}
.i_tit.white h6{color: #FFF;}

.i_tit.center{text-align: center;}

@media screen and (max-width:1200px) {
	.i_tit h6{font-size: 0.16rem;}
}
@media screen and (max-width:1024px) {
	.i_tit h6{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.i_tit h6{font-size: 13px;}
}






.i_more{display: table; background:#999; border-radius:2rem; transition:all .5s ease;}
.i_more b{display: block; text-align: center; padding: .1rem .3rem; font-size: 0.18rem; color:#FFF; font-weight: 300; transition:all .5s ease;}

.i_more.white{background: #FFF;}
.i_more.white b{color: var(--i_color);}

.i_more.line{background: none; box-sizing: border-box; border: 1px solid #FFF;}

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

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

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






.secTit{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 10%;}
.secTit .i_more{flex-shrink: 0; margin-left: auto;}

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.secTit{flex-wrap: wrap; gap: 30px 0;}
	.secTit .i_tit{width: 100%;}
	.secTit .i_more{margin-left: 0;}
}
@media screen and (max-width:560px) {
	.secTit{gap: 20px 0;}
}






.pItem{display: block; box-sizing: border-box; padding: .16rem .16rem .34rem; text-align: center;}

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

.pItem .txt{margin: .1rem auto .3rem;}
.pItem .txt p{height: 0.58rem; font-size: 0.18rem; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.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{color: #FFF;}

@media screen and (max-width:1024px) {
	.pItem .txt{margin: 10px auto 20px;}
	.pItem .txt p{height: 48px; font-size: 15px;}
}
@media screen and (max-width:560px) {
	.pItem{padding: 10px 10px 26px;}
	.pItem .txt{margin: 10px auto 14px;}
	.pItem .txt p{height: 42px; font-size: 14px; line-height: 1.5;}
}






.public-swiper-btn{width: 0.5rem; height: 0.5rem; border-radius:50%; background: #FFF; cursor: pointer; position: relative;}
.public-swiper-btn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.3rem; color: #666;}
.swiper-button-disabled{cursor:not-allowed}
.public-swiper-btn:hover{background: var(--i_color);}
.public-swiper-btn:hover iconify-icon{color: #FFF;}

@media screen and (max-width:1200px) {
	.public-swiper-btn{width: 0.4rem; height: 0.4rem;}
	.public-swiper-btn iconify-icon{font-size: 0.26rem;}
}






.homeProduct{background: #F6F6F6;}

.homeProduct_nav{margin-left: auto;}
.homeProduct_nav li{display: table; margin: .2rem 0 .2rem auto; position: relative; cursor: pointer;}
.homeProduct_nav li::before{content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--i_color); transition:all .5s ease;}
.homeProduct_nav p{font-size: 0.2rem; color: #111; font-weight: 600; text-align: right;}

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

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {
	.homeProduct_nav p{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.homeProduct_nav{width: 100%;}
	.homeProduct_nav li{margin: 16px 0;}
	.homeProduct_nav p{text-align: left; font-size: 15px;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {
	.homeProduct .secTit{margin-bottom: 20px;}
}





.homeProduct_show{position: relative;}

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

.homeProduct_list{border-top: 1px solid #DDD; border-bottom: 1px solid #DDD; border-right: 1px solid #DDD; position:relative; overflow:hidden}
.homeProduct_list .swiper-wrapper{display:flex; position:relative; width:100%}
.homeProduct_list li{flex-shrink:0; position:relative; background:linear-gradient(to right, #F9FAFC, #EEF0F4); box-sizing: border-box; border-left: 1px solid #DDD;}



.homeProduct-prev,.homeProduct-next{position:absolute; top:50%; transform:translate(0,-50%);}
.homeProduct-prev{left: -.8rem;}
.homeProduct-next{right: -.8rem;}

.homeProduct-pagination{display:none}

@media screen and (max-width:1366px) {
	.homeProduct-prev{left: -.66rem;}
	.homeProduct-next{right: -.66rem;}
}
@media screen and (max-width:1200px) {
	.homeProduct-prev{left: -.54rem;}
	.homeProduct-next{right: -.54rem;}
}
@media screen and (max-width:1024px) {
	.homeProduct-prev,.homeProduct-next{display: none;}

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







.homeIndustries{}

.catBgSwitch{--line:rgb(255 255 255 / 40%); --navHeight:.7rem}
.catBgSwitch{position:relative; overflow:hidden}
.catBgSwitch::before{content: ''; display: block; padding-bottom: 42%;}

.catBg_pic{position:absolute; top:0; left:0; width:100%; height:100%;}
.catBg_pic::after{content: '';position: absolute; top:0; left:0; width:100%; height:100%; background: rgb(0 0 0 / 50%); z-index: 3;}
.catBg_pic dt{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:104%; height:104%;}
.catBg_pic dt.active{width: 100%; height: 100%; z-index: 2; transition:all .8s ease;}
.catBg_pic dt img{width: 100%; height: 100%; object-fit: cover;}

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

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





.catBg_nav{position:absolute; top:0; left:0; width: 30%; height: 100%; box-sizing: border-box; border-right: 1px solid var(--line); display:flex; flex-wrap:wrap; align-items: end; z-index: 4;}
.catBg_nav ul{width: 100%;}
.catBg_nav li{border-top: 1px solid var(--line); height: var(--navHeight); display:flex; flex-wrap:wrap; align-items: center; position: relative; cursor: pointer;}
.catBg_nav li::before{content: ''; position: absolute; left: 0; top: 0; width: 0; height: 100%; background:linear-gradient(to right, var(--i_color), rgb(0 91 162 / 58%));}
.catBg_nav li::after{content: ''; position:absolute; top:50%; transform:translate(0,-50%); right: .2rem; width: 0.2rem; height: 0.2rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 16'%3E%3Cpath fill='%23FFF' d='M1.5 13a.47.47 0 0 1-.35-.15c-.2-.2-.2-.51 0-.71L5.3 7.99L1.15 3.85c-.2-.2-.2-.51 0-.71s.51-.2.71 0l4.49 4.51c.2.2.2.51 0 .71l-4.5 4.49c-.1.1-.23.15-.35.15'/%3E%3C/svg%3E") no-repeat center; background-size: contain;}
.catBg_nav li a{display: block; width: 100%;}
.catBg_nav li img{display: none;}
.catBg_nav li p{width: 80%; font-size: 0.18rem; color: #FFF; position: relative;}

.catBg_nav li.active::before{width: 100%; transition:all .8s ease;}

@media screen and (max-width:1366px) {
	.catBg_nav li p{font-size: 0.17rem;}
}
@media screen and (max-width:1024px) {
	.homeIndustries{margin-bottom: 50px;}

	.catBg_nav{position: relative; width: 100%;}
	.catBg_nav ul{display:flex; flex-wrap:wrap; gap: 36px 2%; width: 94%; margin: 0 auto;}
	.catBg_nav li{width: 49%; height: auto; padding: 0 0; position: relative; align-items: flex-start;}
	.catBg_nav li::before,.catBg_nav li::after{display: none;}
	.catBg_nav li a{display: block; width: 100%;}
	.catBg_nav li img{display: block; width: 100%; height: 200px; object-fit: cover; border-radius:6px;}
	.catBg_nav li p{width: 100%; margin-top: 16px; font-size: 15px; color: #333;}
}
@media screen and (max-width:768px) {
	.catBg_nav li img{height: 160px;}
	.catBg_nav li p{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.catBg_nav ul{gap: 20px 4%;}
	.catBg_nav li{width: 48%;}
	.catBg_nav li img{height: 100px;}
	.catBg_nav li p{font-size: 13px; line-height: 1.5;}
}







.catBg_txt{position: absolute; right: 0; bottom: 0; width: 70%; height: calc(var(--navHeight) * 3 + 3px); box-sizing: border-box; border-top: 1px solid var(--line); z-index: 4;}
.catBg_txt .box{display: block; box-sizing: border-box; padding: 0 .5rem; height: 100%; display:flex; flex-wrap:wrap; align-items: center;}
.catBg_txt span{width: 80%;}
.catBg_txt h5{font-size: 0.24rem; color: #FFF; font-weight: 600;}
.catBg_txt p{margin-top: 0.2rem; font-size: 0.16rem; color: #FFF; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:4;}

.catBg_txt i{margin-left: auto; width: 0.6rem; height: 0.6rem; background: var(--i_color); border-radius:50%; position: relative;}
.catBg_txt i iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.3rem; color: #FFF;}

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






.homeAbout{background: #F6F6F6;}

.aboutCont{display:flex; flex-wrap:wrap;}
.aboutCont>span{width: 30%;}
.aboutCont>span h3{font-weight: 600;}
.aboutCont>span h3 i{color: var(--i_color); font-weight: 600; color:var(--i_color);}

.aboutCont article{margin-left: auto; width: 70%; font-size: 0.18rem; line-height: 1.6;}

@media screen and (max-width:1024px) {
	.aboutCont>span{width: 100%;}
	.aboutCont article{margin:30px 0 0; width: 100%; font-size: 15px;}
}
@media screen and (max-width:560px) {
	.aboutCont article{font-size: 14px;}
}





.aboutPic{width: 100%; position: relative; overflow: hidden;}
.aboutPic img{width: 100%;}

.v_btn{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); cursor: pointer;}
.v_btn i{display: block; width: 0.6rem; height: 0.6rem; background: rgb(255 255 255 / 80%); border-radius:50%; position: relative;}
.v_btn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.3rem; color: var(--i_color);}

.v_btn::before{content: '';position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); box-sizing: border-box; width: 100%; height: 100%; animation:scale 1.6s infinite linear; background: rgb(255 255 255 / 70%); border-radius:50%;}
@keyframes scale{
	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)
	}
}

@media screen and (max-width:1024px) {
	.aboutPic::before{content: ''; display: block; padding-bottom: 34%;}
	.aboutPic img{position:absolute; top:0; left:0; height:100%; object-fit: cover;}
}
@media screen and (max-width:768px) {
	.v_btn i{width: 50px; height: 50px;}
	.v_btn iconify-icon{font-size: 20px;}
}
@media screen and (max-width:560px) {
	.v_btn i{width: 40px; height: 40px;}
	.v_btn iconify-icon{font-size: 18px;}
}





.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:54%;left:46%;font-size:.4rem;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{padding: .3rem; background: #FFF;}
.aboutNum dl{display:flex; flex-wrap:nowrap; gap: 0 4%;}
.aboutNum dt{width: 100%; text-align: center;}

.aboutNum img{display: block; margin: 0 auto; height: 0.5rem;}
.aboutNum span{margin: .2rem 0 .14rem; display:flex; flex-wrap:nowrap; justify-content: center; align-items: baseline; gap: 0 .1rem;}
.aboutNum i{font-size: 0.36rem; color: var(--i_color); font-weight: bold;}
.aboutNum h6{font-size: 0.22rem; color: var(--i_color); font-weight: bold;}
.aboutNum p{font-size: 0.16rem; color: #666; line-height: 1.6;}

@media screen and (max-width:1366px) {
	.aboutNum i{font-size: 0.34rem;}
	.aboutNum p{font-size: .15rem;}
}
@media screen and (max-width:1024px) {
	.aboutNum img{height: 40px;}
	.aboutNum i{font-size: 30px;}
	.aboutNum h6{font-size: 16px;}
	.aboutNum p{font-size: 13px;}
}
@media screen and (max-width:768px) {
	.aboutNum dl{flex-wrap: wrap; justify-content: center; gap: 30px 4%;}
	.aboutNum dt{width: 30.66%;}
	.aboutNum img{height: 34px;}
	.aboutNum i{font-size: 24px;}
}
@media screen and (max-width:560px) {
	.aboutNum span{gap: 0 4px;}
	.aboutNum i{font-size: 20px;}
	.aboutNum h6{font-size: 13px;}
	.aboutNum p{font-size: 12px;}
}





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

.homeAdv_show{width: 45%; height: 200px; box-sizing: border-box; padding-right: 10px; overflow-y: auto;}
.homeAdv_show::-webkit-scrollbar{width:3px; height:8px}

.homeAdv_show dt{opacity: 0; visibility: hidden; height: 0; top: 0.3rem; position: relative;}
.homeAdv_show dt.active{opacity: 1; visibility: visible; height: auto; top: 0; transition:all.5s ease;}
.homeAdv_show article{font-size: 0.18rem; color: #FFF; line-height: 1.6;}

.homeAdv_nav{display:flex; flex-wrap:nowrap; gap: 0 1%;}
.homeAdv_nav li{width: 100%; cursor: pointer; position: relative;}
.homeAdv_nav li::before{content: '';position:absolute; top:0; left:0; width:100%; height:100%; background: rgb(255 255 255 / 40%); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);}
.homeAdv_nav span{box-sizing: border-box; padding: .3rem; position: relative; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .3rem;}
.homeAdv_nav p{font-size: 0.2rem; color: #FFF; line-height: 1.5;}

.homeAdv_nav i{flex-shrink: 0; margin-left: auto;}
.homeAdv_nav .p2{display: none;}
.homeAdv_nav img{height: 0.5rem;}

.homeAdv_nav li.active::before{background: rgb(255 255 255 / 70%)}
.homeAdv_nav li.active p{color: var(--i_color);}
.homeAdv_nav li.active .p2{display: block;}
.homeAdv_nav li.active .p1{display: none;}

@media screen and (max-width:1440px) {
	.homeAdv_nav p{font-size: 0.18rem;}
}
@media screen and (max-width:1200px) {
	.homeAdv_show{height: 160px;}
}
@media screen and (max-width:1024px) {
	.homeAdv_show{width: 100%;}
	.homeAdv_show article{font-size: 16px;}

	.homeAdv_nav span{padding: 20px;}
	.homeAdv_nav p{font-size: 15px;}
	.homeAdv_nav img{height: 40px;}
}
@media screen and (max-width:768px) {
	.homeAdv_nav{flex-wrap: wrap; gap: 20px 0;}
}
@media screen and (max-width:560px) {
	.homeAdv_show article{font-size: 14px;}
	.homeAdv_nav{gap: 14px 0;}
	.homeAdv_nav p{font-size: 13px;}
	.homeAdv_nav img{height: 30px;}
}







.homeNews{background: #F6F6F6;}

.homeNews_list{}

@media screen and (min-width:1025px) {
	.homeNews_list{width: 100%;position: relative;}
	.homeNews_list::before{content: '';display: block;padding-bottom: 44.6875%;}

	.homeNews_list ul{
		position: absolute;left: 0;top: 0;
		width: 100%;height: 100%;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(5, 1fr);
		gap: .26rem;
	}
	.homeNews_list li{grid-row:span 2; background: #FFF; position: relative; overflow: hidden;}
	.homeNews_list .coverPic{overflow: hidden;}
	.homeNews_list li:hover{box-shadow: 0 0 .1rem rgb(0 91 162 / 20%);}
	.homeNews_list .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}
	.homeNews_list .text{}
	.homeNews_list .text i{font-size: 15px;color: var(--i_color);}
	.homeNews_list .text p{margin: 8px 0 .2rem; font-size: 0.2rem; font-weight: 600; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;}
	.homeNews_list .text h6{font-size: 0.16rem;color: #666;line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

	.homeNews_list li:nth-child(1){grid-column: span 2;}
	.homeNews_list li:nth-child(1),.homeNews_list li:nth-child(2){grid-row:span 3}
	.homeNews_list li:nth-child(1) a,.homeNews_list li:nth-child(2) a{padding: 0 0;}
	.homeNews_list li:nth-child(1) a::after{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 50%; background:linear-gradient(to bottom, transparent, rgb(0 0 0 / 80%));}

	.homeNews_list li:nth-child(1) .coverPic{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
	.homeNews_list li:nth-child(1) .text{position: absolute;left: 0;bottom: 0;width: 100%;box-sizing: border-box; padding: .2rem .26rem; z-index: 2;}
	.homeNews_list li:nth-child(1) .text i{color: #FFF;}
	.homeNews_list li:nth-child(1) .text p{margin-bottom: 0; color: #FFF;}

	.homeNews_list li:nth-child(1) h6,.homeNews_list li:nth-child(2) h6{display: none;}

	.homeNews_list li:nth-child(2) .coverPic{position: relative; width: 100%; height: 60%;}
	.homeNews_list li:nth-child(2) .text{padding: .2rem .26rem 0;display:-webkit-flex; display:flex; flex-wrap:wrap;}

	.homeNews_list li:nth-child(n+3) a{display: block; box-sizing: border-box; padding: .26rem;}
	.homeNews_list li:nth-child(n+3) .coverPic{display: none;}
}

.homeNews_list li:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.homeNews_list li:hover p{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.homeNews_list .text p{-webkit-line-clamp:2;}
}
@media screen and (max-width:1200px) {
	.homeNews_list .text i{font-size: 14px;}
}
@media screen and (max-width:1024px) {
	.homeNews_list{}
	.homeNews_list li{margin-bottom: 24px; background: #FFF;}
	.homeNews_list a{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center;}
	.homeNews_list .coverPic{flex-shrink: 0; width:30%; position:relative; overflow:hidden}
	.homeNews_list .coverPic::before{content:""; display:block; padding-bottom:75%}
	.homeNews_list .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

	.homeNews_list .text{width: 100%; box-sizing: border-box; padding: 0 .3rem;}
	.homeNews_list .text i{font-size: 14px; color: var(--i_color);}
	.homeNews_list .text p{margin: 10px 0 18px; font-size: 16px; line-height: 1.4;}
	.homeNews_list .text h6{font-size: 14px;color: #999; line-height: 1.4;}
	.homeNews_list .text p,.homeNews_list .text h6{overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
}
@media screen and (max-width:768px) {
	.homeNews_list .text p{margin-bottom: 0;}
	.homeNews_list .text h6{display: none;}
}
@media screen and (max-width:560px) {
	.homeNews_list li{margin-bottom: 16px;}
	.homeNews_list .coverPic{width: 40%;}
	.homeNews_list .text{padding: 0 20px;}
	.homeNews_list .text p{font-size: 14px;}
}






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

.fTop{display:flex; flex-wrap:nowrap; align-items: center; border-bottom: 1px solid rgb(255 255 255 / 20%); gap: 0 4%;}
.fTop h2{color: #FFF; font-weight: 600;}
.fTop .i_more{flex-shrink: 0; margin-left: auto;}

.fCont{display:flex; flex-wrap:nowrap; justify-content: space-between; gap: 0 4%;}

.fTit{margin-bottom: 0.26rem; font-size: 0.24rem; color: #FFF; font-weight: 600;}

.fCont_contact{flex-shrink: 0; width: 30%;}
.fCont_contact ul{}
.fCont_contact li{margin-top: 0.26rem; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .1rem;}
.fCont_contact li iconify-icon{font-size: 0.24rem; color: rgb(255 255 255 / 70%);}
.fCont_contact li p{font-size: 0.16rem; color: #FFF; line-height: 1.6;}
.fCont_contact li a{color: #FFF;}
.fCont_contact li a:hover{text-decoration: underline;}

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

.fNav{max-width: 18%;}
.fNav ul{}
.fNav li{}
.fNav li a{display: block; padding: 6px 0; font-size: 0.16rem; color: rgb(255 255 255 / 70%); line-height: 1.5;}
.fNav li a:hover{color: #FFF; text-decoration: underline;}

.fCR{border-top: 1px solid rgb(255 255 255 / 20%); display:flex; flex-wrap:nowrap;align-items: center; gap: 0 .1rem;}
.fCR img{height: 0.5rem;}
.fCR p,.fCR a{font-size: 0.16rem; color: rgb(255 255 255 / 70%);}
.fCR a:hover{color: #FFF; text-decoration: underline;}

@media screen and (max-width:1024px) {
	.fCont_contact{width: 100%;}
	.fNav{display: none;}

	.fCR img{height: 36px;}
	.fCR p, .fCR a{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.fTop{padding-bottom: 20px;}
	.fTop h2{font-size: 18px;}

	.fTit{font-size: 20px;}
	.fCont_contact li iconify-icon{font-size: 18px;}
	.fCont_contact li p{font-size: 14px;}

	.fMedia a{width: 36px; height: 36px;}
	.fMedia iconify-icon{font-size: 20px;}

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







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

.banner__{width: 100%; overflow: hidden;}
.banner__>img{width: 100vw;}





/* Breadcrumb */
.in_position{padding:.2rem 0;position:relative;}
.in_position .wrap{display:flex;flex-wrap:wrap;align-items:center;}
.in_position a{display:block;font-size:15px;color:#333;position:relative;line-height:20px;}
.in_position a:first-child{padding-left: 0.26rem;}
.in_position a:first-child::before{
	content: '';
	position:absolute; top:50%; transform:translate(0,-50%);left: 0;
	width: 18px;height: 18px;
	background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="currentColor" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
	background-size: contain;
}
.in_position a:not(:last-child):after {content:">";margin:0 4px;color:#555}
.in_position a:last-child {color:var(--i_color) !important}
.in_position a:hover {color:var(--i_color)}
@media screen and (max-width:1024px) {
	.in_position {padding:.16rem 0;}
	.in_position a {font-size:14px}
}
@media screen and (max-width:560px) {
	.in_position {padding:.12rem 0;}
	.in_position a {font-size:13px}
}







.navLine{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; position: relative;}
.navLine::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background: #DDD;}

.navLine h2{display:flex; flex-wrap:wrap; align-items: center; font-size: 0.36rem; font-weight: 600;}

.navLine ul{margin-left: auto;display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 0 .6rem;}
.navLine li{position: relative;}
.navLine li::before{content: '';position: absolute;right: 0;bottom: 0;width: 0;height: 2px;background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}
.navLine li a{display: block;padding: .24rem 6px;font-size: 0.18rem;font-weight: bold;}

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

@media screen and (max-width:1024px) {
	.navLine ul{gap: 0 40px;}
	.navLine h2{font-size: 28px;}
	.navLine li a{padding: 20px 6px; font-size: 17px;}
}
@media screen and (max-width:768px) {
	.navLine{flex-wrap: wrap;}
	.navLine h2{width: 100%; font-size: 24px; margin-bottom: 20px;}
	.navLine ul{margin-left: 0; gap: 0 30px;}
	.navLine li a{padding: 10px 6px; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.navLine h2{margin-bottom: 12px;}
	.navLine ul{gap: 0 14px;}
	.navLine li a{font-size: 14px;}
}







.about__{}

.about__ .aboutCont>span{width: 100%;}

.about__ .aboutCont article{width: 100%; margin: 24px 0 0;}







.aboutAdv{background: #F6F6F6; position: relative;}
.aboutAdv .wrap{display:-webkit-flex; display:flex; flex-wrap:wrap; position: relative; z-index: 2;}

.aboutAdv_navBox{width: 32%;}
.aboutAdv_nav{padding-top: 0.26rem;margin-top: 0.2rem;border-top: 1px solid #DDD;}
.aboutAdv_nav li{cursor: pointer;}
.aboutAdv_nav h5{padding: .1rem 0; font-size: 0.18rem;}
.aboutAdv_nav span{display: none;}
.aboutAdv_nav li.active h5{color: var(--i_color);font-weight: bold;}

.aboutAdv_icon{margin: 2rem auto 0; width: 26.125%;}

.aboutAdv_show{margin-top: 0.5rem; width: 32%;}
.aboutAdv_show dt{opacity: 0; visibility: hidden; height: 0; position: relative; top: .2rem;}
.aboutAdv_show dt.active{opacity: 1; visibility: visible; height: auto; top: 0; -webkit-transition:all .5s ease; transition:all .5s ease;}
.aboutAdv_show dt>h5{margin-bottom: 0.2rem; font-size: 0.2rem; font-weight: bold; color: var(--i_color); line-height: 1.6;}
.aboutAdv_show dt span{font-size: 0.16rem;line-height: 1.8;}

.aboutAdv_mask{position: absolute;left: 0;bottom: -4px; width: 100%;}

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

	.aboutAdv_nav{padding-top: 10px;}
	.aboutAdv_nav li{border-bottom: 1px solid #DDD;}
	.aboutAdv_nav h5{padding: 20px 0; font-size: 17px;font-weight: bold;}
	.aboutAdv_nav h5.active{color: var(--i_color);font-weight: bold;}
	.aboutAdv_nav span{display: block; opacity: 0; visibility: hidden; position: relative; left: 20px; height: 0; margin-bottom: 0; font-size: 15px;color: #777; line-height: 1.6;}
	.aboutAdv_nav li.active span{opacity: 1; visibility: visible; height: auto; left: 0; margin-bottom: 16px; -webkit-transition:all .5s ease; transition:all .5s ease;}

	.aboutAdv_icon{margin: 30px auto 0;}

	.aboutAdv_show{display: none;}
}
@media screen and (max-width:560px) {
	.aboutAdv_nav h5{font-size: 16px;}
	.aboutAdv_nav span{font-size: 14px;}
	.aboutAdv_icon{margin: 20px auto 0;}
}









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

.historys_partner_box {position:relative}
.historys_partner_box::after {content:''; position:absolute; top:0.76rem; left:50%; transform:translate(-50%,-50%); width:100%; height:1px; background-color:var(--i_color)}
.historys_partner {position:relative}
.historys_partner_list {width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.historys_partner_list .swiper-wrapper {display:flex; position:relative; width:100%; z-index:1}
.historys_partner_list li {display:-webkit-box; display:-ms-flexbox; display:-webkit-flex; display:flex; flex-shrink:0; position:relative; cursor:pointer; flex-direction:column}
.historys_partner_list li h3 {height: 0.7rem; font-size:0.46rem; color:#222; font-weight: 600; transition:all 0.3s ease}
.historys_partner_list li i {display:block; width:0.12rem; height:0.12rem; background-color:var(--i_color); border-radius:0.15rem; margin-bottom:0.45rem; margin-left:0.4rem; position:relative; transition:all 0.3s ease}
.historys_partner_list li i::after {content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); -webkit-border-radius:50%; border-radius:50%; opacity:.3; width:0; height:0; background:var(--i_color)}
.historys_partner_list li:hover i::after {animation:dot 1.4s infinite ease}
.historys_text {background:rgba(247,247,247,0.7); border-radius:0.1rem; backdrop-filter:blur(6px); box-sizing:border-box; padding:0.4rem; border:1px solid transparent; transition:all 0.3s ease}
.historys_text h4 {width:0.12rem; height:0.12rem; border-radius:50%; border:0.02rem solid var(--i_color); margin-bottom:0.2rem; background-color:#fff; box-sizing:border-box; position:relative; z-index:2}
.historys_text h4::after {content:''; position:absolute; bottom:0.1rem; left:50%; transform:translate(-50%,0%); height:0.9rem; width:1px; background:var(--i_color); z-index:-1}
.historys_text h6{margin-bottom: 0.2rem; font-size: 0.2rem; font-weight: 600; color: var(--i_color);}
.historys_text h5 {font-size:0.17rem; color:#222; line-height:0.25rem; height:1.27rem; box-sizing:border-box; padding-right:0.05rem; overflow:auto; position:relative; z-index:2}
.historys_partner_list li:hover .historys_text {box-sizing:border-box; border:1px solid var(--i_color)}
.historys_partner_list li:hover h3 {color:var(--i_color)}
.historys_partner_list li:hover i {}
@keyframes dot {
	0% {width:100%; height:100%}
	50% {width:200%; height:200%}
	100% {width:100%; height:100%}
}

.historys_text h5::-webkit-scrollbar {width:1px;height:1px}
.historys_text h5::-webkit-scrollbar-thumb {-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2);background:var(--i_color)}
.historys_text h5::-webkit-scrollbar-track {-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2);border-radius:0;background:#F1F1F1}
.historys_partner .pt-pagination {display:none;text-align:center;margin:0.4rem auto 0}
.historys_partner .pt-pagination .swiper-pagination-bullet {width:0.1rem;height:0.1rem;cursor:pointer;display:inline-block;margin:0 0.05rem;background:#BBB;border-radius:50%;outline:none}
.historys_partner .pt-pagination .swiper-pagination-bullet-active {position:relative;background:var(--i_color)}
.historys_LR {display:flex;display:-webkit-flex;justify-content:center;gap:0.2rem;margin-top:0.6rem;}

@media screen and (max-width:1024px) {
	.historys_partner_list li h3{font-size: 30px;}
	.historys_partner_list li i{margin-left: 21px;}
	.historys_text h4::after{height: 76px;}
	.historys_text{padding: 20px;}
	.historys_text h6{font-size: 16px;}
	.historys_text h5{font-size: 13px;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {
	.historys_partner_list li h3{margin-left: 14px; font-size: 26px;}
}






.partners{--size:19%; --spac:8%}
.partners .wrap{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 10%;}

.partnersLogo{flex-shrink: 0; width: 44%; display:flex; flex-wrap:wrap; gap: .4rem var(--spac);}
.partnersLogo li{width: var(--size); border-radius:6px; box-shadow: 0 0 .1rem rgb(0 91 162 / 18%); position: relative; overflow: hidden; transition:all .5s ease;}
.partnersLogo li:nth-child(even){top: .6rem;}
.partnersLogo li:nth-child(14){top: 0; left: calc(var(--size) + var(--spac));}
.partnersLogo li::before{content: '';display: block; padding-bottom: 100%;}
.partnersLogo img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:80%; height:48%; object-fit: contain;}

.partnersLogo li:hover{transform:translate(0,-6px); box-shadow: -3px 4px .12rem rgb(0 91 162 / 40%);}

.partners .i_tit{width: 100%;}
.partners_t{font-size: 0.18rem; line-height: 1.6;}

@media screen and (max-width:1024px) {
	.partners_t{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.partners .wrap{flex-wrap: wrap; gap: 30px 0;}

	.partnersLogo{width: 100%;}
}
@media screen and (max-width:560px) {
	.partners{--size:20.5%; --spac:6%}
	.partnersLogo{gap:24px var(--spac);}
	.partners_t{font-size: 13px;}
}







.picList_vertical{display:flex; flex-wrap:wrap; gap: .5rem 4%;}
.picList_vertical li{width: 22%; text-align: center;}

.picList_vertical .pic{width:100%; box-sizing: border-box; padding: .14rem; background: #F6F6F6;}

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

.picList_vertical p{margin-top: 0.2rem; font-size: 0.16rem; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.picList_vertical li:hover .pic{box-shadow: 0 0 .1rem rgb(0 91 162 / 18%);}
.picList_vertical li:hover p{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.picList_vertical p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.picList_vertical{gap: 30px 4%;}
	.picList_vertical li{width: 48%;}
}






.navSub{}
.navSub ul{display:flex; flex-wrap:wrap; justify-content: center; gap: .24rem 3%;}
.navSub li{display:flex; flex-wrap:wrap; align-items: center; justify-content: center; background: #999; border-radius:2rem; overflow: hidden; cursor: pointer; position: relative;}
.navSub li::before{content: '';position: absolute; left: 0; bottom: 0; width: 0; height: 100%; background: var(--i_color);}
.navSub p{padding:.14rem .3rem; text-align: center; font-size: 0.18rem; color: #FFF; font-weight: 600; position: relative;}

.navSub li.active::before{width: 100%; transition:all .5s ease;}
.navSub li.active p{color: #FFF;}

@media screen and (max-width:1440px) {
	.navSub ul{gap: .24rem 2%;}
	.navSub p{font-size: 0.17rem;}
}
@media screen and (max-width:1024px) {
	.navSub p{padding: 10px 20px; font-size: 15px;}
}
@media screen and (max-width:560px) {
	.navSub ul{gap: 14px 2%;}
	.navSub p{font-size: 14px;}
}






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



.picList_horizontal{display:flex; flex-wrap:wrap; gap: .4rem 3%;}
.picList_horizontal li{width: 22.75%; text-align: center; background: #FFF; cursor: pointer;}

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

.picList_horizontal .txt{padding: 0 .16rem; height: 0.7rem; display:flex; flex-wrap:wrap; align-items: center; justify-content: center;}
.picList_horizontal p{padding-bottom: 4px; text-align: center; font-size: 0.16rem; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.picList_horizontal li:hover{box-shadow: 0 2px .1rem rgb(0 91 162 / 18%);}

@media screen and (max-width:1024px) {
	.picList_horizontal .txt{height: 60px;}
	.picList_horizontal p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.picList_horizontal{gap: 20px 4%;}
	.picList_horizontal li{width: 48%;}
}
@media screen and (max-width:560px) {
	.picList_horizontal p{font-size: 13px;}
}







.categoryBox{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 3%;}
.catSide{flex-shrink: 0; width: 24%; position: relative; }
.catList_show{width: 73%; min-height: 50vh; margin-left: auto; box-sizing: border-box; padding-left: 3%; border-left: 1px dashed #CCC;}

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







.cat_nav{}
.cat_nav_tit{display: none}

.cat_nav_list{position: relative;}
.cat_nav_list li{margin-bottom: 0.18rem; position: relative;}

.cat_fold_tit{display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;padding: 0 .2rem; gap: 0 .2rem; border-radius:2rem;}
.cat_fold_tit a{padding: .08rem 0; width: 100%; font-size: 0.18rem; font-weight: 600; line-height: 1.4;}
.cat_fold_tit iconify-icon{display: none; margin-left: auto;flex-shrink: 0;font-size: 0.22rem;cursor: pointer;-webkit-transition:all .5s ease; transition:all .5s ease;}
.active .cat_fold_tit{background: var(--i_color);}

.cat_fold_tit a:hover{color: var(--i_color);}
.active .cat_fold_tit a,.active .cat_fold_tit iconify-icon{color:#FFF;}
.active .cat_fold_tit iconify-icon{-webkit-transform:rotate(-180deg); transform:rotate(-180deg);}

.cat_fold_sub{padding: .12rem .2rem;}
.cat_fold_sub dt{box-sizing: border-box;}
.cat_fold_sub a{display: block;padding: .14rem .2rem;font-size: 0.16rem; position: relative; transition:all .5s ease;}

.cat_fold_sub a:hover, .cat_fold_sub dt.active a{color: var(--i_color);}
.cat_fold_sub a:hover::before, .cat_fold_sub dt.active a::before{background: var(--i_color);}

@media screen and (max-width:1024px) {
	.cat_nav{padding: 0;}

	.cat_nav_tit{border: none; padding: 12px 28px; margin: 0 0; display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;position: relative;z-index: 2; background: var(--i_color); border-radius:2rem;}
	.cat_nav_tit h4{font-size: 20px; color: #FFF; font-weight: 600;}
	.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: 50px 30px 20px; background: #FFF; margin-top: -24px;}
	.cat_nav_list li{margin-bottom: 14px;}
	.cat_nav_list li.active{}
	.cat_fold_tit a{padding: 14px 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:50px 20px 10px;}

	.cat_fold_tit a{padding: 6px 0; font-size: 15px;}
	.cat_fold_tit iconify-icon{font-size: 22px;}
	.cat_fold_sub a{padding: 8px 20px; font-size: 14px;}
	.cat_fold_sub a::before{width: 6px; height: 6px;}
}






.category_des{}
.category_name{margin-bottom: 0.2rem; position: relative;}
.category_name h1{position: relative; font-weight: 600; line-height: 1.4;}
.category_des span{color: #555;}

@media screen and (max-width:1024px) {
	.category_des{margin-top: 0;}
	.category_name{margin-bottom: 14px;}
}






.pList{display:flex; flex-wrap:wrap; gap: .3rem 2%;}
.pList li{width: 32%; background: #FFF; transition:all .5s ease;}
.pList li:hover{box-shadow: 0 0 .1rem rgb(0 91 162 / 18%);}
@media screen and (max-width:768px) {
	.pList{gap: 30px 4%;}
	.pList li{width: 48%;}
}
@media screen and (max-width:560px) {
	.pList{gap: 16px 4%;}
}









/* Paging */
.in_paging{
	--size:34px;
	--border_radius:2rem;
}
.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:1024px) {
	.in_paging{--size:30px;}
}
@media screen and (max-width:560px) {
	.in_paging{--size:26px;}
	.in_paging a,.in_paging span{font-size: 13px; padding: 0 6px;}
}








.p_data{background: #FFF; box-sizing: border-box; padding: .3rem; display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start; 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 #D6D6D6; background: #FFF; margin-left: auto; margin-right: auto; position:relative;overflow:hidden}
.p_atlas_list .swiper-wrapper {display:-webkit-flex;display:flex;position:relative;width:100%}
.p_atlas_list .swiper-slide {flex-shrink:0;position:relative;overflow:hidden;}
.p_atlas_list .swiper-slide::before {content:'';display:block;padding-bottom:100%;}
.p_atlas_list .swiper-slide img {position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;}

/* thumbnail */
.p_thumbnail_list {width:100%;margin:.2rem auto 0;box-sizing:border-box;position:relative;overflow:hidden}
.p_thumbnail_list .swiper-wrapper {display:-webkit-flex;display:flex;position:relative;width:100%}
.p_thumbnail_list .swiper-slide {box-sizing: border-box; border: 1px solid #D6D6D6; flex-shrink:0;background: #FFF; position:relative;overflow:hidden;cursor:pointer;}
.p_thumbnail_list figure {width:100%;position:relative;overflow:hidden;}
.p_thumbnail_list figure::before {content:'';display:block;padding-bottom:100%;}
.p_thumbnail_list figure img {opacity: .5; 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);}
.p_thumbnail_list .swiper-slide-thumb-active img{opacity: 1;}

.thumbnail-prev,.thumbnail-next {position:absolute;top:50%;transform:translate(0,-50%);width:.46rem;height:.46rem; 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:-.5rem}
.thumbnail-next {right:-.5rem}
.thumbnail-prev iconify-icon,.thumbnail-next iconify-icon {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:0.46rem;color:#444}
.thumbnail-prev:hover iconify-icon, .thumbnail-next:hover iconify-icon{color: var(--i_color);}
.p_atlas_list:hover .thumbnail-prev{left: 0;}
.p_atlas_list:hover .thumbnail-next{right: 0;}

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

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

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






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

.p_title h1{padding-bottom: 0.18rem; color: var(--i_color); font-weight: 600; line-height: 1.4; position: relative;}
.p_title h1::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--i_color);}

.p_des{}
.p_des>h3{margin-bottom: 0.16rem; font-size: 0.2rem; font-weight: 600;}
.p_des article{}

.p_share{border-top: 1px solid #DDD; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center; justify-content: flex-end; gap: 0 .1rem;}
.p_share>p{font-size: 0.18rem;}
.p_share dl{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;gap: 0 .1rem;}
.p_share dt a{display:block; width: 0.4rem; height: 0.4rem; background:#C1C1C1; border-radius:50%; position: relative;}
.p_share dt iconify-icon {position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.2rem;color:#FFF;}
.p_share dt:hover a{background: var(--i_color);}

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

@media screen and (max-width:1366px) {
	.p_des>h3{font-size: .18rem;}
}
@media screen and (max-width:1024px) {
	.p_title h1{margin-top: 0;}

	.p_des>h3{font-size: 16px;}
	.p_share>p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.p_title{margin: 0 0;}

	.p_des{margin: 20px 0;}
	.p_des>h3{margin-bottom: 10px; font-size: 16px;}

	.p_share>p{font-size: 14px;}
	.p_share dl{gap: 0 14px;}
	.p_share dt a{width: 30px; height: 30px;}
	.p_share dt iconify-icon{font-size: 18px;}

	.p_btn{margin-top: 20px; gap: 0 14px;}
}







.pContent{background: #FFF;}

.pContent_title{position: relative;}
.pContent_title::before{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: #E1E1E1;}
.pContent_title ul{display:flex; flex-wrap:wrap;}
.pContent_title li{position: relative; overflow: hidden; cursor: pointer;}
.pContent_title li::before{content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--i_color);}
.pContent_title p{text-align: center; padding: .14rem 0; font-size: 0.22rem; font-weight: 600; color: #333;}

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

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

.pContent_show article{font-size: 0.16rem; line-height: 1.7;}

@media screen and (max-width:1024px) {
	.pContent_title p{min-width:auto; padding: 10px 0; font-size: 16px;}
	.pContent_show article{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.pContent_title{margin-bottom: 24px;}
	.pContent_title p{padding: 10px 0; font-size: 15px;}

	.pContent_show article{font-size: 14px;}
}







.pFAQ{}
.pFAQ>h2{margin-bottom: 0.1rem; font-size: 0.22rem;font-weight: 600;}

.pFAQ_list{}
.pFAQ_list li{padding: .3rem; border-bottom: 1px solid #DDD;}
.pFAQ_list li h5{font-size: 0.2rem; font-weight: 600; line-height: 1.6; position: relative;}
.pFAQ_list li h5::before{content: ''; position:absolute; top:50%; transform:translate(0,-50%); left: -.3rem; width: .1rem; height: .1rem; background: var(--i_color); border-radius:50%;}
.pFAQ_list li span{display: block; margin-top: 0.2rem; font-size: 0.16rem; line-height: 1.8;}

@media screen and (max-width:1200px) {
	.pFAQ_list li h5{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.pFAQ_list li{padding: 20px 20px;}
	.pFAQ_list li h5::before{left: -20px; width: 8px; height: 8px;}
	.pFAQ_list li h5{font-size: 16px;}
	.pFAQ_list li span{margin-top: 10px; font-size: 14px;}
}
@media screen and (max-width:560px) {
	.pFAQ>h2{font-size: 18px;}
	.pFAQ_list li h5{font-size: 15px; line-height: 1.4;}
	.pFAQ_list li span{font-size: 13px;}
}






.pBottom{}

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






.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.5rem;height: 0.5rem; background: #999; position: relative; border-radius:50%;}
.p_view_other span iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: .3rem; color: #FFF;}
.p_view_other p{font-size: 0.16rem; color: #333; line-height: 1.5;}
.p_view_other p b{font-size: 0.18rem; color: #333; font-weight: 600;}

.p_view_other li:hover span{background: var(--i_color)}
.p_view_other li:hover p,.p_view_other li:hover p b{color: var(--i_color)}

@media screen and (max-width:1024px) {
	.p_view_other span{width: 40px; height: 40px;}
	.p_view_other span iconify-icon{font-size: 26px;}
	.p_view_other p,.p_view_other p b{font-size: 14px;}
}
@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;}
}
@media screen and (max-width:560px) {
	.p_view_other span{width: 34px; height: 34px;}
	.p_view_other span iconify-icon{font-size: 24px;}
}







.pLike{}

.pLike-navigation{margin-left: auto; display:flex; flex-wrap:wrap; gap: 0 .2rem;}

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

.pLike-pagination{display: none;}

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

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






.sol_list{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .4rem 2.5%;}
.sol_list li{width: 48.75%;}

.sol_list li a{position: relative;overflow: hidden;}
.sol_list li a::before{content: '';display: block;padding-bottom: 70.5%;}
.sol_list li a::after{
	content: '';
	position: absolute;left: 0;bottom: 0;
	width: 100%;height: 60%;
	background:-webkit-linear-gradient(top, transparent, rgb(0 0 0 / 75%)); background:linear-gradient(to bottom, transparent, rgb(0 0 0 / 75%));
}

.sol_list figure{position:absolute; top:0; left:0; width:100%; height:100%;}
.sol_list .pic{height: 100%;background: #000;}
.sol_list .pic img{width: 100%;height: 100%;object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.sol_list figcaption{position: absolute;top: 62%;box-sizing: border-box;padding: 0 .4rem;z-index: 2;-webkit-transition:all .5s ease; transition:all .5s ease;}
.sol_list figcaption p{font-size: 0.24rem;color: #FFF; font-weight: 600;}
.sol_list figcaption h6{margin-top: .16rem; font-size: 0.16rem;line-height: .24rem; color: #FFF;overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.sol_list em{
	position: absolute;bottom: .3rem; left: .4rem;
	width: 0.4rem; height: 0.4rem;
	background: #FFF;
	border-radius:50%;
	z-index: 2;
}
.sol_list em iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.18rem; color: #666;}
.sol_list li:hover em{background: var(--i_color);}
.sol_list li:hover em iconify-icon{color: #FFF;}

@media screen and (min-width:1025px) {
	.sol_list li:hover a::after{
		background:-webkit-linear-gradient(top, transparent, rgb(0 91 162 / 70%)); background:linear-gradient(to bottom, transparent, rgb(0 91 162 / 70%));
	}
	.sol_list li:hover .pic img{opacity: .5;}
	.sol_list li:hover figcaption{top:22%;}
	.sol_list li:hover figcaption h6{-webkit-line-clamp:4;}
}

@media screen and (max-width:1440px) {
	.sol_list figcaption{top: 58%;}
}
@media screen and (max-width:1200px) {
	.sol_list figcaption{top: 52%;}
}
@media screen and (max-width:1024px) {
	.sol_list{gap: .3rem 2.5%;}
	.sol_list figcaption{top: initial; bottom: 80px; padding: 0 20px;}
	.sol_list figcaption p{font-size: 16px;}
	.sol_list figcaption h6{margin-top: 8px; font-size: 13px;line-height: 1.5;}

	.sol_list em{bottom: 16px; left: 20px;}
}
@media screen and (max-width:768px) {
	.sol_list{gap: .2rem 2.5%;}
	.sol_list figcaption{bottom: 60px;}
	.sol_list figcaption p{font-size: 16px;}
	.sol_list figcaption h6{display: none;}
	.sol_list em{width: 30px; height: 30px;}
	.sol_list em iconify-icon{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.sol_list li{width: 100%;}
	.sol_list figcaption p{font-size: 16px;}
	.sol_list figcaption h6{font-size: 13px; display: -webkit-box;}
}







.aboutCulture{display:-webkit-flex; display:flex; flex-wrap:wrap;}

.aboutCulture_t{width: 50%; box-sizing: border-box; padding-right: 0.8rem;}

.culture-pagination{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .3rem .4rem;}

.culture-pagination .swiper-pagination-bullet{width: 0.46rem;height: 0.46rem; cursor:pointer; position: relative;}
.culture-pagination .swiper-pagination-bullet::before,.culture-pagination i{position:absolute;width: 12px;height: 12px;background: var(--i_color); -webkit-border-radius:50%; border-radius:50%;}
.culture-pagination .swiper-pagination-bullet::before{opacity: 0; content: ''; top:50%; left:50%; transform:translate(-50%,-50%);-webkit-transition:all .5s .3s; transition:all .3s .3s;}

.culture-pagination i{position:absolute; top: 0; left:50%; transform:translate(-50%,0);}
.culture-pagination p{position: absolute;left: 0;bottom: 0;width: 100%;font-size: 0.18rem; text-align: center; -webkit-transition:all .5s .1s; transition:all .5s .1s;}

.culture-pagination .swiper-pagination-bullet-active::before{opacity: 1; width: 100% !important; height: 100% !important;}
.culture-pagination .swiper-pagination-bullet-active i{top:50%; transform:translate(-50%,-50%);transition:all .5s ease;}
.culture-pagination .swiper-pagination-bullet-active p{bottom: 50%; transform:translate(0,50%);color: #FFF;}

.culture_list{position:relative; overflow:hidden}
.culture_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.culture_list .swiper-slide{flex-shrink:0; position:relative}
.culture_list .swiper-slide span{display: block; font-size: 0.16rem;line-height: 1.8;}

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


.aboutCulture_p{margin-left: auto; width: 50%;}
.aboutCulture_p img{width: 100%; height: 100%;object-fit: cover;}

@media screen and (max-width:1366px) {
	.culture-pagination{gap: .3rem .3rem;}
}
@media screen and (max-width:1024px) {
	.aboutCulture{margin: 50px 0 0; position: relative;}
	.aboutCulture_t{padding-top: 40px;padding-bottom: 40px; padding-right: 3vw; width: 100%; position: relative;z-index: 2;}
	.culture-pagination{gap: 30px 40px;}
	.culture-pagination .swiper-pagination-bullet{width: 40px;height: 40px;}
	.culture-pagination .swiper-pagination-bullet::before, .culture-pagination i{width: 10px;height: 10px;}
	.culture-pagination p{font-size: 16px;}
	.culture_list .swiper-slide h5{font-size: 20px;}
	.culture_list .swiper-slide span{font-size: 15px;}
	.culture_navigation>div{width: 40px;height: 40px;}
	.culture_navigation iconify-icon{font-size: 24px;}

	.aboutCulture_p{opacity: .1; position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
}
@media screen and (max-width:768px) {
	.culture_list .swiper-slide h5{font-size: 18px;}
}
@media screen and (max-width:560px) {
	.culture-pagination{gap: 20px 20px;}
	.culture-pagination .swiper-pagination-bullet{width: 30px;height: 30px;}
	.culture-pagination .swiper-pagination-bullet::before, .culture-pagination i{width: 8px;height: 8px;}
	.culture-pagination p{font-size: 14px;}

	.culture_list .swiper-slide h5{font-size: 16px;}
	.culture_list .swiper-slide span{font-size: 14px;}

	.culture_navigation{gap: 0 14px;}
	.culture_navigation>div{width: 36px;height: 36px;}
	.culture_navigation iconify-icon{font-size: 20px;}
}







.RD__team{background: #FFF;}

.RD__team__list{}
.RD__team__list li{display:flex; flex-wrap:wrap; background: #F6F6F6; position: relative;}

.RD__team__list .pic{width: 50%; position: relative; overflow: hidden;}
.RD__team__list .pic::before{content: '';display: block; padding-bottom: 64%;}
.RD__team__list .pic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; transition:all .5s ease;}
.RD__team__list .pic:hover img{transform: scale(1.05, 1.05);}

.RD__team__list .txt{width: 50%; display:flex; flex-wrap:wrap; align-items: center; box-sizing: border-box; padding: .3rem 5%;}
.RD__team__list .txt span{display: block; font-size: 0.18rem; line-height: 1.68;}

.RD__team__list li:nth-child(even) .txt{order: -1;}

@media screen and (max-width:1440px) {
	.RD__team__list .txt span{font-size: 0.16rem;}
}
@media screen and (max-width:1200px) {
	.RD__team__list .txt span{font-size: 0.15rem;}
}
@media screen and (max-width:1024px) {
	.RD__team__list .pic{order: -2; width: 100%;}
	.RD__team__list .txt{width: 100%; padding: 20px 3% 40px;}
}
@media screen and (max-width:560px) {
	.RD__team__list .txt span{font-size: 13px;}
}






.RD__center{background: #FFF;}

.aboutCE_list{position:relative; overflow:hidden}
.aboutCE_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.aboutCE_list .swiper-slide{flex-shrink:0; position:relative}
.aboutCE_list .swiper-slide span{display: block; width:100%; position:relative; overflow:hidden;}
.aboutCE_list .swiper-slide span::before{content:""; display:block; padding-bottom:57.5%}
.aboutCE_list .swiper-slide span img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}
.aboutCE_list .swiper-slide:hover img{transform: scale(1.05, 1.05);}

.aboutCE_control{position: relative; display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center;}
.aboutCE-prev,.aboutCE-next{background: #AAA;}
.aboutCE-prev iconify-icon,.aboutCE-next iconify-icon{color: #FFF;}

.aboutCE-pagination{display: none;}

.aboutCE_text{width: 40%; margin: 0 auto; text-align: center;}
.aboutCE_text p{font-weight: bold;}
.aboutCE_text h6{margin-top: 0.14rem;}

@media screen and (max-width:1024px) {
	.aboutCE_control{flex-wrap: wrap;}
	.aboutCE-prev,.aboutCE-next{display: none;}
	.aboutCE-pagination{display: block;}
	.aboutCE_text{width: 100%;}
	.aboutCE_text h6{font-size: 13px;}
}







.service__{display:flex; flex-wrap:nowrap; gap: 0 6%;}

.service__>span{flex-shrink: 0;}
.service__>span h3{font-weight: 600;}

.service__ article{margin-left: auto; width: 100%; font-size: 0.18rem; line-height: 1.6;}

@media screen and (max-width:1024px) {
	.service__ article{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.service__{flex-wrap: wrap; gap: 20px 0;}
	.service__ article{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.service__ article{font-size: 14px;}
}







.serAdv{}

.serAdv_tit{padding-bottom: 1.2rem; background:url(static/images/serAdv_tit_bg.webp) no-repeat center; background-size: cover;}

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






.serAdv_cont{background:url(static/images/serAdv_bg.webp) no-repeat center;background-size: cover;}
.serAdv_cont .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 .6rem;}

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

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

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

.serAdv_contShow{width: 100%; margin-top: -.6rem;}
.serAdv_contShow dt{position: relative; left: .5rem; height: 0; background: #FFF; box-shadow: var(--boxShadow); overflow: hidden; -webkit-transition:all .7s ease; transition:all .7s ease;}
.serAdv_contShow dt.active{height: auto; left: 0;}

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

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

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

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

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






.serProcess{}

.serProcess_list{display:flex; flex-wrap:nowrap;}
.serProcess_list li{border-right: 1px solid #DDD; width: 100%; box-sizing: border-box; padding: 0 .3rem; display:flex; flex-wrap:wrap; flex-direction: column; justify-content: space-between;}
.serProcess_list li:first-child{border-left: 1px solid #DDD;}

.serProcess_list .t{margin-bottom: 0.2rem;}
.serProcess_list i{display: block; width: .6rem; height: .6rem; background: #F6F6F6; position: relative;}
.serProcess_list i iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.36rem; color: var(--i_color);}


.serProcess_list h5{height: .56rem; margin: .2rem 0 .5rem; font-size: 0.2rem; font-weight: 600; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.serProcess_list p{ font-size: 0.16rem; line-height: 1.5;}
.serProcess_list img{width: 100%; aspect-ratio: 24 / 11;}

.serProcess_list li:hover i{background: var(--i_color);}
.serProcess_list li:hover i iconify-icon{color: #FFF;}
.serProcess_list li:hover h5{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.serProcess_list{flex-wrap: wrap;}
	.serProcess_list li{margin-bottom: 30px; border: none !important; padding: 0 0;}

	.serProcess_list .t span{display:flex; flex-wrap:wrap; align-items: center; gap: 0 20px;}
	.serProcess_list i{width: 44px; height: 44px;}
	.serProcess_list i iconify-icon{font-size: 26px;}
	.serProcess_list h5{margin: 0 0; height: auto; font-size: 16px;}
	.serProcess_list p{margin-top: 20px; font-size: 14px;}
}
@media screen and (max-width:560px) {
	.serProcess_list .t span{gap: 0 10px;}
	.serProcess_list i{width: 40px; height: 40px;}
	.serProcess_list i iconify-icon{font-size: 22px;}
}







.serFrom{background: #F6F6F6;}

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

/* 字段样式 */
#wpforms-106 .wpforms-field-container{position: relative;}

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

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

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

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

/* 留言框 */
@media screen and (min-width:1025px) {
	#wpforms-106-field_6-container{position: absolute !important;right: 0; top: 0; width: 48% !important; height: 100%;}
	#wpforms-106-field_6{height: 100% !important;}
}

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

@media screen and (max-width:1024px) {
	#wpforms-106 .wpforms-field-container>.wpforms-field{width: 100% !important;}
}







.nList{}
.nList li{}
.nList a{padding: .38rem 0; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .5rem; position: relative;}
.nList a::before,.nList a::after{content: '';position: absolute; left: 0; bottom: 0; height: 1px;}
.nList a::before{width: 100%; background: #CCC;}
.nList a::after{width: 0; background: var(--i_color); transition:all .5s ease;}

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

.nList .txt{width: 100%;}
.nList .txt h5{font-size: 0.2rem; font-weight: 600; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.nList .txt p{margin: .1rem 0 .2rem; font-size: 0.15rem; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.nList .txt span{display:flex; flex-wrap:wrap; align-items: center;}
.nList .txt i{font-size: 0.15rem;}
.nList .btn{margin-left: auto; width: 0.42rem; height: 0.42rem; background: #FFF; border-radius:50%; position: relative;}
.nList .btn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.18rem;}

.nList a:hover::after{width: 100%;}
.nList a:hover img{transform: scale(1.05, 1.05);}
.nList a:hover h5{color: var(--i_color);}
.nList a:hover .btn{background: var(--i_color);}
.nList a:hover .btn iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.nList a{gap: 0 40px;}
	.nList .pic{width: 25%;}
	.nList .txt h5{font-size: 16px;}
	.nList .txt p,.nList .txt i{font-size: 13px;}

	.nList .btn{display: none;}
}
@media screen and (max-width:768px) {
	.nList a{padding: 20px 0;}
	.nList .txt p{display: none;}
	.nList .txt i{display: block;margin-top: 0.1rem;}
}
@media screen and (max-width:560px) {
	.nList a{gap: 0 20px;}
	.nList .pic{width: 36%;}
	.nList .txt h5{font-size: 14px;}
}






.contact__{width: 100%; position: relative; overflow: hidden;}

.contact__ .global{position: relative;}
.contact__ .global img{width: 100vw;}

.contact__dot{position: absolute; right: 34%; bottom: 32%;}
.contact__dot::before{content: '';position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); box-sizing: border-box; width: 160%; height: 160%; animation:scale 1.6s infinite linear; background: rgb(0 91 162 / 30%); border-radius:50%;}
.contact__dot i{display: block; width: 14px; height: 14px; background: var(--i_color); border-radius:50%; position: relative;}

.contact__box{position:absolute; top:50%; transform:translate(0,-50%); left: 14%; width: 30%; box-sizing: border-box; padding: .3rem; background: var(--i_color); border-radius:8px; z-index: 3;}
.contact__box::before{content: '';position: absolute; right: 0; bottom:0; width: 35%; height: 36%; background:url(static/images/contact_box_bg.webp) no-repeat top left;}
.contact__box h2{font-size: 0.36rem; color: #FFF; font-weight: 600;}

.contact__box ul{}
.contact__box li{margin: .2rem 0; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .2rem;}
.contact__box li iconify-icon{font-size: 0.3rem; color: #FFF;}
.contact__box li p,.contact__box li a{font-size: 0.18rem; color: #FFF;}
.contact__box li a:hover{text-decoration: underline;}

@media screen and (max-width:1440px) {
	.contact__box{left: 5%; width: 45%;}
	.contact__box h2{font-size: 0.3rem;}
}
@media screen and (max-width:1024px) {
	.contact__{margin-top: 40px;}
	.contact__box{position: relative; left: 3%; width: 94%; transform: none; background: none; padding: 0 0;}
	.contact__box h2{color: var(--i_color); font-size: 20px;}
	.contact__box li iconify-icon{font-size: 26px; color: var(--i_color);}
	.contact__box li p,.contact__box li a{font-size: 16px; color: #666;}

	.contact__ .global{margin-top: -100px;}
}
@media screen and (max-width:560px) {
	.contact__{margin-top: 26px;}
	.contact__box h2{font-size: 16px}
	.contact__box li iconify-icon{font-size: 24px;}
	.contact__box li p,.contact__box li a{font-size: 15px;}
	.contact__ .global{margin-top: -60px;}

	.contact__dot i{width: 8px; height: 8px;}
}






.contactForm #wpforms-106 .wpforms-field-container .wpforms-field>input,
.contactForm #wpforms-106 .wpforms-field-container textarea{background: #F6F6F6;}

.i_tit_line{position: relative;}
.i_tit_line::before{content: ''; position: absolute; top: .32rem; right: 0; width: 100%; height: 1px; background: #DDD;}
.i_tit_line h3{display: table; padding-right: 0.4rem; position: relative;}
.serFrom .i_tit_line h3{background: #F6F6F6;}
.contactForm .i_tit_line h3{background: #FFF;}






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

.contactSer_list{display:flex; flex-wrap:wrap; gap: .3rem 2%;}
.contactSer_list dt{width: 49%; box-sizing: border-box; padding: .3rem; background: #FFF;}

.contactSer_list h5{padding-bottom: 0.2rem; margin-bottom: 0.2rem; border-bottom: 1px solid #DDD; font-size: 0.24rem; font-weight: 600; color: var(--i_color);}
.contactSer_list p{margin-bottom: 0.16rem; font-size: 0.2rem; font-weight: 600;}
.contactSer_list a{display: block; padding: 6px 0; font-size: 0.16rem;}
.contactSer_list a:hover{color: var(--i_color); text-decoration: underline;}

@media screen and (max-width:1024px) {
	.contactSer_list h5{font-size: 18px;}
	.contactSer_list p{font-size: 16px;}
	.contactSer_list a{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.contactSer_list{gap: 20px 0;}
	.contactSer_list dt{width: 100%;}
}
@media screen and (max-width:560px) {
	.contactSer_list dt{padding: 20px;}
	.contactSer_list h5{margin-bottom: 14px; padding-bottom: 14px; font-size: 16px;}
	.contactSer_list p{margin-bottom: 10px; font-size: 15px;}
}



