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

:root {
	--i_color: #163569;
	--i_color2: #00B0EC;
	--header_height:.9rem;
}
@media screen and (max-width:1024px) {
	:root {
		--header_height: 60px;
	}
}





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

.wrap2{width: 90vw; 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;}
	.wrap2{width: 94vw;}
	.wrap_l{padding-left: 6vw;}
	.wrap_r{padding-right: 6vw;}
}
@media screen and (max-width:1024px) {
	.wrap{width: 94%;}
	.wrap_l{padding-left: 3vw;}
	.wrap_r{padding-right: 3vw;}
}






/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: none;
	z-index: 2014;
	transition:all .5s ease;
}
header.header_on, header.header_fixed, header:hover{background: #454545;}

@media screen and (max-width:1024px) {
	header{background: #454545;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}


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-height: 54%;}

@media screen and (max-width:1200px) {
	.logo img {max-height: 46%;}
}
@media screen and (max-width:1024px) {
	.logo img {max-height: 50%;}
}





/* 导航 */
@media screen and (min-width:1025px) {
	.i_nav {
		margin-left: 6vw;
		margin-right: auto;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		gap: 0 3.2vw;
		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;
	}
	.i_nav>li>a::before{content: ''; position: absolute; left: 0; bottom: 32%; width: 0; height: 1px; background: #FFF; transition:all .5s ease;}
	/* .i_nav>.current-menu-item>a,
	.i_nav>.current-category-ancestor>a,
	.i_nav>.current-post-ancestor>a,
	.i_nav>.current-menu-ancestor>a,
	.i_nav>.current-menu-parent>a,
	.i_nav>li:hover>a,
	.i_nav>li.active>a
	{color: var(--i_color);} */

	.i_nav>.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_color2);
	}

	.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_color2);}
}
@media screen and (max-width:1366px) {
	.i_nav>li>a{font-size: 0.17rem;}
}
@media screen and (max-width:1200px) {
	.i_nav{gap: 0 .4rem;}
	.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 {
	flex-shrink: 0;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0 .2rem;
}
@media screen and (max-width:1024px) {
	.top_r{--size:.24rem}
	.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{padding-right: 0.2rem; position: relative; font-size: 0; height: var(--header_height); display:flex; flex-wrap:wrap; align-items: center; cursor: pointer;}
.top_search_ico::before{content: '';position:absolute; top:50%; transform:translate(0,-50%); right: 0; width: 1px; height: 0.18rem; background: rgb(255 255 255 / 40%);}
.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_color2);}

/* 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_color2);
	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_color2) 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.16rem; 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: 0.1rem; font-size: .17rem; color: #FFF;}
.top_language_btn.on iconify-icon{color: var(--i_color2);}

.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:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {
	.top_language_btn p{display: none;}
}
@media screen and (max-width:1024px) {}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}






.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: 49.635%;
	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-control{position: absolute; right: 5%; bottom: 0.3rem; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .2rem; z-index: 3;}
.banner-button{width: 1.2rem; height: 0.3rem; position: relative; cursor: pointer;}
.banner-button::before{content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: rgb(255 255 255 / 50%);}
.banner-button iconify-icon{position:absolute; top:calc(50% + 1px); transform:translate(0,-50%); font-size: 12px; color: #FFF;}
.banner-button-prev iconify-icon{left: -4px;}
.banner-button-next iconify-icon{right: -4px;}

.banner-pagination{font-size: 0.17rem; color: rgb(255 255 255 / 50%); display:flex; flex-wrap:wrap; align-items: baseline; gap: 0 .16rem;}
.banner-pagination .swiper-pagination-current{font-size: 0.24rem; color: #FFF;}

@media screen and (max-width:1024px) {
	.banner-button{display: none;}
	.banner-control{right: 20px; bottom: 20px;}
	.banner-pagination{font-size: 15px; gap: 0 10px;}
}
@media screen and (max-width:560px) {
	.banner-control{right: 3vw; bottom: 8px;}
	.banner-pagination{font-size: 12px; gap: 0 6px;}
	.banner-pagination .swiper-pagination-current{font-size: 18px;}
}






.banner1_text{position: absolute; left: 8%; top: 26%; padding-left: 0.4rem;}
.banner1_text .bg{position: absolute; top: -.26rem; left: 0; width: 1.6rem; height: 2.6rem; background:linear-gradient(to bottom, var(--i_color2), transparent); border-radius:6px;}
.banner1_text h3{padding-bottom: 0.1rem; margin-bottom: 0.3rem; font-size: 3.4vw; color: #FFF; font-weight: bold; position: relative;}
.banner1_text h3::before{content: ''; position: absolute; left: 0; bottom: 0; width: 1.2rem; height: 2px; background: #FFF;}
.banner1_text .i_more{position: relative;}

@media screen and (max-width:1440px) {
	.banner1_text{left: 5%;}
}
@media screen and (max-width:1024px) {
	.banner1_text{left: 4%; top: 15%; padding-left: 20px;}
	.banner1_text .bg{width: 1rem; height: 1.8rem; top: -20px;}
	.banner1_text h3{font-size: 3vw;}
	.banner1_text h3::before{width: 80px;}
}
@media screen and (max-width:560px) {
	.banner1_text{top: 12%; padding-left: 14px;}
	.banner1_text .bg{top: -10px; width: 60px; height: 100px;}
	.banner1_text h3{margin-bottom: 14px; font-size: 3.8vw;}
	.banner1_text h3::before{width: 45px;}
}






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




.i_tit{}
.i_tit .t{display: table; position: relative;}
.i_tit .t::before{content: ''; position: absolute; top: 8px; left: -4px; width: 0.3rem; height: 0.3rem; background: var(--i_color2);}
.i_tit h3{font-weight: bold; position: relative; line-height: 1.4;}
.i_tit h6{color: #666;}

.i_tit.center{text-align: center;}
.i_tit.center .t{margin-left: auto;margin-right: auto;}

@media screen and (max-width:1366px) {
	.i_tit .t::before{width: 24px; height: 24px;}
}
@media screen and (max-width:1200px) {
	.i_tit .t::before{left: 0; width: 16px; height: 16px;}
}
@media screen and (max-width:1024px) {
	.i_tit .t::before{top: 6px; width: 12px; height: 12px;}
}
@media screen and (max-width:560px) {
	.i_tit .t::before{opacity: .6;}
	.i_tit h6{font-size: 14px;}
}






.i_more{display: table; border: 1px solid var(--i_color); border-radius:5px;}
.i_more em{padding: .1rem .2rem; display:flex; flex-wrap:nowrap; justify-content: center; align-items: center; gap: 0 .1rem;}
.i_more iconify-icon{font-size: 0.2rem; color: var(--i_color);}
.i_more i{font-size: 0.16rem; color: var(--i_color);}

.i_more.active{background: var(--i_color);}
.i_more.active iconify-icon,.i_more.active i{color: #FFF;}

.i_more.white{border-color: #FFF;}
.i_more.white iconify-icon{color: #FFF;}
.i_more.white i{color: #FFF;}

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

.i_more:hover{transform:translate(0,-8px); background: var(--i_color); border-color: var(--i_color);}
.i_more:hover iconify-icon, .i_more:hover i{color: #FFF;}

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

@media screen and (max-width:1024px) {
	.i_more em{padding: 8px 16px;}
	.i_more iconify-icon{font-size: 18px;}
	.i_more i{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.i_more em{padding: 8px 12px;}
	.i_more iconify-icon{font-size: 16px;}
	.i_more i{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.i_more em{padding: 6px 8px; gap: 0 4px;}
	.i_more iconify-icon{font-size: 13px;}
	.i_more i{font-size: 12px;}
}






.i_more2{padding-top: 0.16rem; margin-top: 0.16rem; border-top: 1px solid #EEE; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .1rem; position: relative;}
.i_more2 i{flex-shrink: 0; width: 0.3rem; height: 0.3rem; background: #333; border-radius:50%; position: relative;}
.i_more2 iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.24rem; color: #FFF;}
.i_more2 p{font-size: 0.16rem; color: #888;}

@media screen and (max-width:1024px) {
	.i_more2 i{width: 26px; height: 26px;}
	.i_more2 iconify-icon{font-size: 20px;}
	.i_more2 p{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.i_more2 i{width: 22px; height: 22px;}
	.i_more2 iconify-icon{font-size: 18px;}
}






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




.pItem{display: block; transition:all .5s ease;}
.pItem .pic{width: 100%; overflow: hidden;}
.pItem .pic img{width: 100%; aspect-ratio: 1 / 1; object-fit: contain; transition:all .5s ease;}
.pItem .txt{margin-top: 0.14rem;}
.pItem h5{height: 0.56rem; font-size: 0.2rem; font-weight: bold; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.pItem .txt span{margin-top: 0.2rem; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .1rem;}
.pItem span iconify-icon{font-size: 0.22rem; color: #555;}
.pItem span p{font-size: 0.16rem; color: #666;}

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

@media screen and (max-width:1024px) {
	.pItem h5{height: 45px; font-size: 16px;}
	.pItem span iconify-icon{font-size: 18px;}
	.pItem span p{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.pItem h5{height: 42px; font-size: 15px;}
}






main{}



.about{}
.about .wrap{background:url(static/images/about-bg.webp) no-repeat top center; background-size: 100%;}
.about_cont{display:flex; flex-wrap:nowrap; gap: 0 5%;}

.about_cont .i_tit{flex-shrink: 0; width: 35%;}

@media screen and (max-width:1024px) {
	.about_cont{flex-wrap: wrap; gap: 26px 0;}
	.about_cont .i_tit{width: 100%;}
}
@media screen and (max-width:560px) {
	.about_t article{font-size: 15px;}
}



.about_num{display:flex; flex-wrap:nowrap;}
.about_num dt{width: 100%; box-sizing: border-box; padding: 0 16px; position: relative;}
.about_num dt::before{content: ''; position:absolute; top:50%; transform:translate(0,-50%); left: 0; width: 1px; height: 60%; background: #CCC;}
.about_num dt:first-child::before{display: none;}

.about_num span{display:flex; flex-wrap:wrap; justify-content: center; align-items: baseline; gap: 0 8px; font-size: 0.22rem; color: var(--i_color); font-weight: bold;}
.about_num span i{font-family: 'DinPro'; font-size: 0.4rem; font-weight: bold; color: var(--i_color);}

.about_num .t{margin-top: 0.1rem; display:flex; flex-wrap:nowrap; align-items: center; justify-content: center; gap: 0 .1rem;}
.about_num .t img{flex-shrink: 0; height: 0.24rem;}
.about_num .t p{font-size: 0.16rem; color: #666;}

@media screen and (max-width:1024px) {
	.about_num{flex-wrap: wrap; gap: 30px 4%;}
	.about_num dt{width: 48%;}
	.about_num dt::before{display: none;}

	.about_num span i{font-size: 30px;}
}
@media screen and (max-width:560px) {
	.about_num span{font-size: 16px;}
	.about_num span i{font-size: 26px;}
	.about_num .t p{font-size: 13px;}
}




.about_pic{position: relative;}
.about_pic img{width: 100%;}

.v_btn{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); cursor: pointer;}
.v_btn i{display: block; width: 3rem; height: 0.5rem; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 116'%3E%3Cpath fill='%23f00' d='M159.89 17.93a20.55 20.55 0 0 0-14.471-14.47C132.73 0 81.666 0 81.666 0S30.6.105 17.913 3.565a20.55 20.55 0 0 0-14.47 14.47c-3.838 22.545-5.327 56.896.105 78.538a20.55 20.55 0 0 0 14.47 14.47c12.688 3.46 63.753 3.46 63.753 3.46s51.065 0 63.753-3.46a20.55 20.55 0 0 0 14.47-14.47c4.047-22.576 5.295-56.906-.105-78.642'/%3E%3Cpath fill='%23fff' d='m65.413 81.788l42.362-24.536l-42.362-24.537z'/%3E%3Cpath fill='%23fff' d='M491.237 33.24c5.557 0 9.751 1.048 12.687 3.04q4.404 2.989 6.292 9.438c1.258 4.299 1.782 10.17 1.782 17.72v12.269H485.05v3.774l.42 10.381c.314 2.307.839 3.985 1.677 5.033c.84 1.049 2.202 1.573 3.985 1.573c2.412 0 4.09-.943 4.928-2.83c.944-1.888 1.363-5.034 1.468-9.333l13.946.839c.105.629.105 1.468.105 2.516c0 6.606-1.783 11.535-5.453 14.785s-8.703 4.928-15.309 4.928c-7.969 0-13.526-2.516-16.672-7.444C471 95 469.322 87.24 469.322 76.86V64.172c.356-17.825 3.491-30.88 21.915-30.932m-193.88 1.363v52.533c0 3.146.314 5.453 1.048 6.816c1.489 2.915 5.348 2.17 7.445.734a8.4 8.4 0 0 0 2.831-3.25V34.602h16.043v71.617h-12.583l-1.363-8.808h-.314c-3.46 6.606-8.599 9.961-15.414 9.961c-10.49-.026-13.057-7.584-13.668-15.26l-.04-.541a65 65 0 0 1-.133-3.492V34.603zm82.732 0v52.533c0 3.146.314 5.453 1.048 6.816c1.49 2.915 5.348 2.17 7.445.734a8.4 8.4 0 0 0 2.831-3.25V34.602h16.043v71.617h-12.583l-1.363-8.808h-.314c-3.46 6.606-8.599 9.961-15.414 9.961c-10.49-.026-13.057-7.584-13.668-15.26l-.04-.541a65 65 0 0 1-.133-3.492V34.603zM250.8 33.24c5.243 0 9.542 1.048 12.688 3.25c3.145 2.202 5.557 5.558 7.025 10.171c1.468 4.614 2.202 10.8 2.202 18.455v10.38c0 7.655-.734 13.737-2.202 18.35c-1.468 4.615-3.775 7.97-7.025 10.172c-3.25 2.097-7.655 3.25-13.107 3.25c-5.663.105-10.067-1.048-13.317-3.145c-3.25-2.202-5.558-5.558-6.92-10.171c-1.364-4.614-1.993-10.696-1.993-18.35V65.22c0-7.655.734-13.946 2.307-18.56c1.573-4.718 3.984-8.074 7.34-10.17c3.355-2.098 7.654-3.251 13.002-3.251m181.822-28.73v37.748h.105c1.468-2.726 3.355-4.928 5.977-6.606a14.8 14.8 0 0 1 8.283-2.516c3.88 0 6.816 1.048 9.018 3.04c2.202 2.098 3.775 5.348 4.718 9.857c.915 4.368 1.435 10.409 1.467 18.027l.001.743v11.324c0 10.59-1.363 18.455-3.88 23.488c-2.62 5.033-6.605 7.55-12.058 7.55c-3.04 0-5.767-.734-8.283-2.097a14.7 14.7 0 0 1-5.35-5.392l-.208-.376h-.314l-1.678 6.816h-13.317V4.51zm-64.173 3.67V21.18h-15.938v85.039h-15.728V21.181H320.74V8.18zm-172.909 0l.01.04c.153.681 2.273 10.106 4.605 21.087l.184.87l.278 1.315l.186.883l.093.443l.186.888l.093.445l.185.891l.27 1.303c1.575 7.604 3.078 15.23 3.977 20.698h.42c.861-4.905 2.112-11.182 3.446-17.591l.35-1.674q.263-1.258.53-2.512l.274-1.297a2039 2039 0 0 1 5.597-25.444l.03-.135l.048-.21h16.043l-18.56 66.165v31.771h-15.833V74.448h-.105l-18.35-66.27zm54.945 36.175c-2.202 0-3.67 1.154-4.613 3.566s-1.363 6.081-1.363 11.22v22.334c0 5.243.419 9.122 1.258 11.43q1.259 3.46 4.718 3.46q3.303 0 4.719-3.46c.944-2.308 1.363-6.187 1.363-11.43V59.139c0-5.138-.42-8.913-1.363-11.22c-.944-2.411-2.517-3.565-4.719-3.565m184.968 2.098c-1.278 1.18-2.187 2.635-2.728 4.454l-.103.369v40.684c1.3 2.202 3.146 3.67 6.396 3.775q2.516 0 4.09-1.887q1.572-1.887 2.201-6.292q.605-4.227.629-11.644v-9.956c0-5.662-.21-9.961-.524-13.002c-.42-3.041-.943-5.243-1.887-6.501c-1.825-2.622-5.767-2.59-8.074 0m55.47-2.412q-2.675.157-3.776 1.573c-.838 1.048-1.363 2.621-1.677 4.928c-.309 2.26-.415 10.16-.42 10.476v5.148h11.744v-4.54v.087c-.007 1.587-.04-.921-.112-4l-.01-.414c-.066-2.706-.162-5.723-.297-6.757c-.315-2.412-.84-4.09-1.678-5.033c-.839-.944-2.097-1.468-3.775-1.468'/%3E%3C/svg%3E") no-repeat center; background-size:contain;}

@media screen and (max-width:1024px) {
	.v_btn i{height: 34px;}
}
@media screen and (max-width:560px) {
	.v_btn i{height: 26px;}
}





.vd_full {display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgb(255 255 255 / 80%);z-index:99999;}
.vd_box {position:absolute;top:52%;left:50%;transform:translate(-50%,-50%);width:60%;z-index:2;}
.vd_box::before {content:'';display:block;padding-bottom:56.25%;}
.close_v {position:absolute;top:-.2rem;right:-.2rem;width:0.4rem;height:0.4rem;background:var(--i_color);z-index:2;-webkit-border-radius:50%;border-radius:50%;cursor:pointer;}
.close_v::before {content:'+';position:absolute;top:50%;left:50%;font-size:.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;}
}






.homeCate_nav{display:flex; flex-wrap:nowrap; position: relative;}
.homeCate_nav::before{content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 1px; background: #CCC;}
.homeCate_nav li{width: 100%; position: relative; cursor: pointer;}
.homeCate_nav li::before{content: ''; position:absolute; left:50%; transform:translate(-50%,0); top: 0; width: 0; height: 3px; background: var(--i_color);}
.homeCate_nav p{text-align: center; padding: .2rem .16rem; font-size: 0.18rem;}

.homeCate_nav li.active::before{width: 100%; transition:all .5s ease;}
.homeCate_nav li.active p{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.homeCate_nav p{padding: 16px 16px; font-size: 14px;}
}
@media screen and (max-width:768px) {
	.homeCate_nav{flex-wrap: wrap; gap: 16px 4%;}
	.homeCate_nav::before{display: none;}
	.homeCate_nav li{width: 48%; box-sizing: border-box; border: 1px solid #DDD;}
	.homeCate_nav li::before{height: 2px;}
	.homeCate_nav p{padding: 14px 16px;}
}
@media screen and (max-width:560px) {
	.homeCate_nav{gap: 10px 0;}
	.homeCate_nav li{width: 100%}
	.homeCate_nav p{padding: 12px 16px; font-size: 13px;}
}





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

.homeCate_show ul{display:flex; flex-wrap:wrap; gap: .5rem 3%;}
.homeCate_show li{width: 22.75%;}

.homeCate_show ul>p{display: table; margin: 0 auto; font-size: 0.18rem; color: #999;}

@media screen and (max-width:768px) {
	.homeCate_show ul{gap: 40px 4%;}
	.homeCate_show li{width: 48%;}

	.homeCate_show ul>p{font-size: 15px;}
}







.homeSol{position: relative; background: #F7F7F7;}
.homeSol::before{content: ''; position: absolute; left: 0; top: 0; width: 42%; height: 100%; background:url(static/images/home-solution-bg.webp) no-repeat center; background-size: cover;}

.homeSol .i_tit{display:flex; flex-wrap:nowrap; align-items: center;}
.homeSol .i_tit .t{flex-shrink: 0;}
.homeSol .i_tit h3{color: #FFF;}
.homeSol .i_tit h6{margin-left: auto; width: 55%;}



.homeSol_box{}
.homeSol_box::before{content: ''; position: absolute; left: 100%; top: 0; width: 100%; height: 100%; background: var(--i_color);}

.homeSol_list{--pic_size:55%}
.homeSol_list{position:relative; overflow:hidden}
.homeSol_list .swiper-wrapper{display:flex; position:relative; width:100%}
.homeSol_list li{flex-shrink:0; position:relative; background: #FFF;}
.homeSol_list li a{display:flex; flex-wrap:nowrap; gap: 0 3%;}

.homeSol_list .pic{flex-shrink: 0; width: var(--pic_size); aspect-ratio: 872 / 680; font-size: 0;}
.homeSol_list .pic img{width: 100%; height: 100%; object-fit: cover; transition:all .5s ease;}

.homeSol_list .txt{padding-top: 8%; width: 100%; box-sizing: border-box; padding-right: 3%;}
.homeSol_list .txt h5{font-size: 0.24rem; font-weight: bold; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.homeSol_list .txt p{margin-top: 0.3rem; font-size: 0.16rem; color: #666; line-height: 1.8; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:4;}

.homeSol-navigation{position: absolute; left: calc(var(--pic_size) + 3%); bottom:10%; display:flex; flex-wrap:nowrap;}
.homeSol-navigation>div{width: 0.6rem; height: 0.6rem; background: #E5E5E5; position: relative; cursor: pointer;}
.homeSol-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.28rem; color: var(--i_color2);}
.homeSol-navigation>div:hover{background: var(--i_color);}
.homeSol-navigation>div:hover iconify-icon{color: #FFF;}

.homeSol-pagination{display:none}

@media screen and (max-width:1440px) {
	.homeSol-navigation>div{width: 0.5rem; height: 0.5rem;}
}
@media screen and (max-width:1200px) {
	.homeSol_list .txt{padding-top: 5%;}
	.homeSol-navigation>div{width: 0.4rem; height: 0.4rem;}
}
@media screen and (max-width:1024px) {
	.homeSol::before{display: none;}
	.homeSol .i_tit{flex-wrap: wrap;}
	.homeSol .i_tit h3{color: #333;}
	.homeSol .i_tit h6{width: 100%;}

	.homeSol_box::before{display: none;}
	.homeSol_list{--pic_size:45%}
	.homeSol_list li a{align-items: center;}
	.homeSol_list .txt{padding-top: 0;}
	.homeSol_list .txt h5{font-size: 18px;}
	.homeSol_list .txt p{margin-top: 14px; -webkit-line-clamp:3;}

	.homeSol-navigation{display: none;}

	.homeSol-pagination{display:block; margin-top:0.3rem; text-align:center}
	.homeSol-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#CCC; border-radius:50%; outline:none; cursor:pointer;}
	.homeSol-pagination .swiper-pagination-bullet-active{background:var(--i_color2)}
}
@media screen and (max-width:768px) {
	.homeSol_list{--pic_size:100%}
	.homeSol_list li a{flex-wrap: wrap; gap: 20px 0;}
	.homeSol_list .txt{padding: 0 20px 30px;}
}
@media screen and (max-width:560px) {
	.homeSol_list .txt h5{font-size: 16px;}
	.homeSol_list .txt p{font-size: 14px; -webkit-line-clamp:2;}
}






.homeNews{}
.homeNews .secTit{border-bottom: 1px solid #DDD;}

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

.homeNews_list .date{font-size: 0.16rem; color: #666;}

.homeNews_list .pic{margin: .16rem auto 0; width: 100%; aspect-ratio: 506 / 364; position: relative; z-index: 2; overflow: hidden;}
.homeNews_list .pic img{width: 100%; height: 100%; object-fit: cover; transition:all .5s ease;}

.homeNews_list .txt{margin-top: -4px; padding: .2rem; position: relative;}
.homeNews_list .txt::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height:0; background:#F7F7F7; transition:all .5s ease;}
.homeNews_list .txt::after{content: ''; position: absolute; right: 0; bottom: 0; width: 0; height: 2px; background: var(--i_color2); transition:all .5s .4s;}
.homeNews_list .txt h5{height: 0.66rem; font-size: 0.22rem; font-weight: bold; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; position: relative;}

.homeNews_list li:hover img{transform: scale(1.05, 1.05);}
.homeNews_list li:hover .txt::before{bottom: initial; top: 0; height: 100%;}
.homeNews_list li:hover .txt::after{right: initial; left: 0; width: 100%;}
.homeNews_list li:hover .txt h5{color: var(--i_color);}
.homeNews_list li:hover .i_more2 i{background: var(--i_color);}

.homeNews-pagination{display:none}

@media screen and (max-width:1200px) {
	.homeNews_list .txt h5{height: 0.6rem; font-size: 0.2rem;}
}
@media screen and (max-width:1024px) {
	.homeNews .secTit{padding-bottom: 20px; margin-bottom: 30px;}

	.homeNews_list .date{font-size: 14px;}
	.homeNews_list .txt h5{height: 48px; font-size: 16px;}

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

	.homeNews_list .date{font-size: 13px;}

	.homeNews_list .txt{margin-top: 16px; padding: 0 0;}
	.homeNews_list .txt::before,.homeNews_list .txt::after{display: none;}
	.homeNews_list .txt h5{height: 45px; font-size: 15px;}

}







.homeForm{}
.homeForm .wrap{background: #F7F7F7; box-sizing: border-box; padding-left: 8vw; padding-right: 8vw;}

#wpforms-140{
	--wpforms_input_height:48px;
	--wpforms_textarea_height:120px;
	--wpforms_input_font_size: 16px;
	--wpforms-field-border-radius: 4px;
	--wpforms-button-background-color: var(--i_color);
	--wpforms-button-border-color: var(--i_color);
	--wpforms-page-break-color: var(--i_color)
}
#wpforms-140{margin:0; padding:0;}
#wpforms-form-140{width:100%; position:relative;}

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

/* 下拉菜单样式 */
/* #wpforms-140 .choices{width: 100%; max-width: 100% !important; height: var(--wpforms_input_height);}
#wpforms-140 .choices__inner{background: #F2F4F5; border: none !important; height: 100%;}
.wpforms-container .wpforms-field .wpforms-field-row:before{display: none !important;} */

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

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

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

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

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

@media screen and (max-width:1024px) {
	.homeForm .wrap{padding-left: 4vw; padding-right: 4vw;}
}
@media screen and (max-width:560px) {
	#wpforms-140{
		--wpforms_input_height:40px;
	}
	#wpforms-140 .wpforms-field-container>.wpforms-field{width: 100% !important;}
}







footer{background: var(--i_color);}

.fTop{border-bottom: 1px solid rgb(255 255 255 / 20%); display:flex; flex-wrap:nowrap; align-items: center; gap: 0 4vw;}

.fLogo{flex-shrink: 0;}
.fLogo img{width: 12vw;}

.fTop_nav{margin-left: auto; display:flex; flex-wrap:wrap; align-items: center; gap: .1rem 4vw;}
.fTop_nav li{}
.fTop_nav a{font-size: 0.18rem; color: #FFF;}

.fMian{display:flex; flex-wrap:nowrap; justify-content: space-between; gap: 0 5vw;}

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

.fContact_box{flex-shrink: 0; width: 30%;}
.fContact{}
.fContact li{margin-bottom: 0.3rem; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .1rem;}
.fContact iconify-icon{flex-shrink: 0; font-size: 0.24rem; color: #FFF;}
.fContact p,.fContact a{font-size: 0.18rem; color: #FFF;}

.fMedia{display:flex; flex-wrap:wrap; gap: 0 .24rem;}
.fMedia li{}
.fMedia a{display: block; width: 0.44rem; height: 0.44rem; box-sizing: border-box; border: 1px solid rgb(255 255 255 / 40%); border-radius:50%; position: relative;}
.fMedia iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.22rem; color: rgb(255 255 255 / 80%);}

.fNav{}
.fNav li{margin-bottom: 0.1rem;}
.fNav li a{display: block; padding: 4px 0; font-size: 0.18rem; color: #FFF;}

.fSlogan{margin-left: auto; flex-shrink: 0; width: 22%;}
.fSlogan>img{width: 100%;}
.fSlogan h3{margin-top: 0.2rem; color: #FFF;}

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

@media screen and (max-width:1440px) {
	.fMedia{gap: 0 .2rem;}
	.fMedia a{width: 0.4rem; height: 0.4rem;}
	.fMedia iconify-icon{font-size: .2rem;}
}
@media screen and (max-width:1024px) {
	.fTop{flex-wrap: wrap; gap: 30px 0;}
	.fLogo img{width: auto; height: 40px;}
	.fTop_nav{width: 100%;}

	.fContact_box{width: 60%;}

	.fNav{display: none;}

	.fSlogan{width: 35%;}

	.fCR p, .fCR a{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.fTop_nav a{font-size: 16px;}
	.fContact_box{width: 100%;}
	.fSlogan{display: none;}
	.fCR p, .fCR a{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.fLogo img{height: 34px;}

	.fContact li{margin-bottom: 20px;}
	.fContact iconify-icon{font-size: 20px;}
	.fContact p, .fContact a{font-size: 16px; line-height: 1.4;}

	.fCR{padding: 20px 0;}
}








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

.banner__{font-size: 0; position: relative; overflow: hidden;}
.banner__>img{width: 100vw;}


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







.categoryBox{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 5%;}
.catSide{flex-shrink: 0; width: 20%; position: relative;}
.catList_show{width: 100%; margin-left: auto;}

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





.cat_nav{background: #FFF; box-sizing: border-box;}
.cat_nav_tit{margin-bottom: 0.2rem; padding: .12rem .1rem; text-align: center; position: relative; background: var(--i_color); border-radius:4px;}
.cat_nav_tit h4{font-size: 0.24rem; color: #FFF; font-weight: bold; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}
.cat_nav_tit iconify-icon{display: none;}

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

.cat_fold_tit{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; padding: 0 .12rem 0 .2rem; gap: 0 .2rem; background: #F4F4F4; border-radius:6px;}
.cat_fold_tit a{padding: .1rem 0; width: 100%; font-size: 0.18rem; color: #111; font-weight: bold; line-height: 1.5;}
.cat_fold_tit i{margin-left: auto;flex-shrink: 0; cursor: pointer; position: relative;}
.cat_fold_tit iconify-icon{font-size: 0.3rem; color: #777; -webkit-transition:all .5s ease; transition:all .5s ease;}
.active .cat_fold_tit i{border-color: #FFF;}
.active .cat_fold_tit a,.active .cat_fold_tit iconify-icon{color: var(--i_color);}
.active .cat_fold_tit iconify-icon{-webkit-transform:rotate(-180deg); transform:rotate(-180deg);}

.cat_fold_sub{display: none; margin-top: 0.16rem; padding: .1rem; background: #FFF; border-radius:4px;}
.cat_fold_sub dt{box-sizing: border-box; position: relative; border-radius:6px; overflow: hidden;}
.cat_fold_sub dt::before{opacity: 0; content: ''; position:absolute; top:50%; margin-top: -2px; left: -.1rem; width: 0.12rem; height: 2px; background: var(--i_color); transition:all .5s ease;}
.cat_fold_sub a{display: block;padding: 6px .2rem;font-size: 0.16rem; color: #666; position: relative; transition:all .5s ease;}
.cat_fold_sub dt:hover::before, .cat_fold_sub dt.active::before{opacity: 1; left: 0;}
.cat_fold_sub a:hover, .cat_fold_sub dt.active a{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.cat_nav_tit h4{font-size: 0.26rem;}

	.cat_fold_tit a{font-size: 0.18rem;}
}
@media screen and (max-width:1200px) {
	.cat_fold_tit a{font-size: 0.18rem;}
	.cat_fold_sub a{font-size: 0.16rem;}
}
@media screen and (max-width:1024px) {
	.cat_nav{padding: 0; background: none;}
	.cat_nav_tit{padding: 14px 20px; margin: 0 0; display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;position: relative;z-index: 2; box-sizing: border-box; background: var(--i_color);}
	.cat_nav_tit h4{font-size: 18px;}
	.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:30px 30px; background: #FFF;}
	.cat_fold_tit a{padding: 12px 0;}
}
@media screen and (max-width:768px) {
	.cat_nav_tit iconify-icon{font-size: 22px;}

	.cat_nav_list{padding: 20px 20px;}
}
@media screen and (max-width:560px) {
	.cat_nav_tit{padding: 12px 18px;}
	.cat_nav_tit h4{font-size: 17px;}

	.cat_fold_tit a{padding: 10px 0; font-size: 16px;}
	.cat_fold_tit iconify-icon{font-size: 26px;}
	.cat_fold_sub{margin-top: 8px;}
	.cat_fold_sub a{font-size: 15px;}
}





.asideContact{background:url(static/images/aside-contact-bg.webp) no-repeat center; background-size: cover; padding: .3rem .2rem .4rem; border-radius:4px;}
.asideContact h3{padding-bottom: 0.16rem; border-bottom: 1px solid rgb(255 255 255 / 20%); font-size: 0.2rem; color: #FFF; font-weight: bold;}
.asideContact p{margin: .16rem 0 .3rem; font-size: 0.16rem; color: #FFF; line-height: 1.6;}

.asideContact ul{}
.asideContact li{margin-top: 0.2rem; display:flex; flex-wrap:nowrap; gap: 0 .1rem; align-items: center;}
.asideContact li i{flex-shrink: 0; display: block; width: 0.36rem; height: 0.36rem; background: var(--i_color); border-radius:50%; position: relative;}
.asideContact li iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.18rem; color: #FFF;}
.asideContact li a{font-size: 0.17rem; color: #FFF;}

@media screen and (max-width:1440px) {
	.asideContact span a{font-size: 0.16rem;}
}
@media screen and (max-width:1024px) {
	.asideContact{display: none;}
}





.category_des{margin-top: 0.12rem;}
.category_des h1{font-weight: bold; color: #111;}
.category_des article{margin-top: 0.2rem; font-size: 0.18rem; color: #555; line-height: 1.6;}
@media screen and (max-width:1200px) {
	.category_des article{font-size: 0.16rem;}
}
@media screen and (max-width:1024px) {
	.category_des{margin-top: 0;}
}
@media screen and (max-width:768px) {
	.category_des article{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.category_des article{margin-top: 14px; font-size: 14px;}
}





.pList{display:flex; flex-wrap:wrap; gap: .34rem 2.5%;}
.pList li{width: 31.66%; background: #FFF; transition:all .5s ease;}
.pList li a{padding: .24rem;}

.pList li:hover{box-shadow: 0 0 .1rem rgb(0 0 0 / 8%);}

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







/* Paging */
.in_paging{--size:.34rem;}
.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:var(--size);font-size:16px;color:#666;background:#F4F4F4;box-sizing: border-box; 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:1200px) {
	.in_paging a,.in_paging span {font-size: 14px;}
}
@media screen and (max-width:1024px) {
	.in_paging{--size:28px;}
}
@media screen and (max-width:560px) {
	.in_paging{--size:24px;}
	.in_paging a,.in_paging span {font-size: 13px;}
}








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

/* atlas */
.p_atlas {flex-shrink: 0; width:38%; box-sizing: border-box; position: relative;}
.p_atlas_list {width: 100%; box-sizing: border-box; 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; font-size: 0; position:relative;overflow:hidden;}
.p_atlas_list .swiper-slide img {width: 100%; aspect-ratio: 1 / 1; object-fit: cover;}

/* thumbnail */
.p_thumbnail_list {width:calc(100% - 1rem);box-sizing: border-box; padding: 0 2px; 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 {opacity: .6; box-sizing: border-box; border: 1px solid transparent; flex-shrink:0;background: #FFF; position:relative;overflow:hidden;cursor:pointer;}
.p_thumbnail_list figure {width:100%;position:relative;overflow:hidden;}
.p_thumbnail_list figure::before {content:'';display:block;padding-bottom:100%;}
.p_thumbnail_list figure img {position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;}
.p_thumbnail_list .swiper-slide-thumb-active {opacity: 1; border-color: var(--i_color);}

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

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

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

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






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

.pCate{color: var(--i_color2); font-weight: bold;}
.p_title h1{margin-top: 0.1rem; font-size: 0.26rem; color: var(--i_color); line-height: 1.4; position: relative; font-weight: bold;}

.p_des{padding: .2rem 0 0; border-top: 1px solid #DDD;}
.p_des>h5{margin-bottom: 0.2rem; font-size: 0.18rem;}
.p_des article{color: #666;}
.p_des article table{margin: 0 0; border: none !important; background: #F4F9F3}
.p_des article tbody{display: inline-table;}
.p_des article table tr:nth-child(odd) {
	background: #FFF;
}
.p_des article table td{border: none !important;}

.p_adv{display:flex; flex-wrap:nowrap; gap: 0 3%;}
.p_adv dt{width: 100%; box-sizing: border-box; padding: .3rem .16rem; border: 1px solid #DDD; border-radius:4px; display:flex; flex-wrap:wrap; align-items: center; justify-content: center; gap: 0 .14rem;}
.p_adv dt img{height: 0.42rem;}
.p_adv dt p{font-size: 0.22rem;}

.p_menu{display:flex; flex-wrap:nowrap; border-top: 1px solid #DDD;}

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

.p_share{margin-left: auto; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center; 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 .2rem;}
.p_share dt{transition:all .5s ease;}
.p_share a{}
.p_share a iconify-icon {font-size:0.26rem;color:#666;}
.p_share dt:hover{transform:translate(0,-4px);}
.p_share dt:hover iconify-icon{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.p_adv dt img{height: 0.32rem;}
	.p_adv dt p{font-size: 0.18rem;}
}
@media screen and (max-width:1200px) {
	.p_des article{font-size: 0.17rem;}

	.p_adv dt{padding: .2rem .16rem;}
	.p_adv dt img{height: 0.28rem;}
}
@media screen and (max-width:1024px) {
	.p_title h1{font-size: 20px;}
	.p_adv dt p{font-size: 16px;}
	.p_share a iconify-icon{font-size: 22px;}
}
@media screen and (max-width:768px) {
	.p_adv dt{flex-direction: column; gap: 10px 0;}
}
@media screen and (max-width:560px) {
	.p_cat{font-size: 14px;}
	.p_title h1{font-size: 17px;}
	.p_des>h5{margin-bottom: 12px; font-size: 16px;}
	.p_des article{font-size: 14px;}

	.p_adv dt{padding: 14px 10px;}
	.p_adv dt img{height: 26px;}
	.p_adv dt p{font-size: 14px;}

	.p_menu{flex-wrap: wrap;}
	.p_btn{gap: 0 20px;}

	.pMenu{margin-top: 24px; padding-top: 24px;}
	.p_share{margin: 20px 0 0; width: 100%;}
	.p_share>p{font-size: 15px;}
	.p_share dt iconify-icon{font-size: 20px;}
}







.pContent_box{}

.pContent_box{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 5%;}

.pContent{width: 100%; margin-left: auto;}
@media screen and (max-width:1024px) {
	.pContent_box{flex-wrap: wrap; gap: 40px 0;}
}
@media screen and (max-width:1024px) {
	.pContent_box .catSide{display: none;}
}






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

.pContent_title li.active{background: #FFF;}
.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{}

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

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








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

.faqList{}
.faqList li{box-sizing: border-box; margin-bottom: 0.2rem; background: #F7F7F7;}
.faqList .que{padding:.24rem .5rem; font-size: 0.2rem; font-weight: bold; line-height: 1.5; cursor: pointer; position: relative;}
.faqList .que::before{content: ''; position:absolute; top:50%; transform:translate(0,-50%); left: .16rem; width: 0.22rem; height: 0.22rem; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23163569' d='M439.1 297.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L371.2 320L233.9 182.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E") no-repeat center; background-size: .22rem; transition:all .5s ease;}
.faqList .ans{display: none;}
.faqList .ans>span{display: block; padding: 0 .5rem .3rem; color: #555;}

.faqList li.active .que::before{transform:translate(0,-50%) rotate(-90deg);}
.faqList li.active .que{color: var(--i_color);}

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

	.faqList .que{font-size: 18px;}
}
@media screen and (max-width:768px) {
	.faqList .que{padding: 16px .5rem; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.faqList li{margin-bottom: 14px;}
}







.pBottom{background: #F7F7F7;}

.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;}
.p_tags a{display: block; padding: 8px .2rem; margin-right: 0.2rem; font-size: .16rem; color: var(--i_color); background: #FFF; border-radius:4px;}
.p_tags a:hover{background: var(--i_color2); color: #FFF;}
@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; top: -2px; position: relative;}
.p_view_other span iconify-icon{font-size: .22rem; color: #333;}
.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 iconify-icon,
.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 iconify-icon{font-size: 20px;}
	.p_view_other p,.p_view_other p b{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.p_view_other{flex-wrap: wrap;gap: 12px 0;}
	.p_view_other li{max-width: 100%}
	.p_view_other span{order: -1;}
}
@media screen and (max-width:560px) {
	.p_view_other span{top: -1px;}
	.p_view_other span iconify-icon{font-size: 18px;}
}






.pRelated{}

.pRelated_list{padding-top: 0.1rem; position:relative; overflow:hidden}
.pRelated_list .swiper-wrapper{display:flex; position:relative; width:100%}
.pRelated_list li{flex-shrink:0; background: #FFF; position:relative; transition:all .5s ease;}
.pRelated_list li a{padding: .24rem;}

.pRelated_list li:hover{box-shadow: 0 0 .1rem rgb(0 0 0 / 8%);}

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

@media screen and (max-width:560px) {
	.pList li a{padding: 20px;}
}







.aboutAdv{background: #F7F7F7;}

.aboutAdv_list{display:flex; flex-wrap:wrap; gap: 0 0;}
.aboutAdv_list li{width: 33.33%; box-sizing: border-box; padding: .38rem .2rem; text-align: center; position: relative;}
.aboutAdv_list li::before{content: ''; position:absolute; top:50%; transform:translate(0,-50%); right: 0; width: 1px; height: 75%; background: #D2D7E7;}
.aboutAdv_list li:nth-child(3n)::before{display: none;}
.aboutAdv_list li:nth-child(-n+3)::after{content: ''; position:absolute; left:50%; transform:translate(-50%,0); bottom: 0; width: 90%; height: 1px; background: #D2D7E7;}

.aboutAdv_list img{height: 1.22rem;}
.aboutAdv_list p{margin-top: 0.1rem; font-size: 0.24rem;}

@media screen and (max-width:1440px) {
	.aboutAdv_list img{height: .9rem;}
	.aboutAdv_list p{font-size: 0.2rem;}
}
@media screen and (max-width:1200px) {
	.aboutAdv_list img{height: .8rem;}
	.aboutAdv_list p{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.aboutAdv_list img{height: 60px;}
	.aboutAdv_list p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.aboutAdv_list li{padding: 18px 10px;}
	.aboutAdv_list img{height: 44px;}
	.aboutAdv_list p{font-size: 13px;}
}







.aboutTeam{}

.aboutTeam .wrap{display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 5%;}
.aboutTeam_p{flex-shrink: 0; width: 43%; height: auto;}

.aboutTeam_t{width: 100%;}

.aboutTeam_t .cont{border-top: 1px solid #DDD;}
.aboutTeam_t .cont h5{font-size: 0.16rem; color: var(--i_color2);}

.aboutTeam_t .num{margin: 0 0 .2rem; display:flex; flex-wrap:wrap; align-items: baseline; gap: 0 4px;}
.aboutTeam_t .num i{font-family: 'DinPro'; font-size: 0.5rem; color: var(--i_color);}
.aboutTeam_t .num em{font-size: 0.2rem; color: var(--i_color); font-weight: bold;}
.aboutTeam_t .num h6{font-size: 0.2rem; color: #111;}

@media screen and (max-width:1440px) {
	.aboutTeam_t{margin-top: 0;}
}
@media screen and (max-width:1024px) {
	.aboutTeam_t .num i{font-size: 40px;}
	.aboutTeam_t .num em,.aboutTeam_t .num h6{font-size: 17px;}
}
@media screen and (max-width:768px) {
	.aboutTeam .wrap{flex-wrap: wrap; gap: 30px 0;}
	.aboutTeam_p{width: 100%;}
}
@media screen and (max-width:560px) {
	.aboutTeam_t .cont{padding-top: 16px; margin-top: 10px;}
}








.navLine{}
.navLine ul{display:flex; flex-wrap:nowrap; justify-content: center;}
.navLine li{padding: 0 5%; cursor: pointer;position: relative;}
.navLine li::before{content: '';position:absolute; top:50%; transform:translate(0,-50%); left: 0; width: 1px; height: 0.2rem; background: #DDD;}
.navLine li:first-child::before{display: none;}
.navLine p,.navLine a{display: block; padding: .14rem 0; font-size: 0.2rem; font-weight: 300; color: #999; text-align: center; position: relative;}
.navLine li:hover p,
.navLine li:hover a,
.navLine li.active p,
.navLine li.active a{color: var(--i_color);}
.navLine a::before{content: ''; position:absolute; left:50%; transform:translate(-50%,0); bottom: 0; width: 0; height: 2px; background: var(--i_color); transition:all .5s ease;}
.navLine li:hover a::before,
.navLine li.active a::before{width: 100%;}

.aboutCE_nav{border-bottom: 1px solid #DDD;}

@media screen and (max-width:1200px) {
	.navLine p,.navLine a{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.navLine li{padding: 0 3%;}
	.navLine p,.navLine a{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.navLine p,.navLine a{font-size: 14px;}
}







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

.aboutCE_list{position:relative; overflow:hidden}
.aboutCE_list .swiper-wrapper{display:flex; position:relative; width:100%}
.aboutCE_list li{flex-shrink:0; font-size: 0; position:relative; transition:all .5s ease;}

.aboutCE_list li img{width: 100%; height: 60vh; object-fit: cover;}
.aboutCE_list .txt{opacity: 0; position: absolute; left: 0; bottom: -.2rem; width: 100%; background: rgb(0 0 0 / 60%);}
.aboutCE_list .txt p{text-align: center; padding:.2rem .1rem; font-size: 0.18rem; color: #FFF; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}

.aboutCE_list .swiper-slide-next .txt{opacity: 1; bottom: 0; transition:all .5s .3s;}

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

@media screen and (min-width:561px) {
	.aboutCE_list .swiper-slide-next{width: 50% !important;}
}

@media screen and (max-width:1440px) {
	.aboutCE_list li img{height: 55vh;}
}
@media screen and (max-width:1024px) {
	.aboutCE_list li img{height: 42vh;}

	.aboutCE_list .txt p{padding: 10px 10px; font-size: 16px;}
}
@media screen and (max-width:768px) {
	.aboutCE_list li img{height: 30vh;}

	.aboutCE_list .txt p{font-size: 14px;}

	.aboutCE-pagination{margin-top: 20px;}
}
@media screen and (max-width:560px) {
	.aboutCE_list li img{height: 20vh;}
	.aboutCE-pagination{margin-top: 14px;}

	.aboutCE_list .txt{opacity: 1; bottom: 0;}
}







.aboutHonor{background: #F7F7F7;}

.aboutHonor_cont{display:flex; flex-wrap:wrap; align-items: center; background: #FFF;}
.aboutHonor_cont>img{flex-shrink: 0; width: 26%;}

.aboutHonor_gallery{width: 74%; box-sizing: border-box; padding: 0 .3rem;}

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

.aboutHonor_list .pic{width: 100%; aspect-ratio: 336 / 246; background: #F3F3F3; position: relative;}
.aboutHonor_list .pic img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width: 80%; max-height: 80%;}

.aboutHonor_list p{margin-top: 0.16rem; text-align: center; font-size: 0.16rem; color: #666; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.aboutHonor-line{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .2rem;}

.aboutHonor-pagination{flex-shrink: 0; font-size: 0;}
.aboutHonor-pagination .swiper-pagination-current{font-size: 0.18rem; font-weight: bold;}

.aboutHonor-line>i{width: 100%; height: 1px; background: #DDD;}

.aboutHonor-total{flex-shrink: 0; font-size: 0.18rem; color: var(--i_color); font-weight: bold;}

@media screen and (max-width:1024px) {
	.aboutHonor_cont>img{display: none;}
	.aboutHonor_gallery{width: 100%; padding: 40px 20px;}
}
@media screen and (max-width:768px) {
	.aboutHonor-pagination .swiper-pagination-current, .aboutHonor-total{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.aboutHonor_list p{margin-top: 10px; font-size: 14px;}
}








.solList{}
.solList li{margin-bottom: 0.7rem;}
.solList a{display:flex; flex-wrap:nowrap; align-items: center;}

.solList .pic{flex-shrink: 0; width: 48%; aspect-ratio: 784 / 564; position: relative; overflow: hidden;}
.solList .pic img{width: 100%; height: 100%; object-fit: cover; transition:all .5s ease;}

.solList .txt{width: 100%; box-sizing: border-box; padding: 0 3vw;}
.solList .txt h5{font-size: 0.26rem; font-weight: bold; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.solList .txt span{padding-top: 0.18rem; margin-top: 0.18rem; border-top: 1px solid #DDD; font-size: 0.18rem; color: #666; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:4;}

.solList li:nth-child(even){background: #F7F7F7;}
.solList li:nth-child(even) .txt{order: -1;}

.solList li:hover img{transform: scale(1.05, 1.05);}
.solList li:hover .txt h5{color: var(--i_color);}
.solList li:hover .i_more{background: var(--i_color); border-color: var(--i_color);}
.solList li:hover .i_more iconify-icon, .solList li:hover .i_more i{color: #FFF;}

@media screen and (max-width:1024px) {
	.solList li{margin-bottom: 50px;}
	.solList .txt h5{font-size: 18px;}
	.solList .txt span{padding-top: 10px; margin-top: 10px; font-size: 15px; -webkit-line-clamp:2}
}
@media screen and (max-width:768px) {
	.solList li{background: #F7F7F7;}
	.solList a{flex-wrap: wrap; gap: 0 0;}

	.solList .pic{order: -2; width: 100%;}
	.solList .txt{padding: 30px;}
}
@media screen and (max-width:560px) {
	.solList li{margin-bottom: 30px;}
	.solList .txt{padding: 24px 20px;}
	.solList .txt h5{font-size: 16px;}
	.solList .txt span{font-size: 13px;}
}







.solArt{}
.solArt h1{text-align: center; font-weight: bold;}






.solApp{}
.solApp>h2{text-align: center; font-weight: bold;}
.solApp>h6{text-align: center;}

.solApp_list{display:flex; flex-wrap:wrap; gap: .4rem 2.5%;}
.solApp_list li{width: 23.125%;}

.solApp_list .pic{width: 100%; aspect-ratio: 1 / 1; overflow: hidden;}
.solApp_list .pic img{width: 100%; height: 100%; object-fit: cover;}

.solApp_list .txt{margin-top: 0.2rem; text-align: center;}
.solApp_list .txt p{font-size: 0.18rem; color: #666; line-height: 1.5;}

@media screen and (max-width:1024px) {
	.solApp_list .txt{margin-top: 14px;}
	.solApp_list .txt p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.solApp_list{gap: 30px 4%;}
	.solApp_list li{width: 48%;}
}
@media screen and (max-width:560px) {
	.solApp_list .txt p{font-size: 13px;}
}







.service{}

.serviceCont{display:flex; flex-wrap:wrap; gap: .4rem 2%;}
.serviceCont li{width: 32%; position: relative; cursor: pointer;}
.serviceCont .pic{width: 100%; aspect-ratio: 512 / 384; position: relative; overflow: hidden;}
.serviceCont .pic img{width: 100%; height: 100%; object-fit: cover;}
.serviceCont .pic::before{content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgb(22 53 105 / 40%);}
.serviceCont .pic::after{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 0; background: var(--i_color); transition:all .4s ease;}

.serviceCont .tit{position: absolute; left: 0; bottom: 0; width: 100%; box-sizing: border-box; padding: 0 .2rem; text-align: center; z-index: 3;}
.serviceCont .tit img{height: 0.64rem; -webkit-filter:brightness(0) invert(1); filter:brightness(0) invert(1);}
.serviceCont .tit h5{margin: .16rem auto .2rem; font-size: 0.22rem; color: #FFF; font-weight: bold;}
.serviceCont .txt{display: none; margin-bottom: 0.2rem;}
.serviceCont .txt span{font-size: 0.16rem; color: #FFF; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:5;}

.serviceCont li:hover .pic::after{height: 100%;}
.serviceCont li:hover .tit img{-webkit-filter:none; filter:none;}

@media screen and (max-width:1440px) {
	.serviceCont .tit img{height: 0.56rem;}
}
@media screen and (max-width:1200px) {
	.serviceCont .tit img{height: 0.5rem;}
}
@media screen and (max-width:1024px) {
	.serviceCont{gap: 40px 4%;}
	.serviceCont li{width: 48%;}

	.serviceCont .pic::before, .serviceCont .pic::after{display: none;}

	.serviceCont .tit{position: initial; padding: 0 0; margin-top: 18px; text-align: left;}
	.serviceCont .t{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .14rem;}
	.serviceCont .tit img{flex-shrink: 0; height: 36px; -webkit-filter:none; filter:none;}
	.serviceCont .tit h5{margin: 0 0; font-size: 18px; color: #333;}

	.serviceCont .txt{display: block; margin: 10px 0 0;}
	.serviceCont .txt span{color: #666;}
}
@media screen and (max-width:768px) {
	.serviceCont .txt span{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.serviceCont{gap: 30px 0;}
	.serviceCont li{width: 100%;}
	.serviceCont .tit img{height: 30px;}
}







.inNav{padding-top: 0.3rem; margin-top: 0.2rem; border-top: 1px solid #DDD;}
.inNav ul{display:flex; flex-wrap:wrap; gap: .2rem;}
.inNav li{text-align: center; border: 1px solid var(--i_color); border-radius:4px; position: relative;}
.inNav li::before{content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--i_color);}

.inNav a{display: block; min-width: .6rem; padding: .1rem .2rem; font-size: 0.18rem; position: relative;}

.inNav li.active::before, .inNav li:hover::before{top:initial; bottom: 0; height: 100%;}
.inNav li.active a, .inNav li:hover a{color: #FFF;}

.inNav li::before, .inNav a{transition:all .5s ease;}

@media screen and (max-width:1024px) {
	.inNav a{min-width: .4rem; padding: 8px 20px; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.inNav{padding-top: 20px; margin-top: 14px;}
	.inNav ul{gap: 14px 12px;}
	.inNav a{padding: 8px 14px; font-size: 14px;}
}






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

.nList .date{font-size: 0.16rem; color: #666;}

.nList .pic{margin: .16rem auto 0; width: 100%; aspect-ratio: 506 / 364; position: relative; z-index: 2; overflow: hidden;}
.nList .pic img{width: 100%; height: 100%; object-fit: cover; transition:all .5s ease;}

.nList .txt{margin-top: -4px; padding: .2rem; position: relative;}
.nList .txt::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height:0; background:#F7F7F7; transition:all .5s ease;}
.nList .txt::after{content: ''; position: absolute; right: 0; bottom: 0; width: 0; height: 2px; background: var(--i_color2); transition:all .5s .4s;}
.nList .txt h5{height: 0.66rem; font-size: 0.22rem; font-weight: bold; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; position: relative;}

.nList li:hover img{transform: scale(1.05, 1.05);}
.nList li:hover .txt::before{bottom: initial; top: 0; height: 100%;}
.nList li:hover .txt::after{right: initial; left: 0; width: 100%;}
.nList li:hover .txt h5{color: var(--i_color);}
.nList li:hover .i_more2 i{background: var(--i_color);}

@media screen and (max-width:1200px) {
	.nList .txt h5{height: 0.6rem; font-size: 0.2rem;}
}
@media screen and (max-width:1024px) {
	.nList{gap: 40px 2.5%;}
	.nList .date{font-size: 14px;}
	.nList .txt h5{height: 48px; font-size: 16px;}
}
@media screen and (max-width:768px) {
	.nList{gap: 30px 0;}
	.nList li{width: 100%;}
}
@media screen and (max-width:560px) {
	.nList .date{font-size: 13px;}

	.nList .txt{margin-top: 16px; padding: 0 0;}
	.nList .txt::before,.nList .txt::after{display: none;}
	.nList .txt h5{height: 45px; font-size: 15px;}
}








.contact{}

.contactMain{display:flex; flex-wrap:wrap;}

.contactBox{width: 46%;}
.contactBox .pic{position: relative;}
.contactBox .pic img{width: 100%;}
.contactBox .t{position: absolute; left: 0; bottom: 0; width: 100%; box-sizing: border-box; padding: .2rem; display:flex; flex-wrap:nowrap; gap: 0 .24rem;}
.contactBox .t iconify-icon{flex-shrink: 0; font-size: 0.8rem; color: #FFF;}
.contactBox .t h5{color: #FFF; font-weight: bold;}
.contactBox .t p{margin-top: 0.14rem; color: #FFF;}

.contactList{}
.contactList li{}
.contactList li{}
.contactList li{margin-bottom: 0.3rem; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .1rem;}
.contactList iconify-icon{flex-shrink: 0; font-size: 0.24rem; color: var(--i_color);}
.contactList p,.contactList a{font-size: 0.18rem;}
.contactList b{font-weight: bold;}
.contactList a:hover{color: var(--i_color2);}

.contactMedia{border-top: 1px solid #DDD; display:flex; flex-wrap:wrap; gap: 0 .24rem;}
.contactMedia li{transition:all .5s ease;}
.contactMedia a{display: block; width: 0.44rem; height: 0.44rem; box-sizing: border-box; border: 1px solid rgb(0 0 0 / 30%); border-radius:50%; position: relative; transition:all .5s ease;}
.contactMedia iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.22rem; color: #333;}
.contactMedia li:hover{transform:translate(0,-6px);}
.contactMedia a:hover{border-color: var(--i_color2); background: var(--i_color2);}
.contactMedia a:hover iconify-icon{color: #FFF;}

@media screen and (max-width:1440px) {
	.contactBox .t iconify-icon{font-size: 0.6rem;}
}
@media screen and (max-width:1200px) {
	.contactBox .t iconify-icon{font-size: 0.5rem;}
}
@media screen and (max-width:1024px) {
	.contactBox{width: 100%; margin-bottom: 40px;}

	.contactMedia{gap: 0 .2rem;}
	.contactMedia a{width: 0.4rem; height: 0.4rem;}
	.contactMedia iconify-icon{font-size: .2rem;}
}
@media screen and (max-width:768px) {
	.contactBox .t iconify-icon{font-size: 40px;}
}
@media screen and (max-width:560px) {
	.contactBox .t{align-items: center; gap: 0 14px;}
	.contactBox .t iconify-icon{font-size: 30px;}
	.contactBox .t p{display: none;}

	.contactList li{margin-bottom: 24px;}
	.contactList p, .contactList a{font-size: 16px;}
}




.contactForm{margin-left: auto; width: 48%; box-sizing: border-box; border: 1px solid #DDD; padding: .7rem; background: #F7F7F7;}

.contactForm>h4{font-weight: bold;}
.contactForm>h6{margin-top: 0.4rem; margin-bottom: 0.5rem;}

@media screen and (max-width:1440px) {
	.contactForm{padding: .5rem;}
	.contactForm>h6{margin-top: 0.2rem;}
}
@media screen and (max-width:1366px) {
	.contactForm>h6{margin-bottom: 0.3rem;}
}
@media screen and (max-width:1200px) {
	.contactForm{padding: .4rem;}
}
@media screen and (max-width:1024px) {
	.contactForm{width: 100%;}
}
@media screen and (max-width:560px) {
	.contactForm{padding: 30px 20px;}
	.contactForm>h6{font-size: 14px;}
}





#wpforms-116{
	--wpforms_input_height:50px;
	--wpforms_textarea_height:120px;
	--wpforms_input_font_size: 16px;
	--wpforms-field-border-radius: 0;
	--wpforms-button-background-color: var(--i_color);
	--wpforms-button-border-color: var(--i_color);
	--wpforms-page-break-color: var(--i_color)
}
#wpforms-116{margin:0; padding:0;}
#wpforms-form-116{width:100%; position:relative;}

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

/* 下拉菜单样式 */
/* #wpforms-116 .choices{width: 100%; max-width: 100% !important; height: var(--wpforms_input_height);}
#wpforms-116 .choices__inner{background: #F2F4F5; border: none !important; height: 100%;}
.wpforms-container .wpforms-field .wpforms-field-row:before{display: none !important;} */

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

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

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

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

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

@media screen and (max-width:560px) {
	#wpforms-116 .wpforms-field-container>.wpforms-field{width: 100% !important; margin-bottom: 10px;}
}







.map{font-size: 0; overflow: hidden;}
.map iframe{width: 100vw; height: 70vh;}

@media screen and (max-width:1024px) {
	.map iframe{height: 55vh;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}


