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

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





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

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






/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgb(255 255 255 / 80%);
	z-index: 2014;
	transition:all .5s ease;
}
header::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: #EEE;}
header.header_on, header:hover{background: #FFF; }


header .wrap{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: auto;
		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: #111;
		white-space: nowrap;
		text-transform: uppercase;
		font-weight: bold;
		position: relative;
	}
	.i_nav>li>a::before{content: ''; position: absolute; left: 0; bottom: 32%; width: 0; height: 2px; background: var(--i_color); 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_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 .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: var(--i_color);
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 3px;
	background: var(--i_color);
	position: absolute;
	left: 0;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before {
	top: 0;
}
.nav_menu::after {
	bottom: 0;
}


.nav_menu.on i {
	opacity: 0
}

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

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

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





.top_r{--size:.26rem}
.top_r {
	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.14rem; background: #333;}
.top_search_ico iconify-icon{font-size: var(--size);color: #333;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_search_ico.on iconify-icon{color: var(--i_color);}

/* 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{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 #333;} */
.top_language_btn iconify-icon{font-size: var(--size);color: #333;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_language_btn.on iconify-icon{color: var(--i_color);}
.top_language_btn.on::before{border-top-color:var(--i_color);}

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

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

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






.full_header_height{display: block; 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: 100vh;
	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: 999999;
}
.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;}
}





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


.i_tit{}
.i_tit>span{display: table;}
.i_tit h3{font-weight: bold; position: relative;}
.i_tit h3 i{font-weight: bold; color: var(--i_color);}
.i_tit .line{display: table; margin-top: 4px; width: 1.6rem; height: 2px; background:linear-gradient(to right, var(--i_color), transparent);}
.i_tit h6{margin-top: 0.24rem; font-size: 0.18rem; color: #777; line-height: 1.6;}

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

.i_tit.center{text-align: center;}
.i_tit.center>span{margin-left: auto; margin-right: auto;}
/* .i_tit.center .line{margin-left: auto;margin-right: auto;} */

@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{margin-top: 14px; font-size: 13px;}
}





.i_more{display: table; border: 1px solid var(--i_color2);}
.i_more span{padding: .06rem .2rem; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .16rem;}
.i_more b{font-size: 0.18rem; color: var(--i_color2); position: relative;}
.i_more iconify-icon{font-size: 0.3rem; color: var(--i_color2)}

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

.i_more:hover{background: var(--i_color2); transform:translate(0,-6px); box-shadow: 0 3px 6px rgb(0 0 0 / 30%);}
.i_more.active{background: var(--i_color2);}
.i_more.active b, .i_more.active iconify-icon, .i_more:hover b, .i_more:hover iconify-icon{color: #FFF;}

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

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






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







.homeCate{background:linear-gradient(to right, #EEF5FF, transparent);}

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

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

.homeCate_list li {
	flex-grow: 1;
	width: 12%;
	height: 100%;
	position: relative;
	transition: all 0.7s ease;
	overflow: hidden;
	z-index: 2;
}
.homeCate_list li::after{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 25%; background:linear-gradient(to bottom, transparent, rgb(0 67 138 / 80%)); transition:all .7s ease; z-index: 3;}
.homeCate_list li a{display: block; width: 100%; height: 100%;}

.homeCate_list li img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}
.homeCate_list .p2{opacity: 0; visibility: hidden;}

.homeCate_list p{position: absolute; left: 0; bottom: .2rem; width: 100%; box-sizing: border-box; padding: 0 .16rem; text-align: center; font-size: 0.22rem; color: #FFF; line-height: 1.4; font-weight: bold; z-index: 4;}

.homeCate_list li.active{flex-grow: 1000 !important;}
.homeCate_list li.active .p1{opacity: 0; visibility: hidden;}
.homeCate_list li.active .p2{opacity: 1; visibility: visible; z-index: 2;}

@media screen and (max-width:1440px) {
	.homeCate_list p{font-size: 0.2rem;}
}
@media screen and (max-width:1200px) {
	.homeCate_list p{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.homeCate_list::before{display: none;}
	.homeCate_list ul{position: initial; flex-wrap:wrap; gap: 30px 3%;}
	.homeCate_list li{width: 31.33%; flex-grow:initial}
	.homeCate_list li:nth-child(1),.homeCate_list li:nth-child(2){width: 48.5%;}
	.homeCate_list li::after{display: none;}
	.homeCate_list li img{position: initial; box-sizing: border-box; border: 1px solid #DDD;}
	.homeCate_list .p2{display: none;}
	.homeCate_list p{position: initial; margin-top: 10px; color: #333; padding: 0 0; font-size: 18px;}
}
@media screen and (max-width:768px) {
	.homeCate_list p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.homeCate_list p{font-size: 14px;}
}






.homeAbout{background:url(static/images/home-about-bg.webp) no-repeat center; background-size: cover; position: relative;}
.homeAbout::before{content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background:linear-gradient(to right, #EEF5FF, transparent);}

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

.homeAbout .t{width: 100%;}
.homeAbout article{padding-right: 0.3rem; height: 3.6rem; font-size: 0.18rem; line-height: 1.8; overflow-y: auto;}
.homeAbout article::-webkit-scrollbar{width:5px;}
.homeAbout article::-webkit-scrollbar-thumb{background: var(--i_color)}

.homeAbout .p{flex-shrink: 0; width: 43%; position: relative; overflow: hidden;}
.homeAbout .p img{width: 100%; transition:all .5s ease;}
.homeAbout .p:hover>img{transform: scale(1.05, 1.05);}

@media screen and (max-width:1024px) {
	.homeAbout .wrap{flex-wrap: wrap; gap: 36px 0;}
	.homeAbout article{padding: 0 0; height: auto; font-size: 15px; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:6;}

	.homeAbout .p{width: 100%; max-width: 4.6rem;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}






.v_btn{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); cursor: pointer;}
.v_btn i{display: block; width: .7rem; height: .7rem; background: #FFF; border-radius:50%; position: relative;}
.v_btn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.36rem; color: var(--i_color2);}

.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) {
	.v_btn i{width: 0.6rem; height: 0.6rem;}
	.v_btn iconify-icon{font-size: 0.26rem;}
}




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




.homeAdv{}

.homeAdv_list{display:flex; flex-wrap:wrap; gap: .4rem 2.5%;}
.homeAdv_list dt{width: 31.66%; box-sizing: border-box; padding: .3rem .3rem 1rem; box-shadow: 0 0 .1rem rgb(229 234 240 / 80%); position: relative; overflow: hidden;}
.homeAdv_list dt::before{content: ''; position: absolute; right: 0; top: 0; width: 0; height: 5px; background: var(--i_color); transition:all .5s ease;}
.homeAdv_list dt::after{opacity: 0; content: ''; position: absolute; right: -.4rem; bottom: -.2rem; width: 1.6rem; height: 1.6rem; background:url(static/images/homeAdv_logo.webp) no-repeat right bottom; background-size: contain; transition:all .5s ease;}

.homeAdv_list dt span{height: 1rem; margin-bottom: 0.3rem; display:flex; flex-wrap:nowrap; gap: 0 .3rem;}
.homeAdv_list span img{margin-left: auto; flex-shrink: 0; height: 0.8rem; transition:all .5s ease;}
.homeAdv_list h5{margin-top: 0.1rem; font-size: 0.24rem; font-weight: bold;}

.homeAdv_list .t{font-size: 0.16rem; color: #666; line-height: 1.6; position: relative; z-index: 2;}

.homeAdv_list dt:hover::before{right: initial; left: 0; width: 100%;}
.homeAdv_list dt:hover::after{opacity: 1; right: 0;}
.homeAdv_list dt:hover span img{transform:rotate(-20deg);}

@media screen and (max-width:1200px) {
	.homeAdv_list span img{height: 0.64rem;}
	.homeAdv_list h5{font-size: 0.2rem;}
}
@media screen and (max-width:1024px) {
	.homeAdv_list{gap: 30px 0;}
	.homeAdv_list dt{width: 100%; padding: 30px 30px 40px;}
	.homeAdv_list dt::before{height: 3px;}
	.homeAdv_list dt span{margin-bottom: 20px; height: auto; align-items: center;}
	.homeAdv_list h5{margin: 0 0;}
	.homeAdv_list span img{height: 50px;}
}
@media screen and (max-width:768px) {
	.homeAdv_list h5{font-size: 18px;}
	.homeAdv_list span img{height: 40px;}
}
@media screen and (max-width:560px) {
	.homeAdv_list{gap: 20px 0;}
	.homeAdv_list dt{padding: 24px 20px 30px;}
	.homeAdv_list h5{font-size: 17px;}
	.homeAdv_list span img{height: 34px;}
	.homeAdv_list .t{font-size: 14px;}
}






.homeHonor{background: #F8FCFF;}

.abHonor_list{position:relative; overflow:hidden}
.abHonor_list .swiper-wrapper{display:flex; position:relative; width:100%}
.abHonor_list li{flex-shrink:0; position:relative; aspect-ratio: 33 / 46; font-size: 0;}
.abHonor_list li span{opacity: .2; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 70%; aspect-ratio: 33 / 46; box-sizing: border-box; padding: 6px; border: 4px solid #555; transition:width .5s ease;}
.abHonor_list li img{width: 100%; height: 100%; object-fit: cover;}

.abHonor_list .swiper-slide-prev span,
.abHonor_list .swiper-slide-next span{width: 85%; opacity: .7;}
.abHonor_list .swiper-slide-prev span{left: 0; transform:translate(0,-50%);}
.abHonor_list .swiper-slide-next span{right: 0; left: initial; transform:translate(0,-50%);}
.abHonor_list .swiper-slide-active span{opacity: 1; width: 100%;}

.abHonor-pagination{display:none}

.abHonor-prev,.abHonor-next{position:absolute; top:50%; transform:translate(0,-50%); width: 0.44rem; height: 0.44rem; box-sizing: border-box; border: 1px solid var(--i_color2); border-radius:50%; cursor: pointer;}
.abHonor-prev{left: -.4rem;}
.abHonor-next{right: -.4rem;}
.abHonor-prev iconify-icon,.abHonor-next iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.2rem; color: var(--i_color2);}
.abHonor-prev:hover, .abHonor-next:hover{background: var(--i_color2);}
.abHonor-prev:hover iconify-icon, .abHonor-next:hover iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.abHonor-prev,.abHonor-next{display: none;}
}
@media screen and (max-width:560px) {
	.abHonor_list li span{padding: 4px; border-width: 3px;}
}







.homePartners{}

.homePartners_list{opacity: 0; position:relative; overflow:hidden}
.homePartners_list .swiper-wrapper{
	display:flex; position:relative; -webkit-transition-timing-function: linear !important;
	-moz-transition-timing-function: linear !important;
	-ms-transition-timing-function: linear !important;
	-o-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}
.homePartners_list li{flex-shrink:0; position:relative; aspect-ratio: 4 / 2;}
.homePartners_list img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width: 90%; max-height: 90%; object-fit: contain;}

.homePartners_list.p2{margin-top: 0.4rem;}

.homePartners_loading{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.44rem; color: #888; }

.homePartners_global{text-align: center;}
.homePartners_global img{width: 100%;}

@media screen and (max-width:560px) {
	.homePartners_list.p2{margin-top: 24px;}
}






.homeNews{}

.homeNews_top{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 3%;}
.homeNews_top .pic{flex-shrink: 0; width: 50%; overflow: hidden;}
.homeNews_top .pic img{width: 100%; aspect-ratio: 73 / 38; object-fit: cover; transition:all .5s ease;}

.homeNews_top .txt{width: 100%;}
.homeNews_top .txt i{font-size: 15px; color: #666;}
.homeNews_top .txt h5{margin: .1rem 0 .2rem; font-size: 0.24rem; line-height: 1.5; font-weight: bold; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.homeNews_top .txt p{font-size: 0.16rem; color: #666; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:4;}

.homeNews_top:hover img{transform: scale(1.05, 1.05);}
.homeNews_top:hover h5{color: var(--i_color);}

.homeNews_list{display:flex; flex-wrap:wrap; gap: .5rem 2%;}
.homeNews_list li{width: 32%; box-sizing: border-box; border: 1px solid #DDD; transition:all .5s ease;}
.homeNews_list a{display: block; padding: .24rem;}
.homeNews_list i{font-size: 15px; color: #666;}
.homeNews_list h5{margin: .12rem 0 .2rem; font-size: 0.18rem; line-height: 1.4; font-weight: bold; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.homeNews_list p{font-size: 0.16rem; color: #666; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;}
.homeNews_list li:hover{border-color: var(--i_color);}
.homeNews_list li:hover h5{color: var(--i_color);}

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

	.homeNews_top .txt h5{font-size: 18px;}
	.homeNews_top .txt p{font-size: 14px;}

	.homeNews_list h5{font-size: 17px;}
	.homeNews_list p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.homeNews_top{flex-wrap: wrap; gap: 20px 0;}
	.homeNews_top .pic{width: 100%;}
	.homeNews_top .txt h5{font-size: 17px;}

	.homeNews_list{gap: 20px 0;}
	.homeNews_list li{width: 100%;}
	.homeNews_list h5{margin: 10px 0;}
}
@media screen and (max-width:560px) {
	.homeNews_top .txt h5{margin: 10px 0; font-size: 16px;}

	.homeNews_list a{padding: 20px 16px;}
	.homeNews_list h5{font-size: 16px;}
}





.homeQuote{margin-bottom: -.5rem; box-sizing: border-box; padding: .5rem; background: #F5F7FA; position: relative; z-index: 3;}

.homeQuote .i_tit h6{width: 60%; margin-left: auto;margin-right: auto; color: #111;}
.homeQuote_mail{display: table; margin: .22rem auto .26rem; font-size: 0.24rem; font-weight: bold;}

#wpforms-116{
	--wpforms_input_height:48px;
	--wpforms_textarea_height:80px;
	--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 6px;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; font-size:var(--wpforms_input_font_size); border-radius:var(--wpforms-field-border-radius); 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:#AAA; 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_4-container,
#wpforms-116-field_1-container{width: 49% !important;}

/* 提交按钮样式 */
#wpforms-116 .wpforms-submit-container{width: 220px; margin: 0 auto; padding:0 0; position: relative; overflow: hidden;}
#wpforms-116 .wpforms-submit-container button{width: 100%; height:44px; font-size: 15px; color: #FFF; background: var(--i_color2);}
#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: #8f231f;}

@media screen and (max-width:1024px) {
	.homeQuote{padding: 40px 30px;}
	.homeQuote .i_tit h6{width: 100%;}
	.homeQuote_mail{font-size: 20px;}
}
@media screen and (max-width:560px) {
	.homeQuote{padding: 30px 20px;}
	.homeQuote_mail{margin-top: 14px; font-size: 18px;}

	#wpforms-116 .wpforms-field-container>.wpforms-field{width: 100% !important;}
}





/* Footer */
footer{background:url(static/images/footer_bg.webp) no-repeat center; background-size: cover;}
.homeFooter{padding-top: .5rem;}

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

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

.fContact{flex-shrink: 0; width: 28%;}
.fContact li{margin-bottom: 0.2rem; display:flex; flex-wrap:nowrap; gap: 0 .1rem;}
.fContact li iconify-icon{font-size: 0.24rem; color: #FFF;}
.fContact li a,.fContact li p{margin-top: 1px; font-size: 0.16rem; color: #FFF; line-height: 1.4;}
.fContact li a:hover{text-decoration: underline;}

.fNav{}
.fNav li{}
.fNav li a{display: block; padding: 8px 0; font-size: 0.16rem; color: #FFF;}
.fNav li a:hover{text-decoration: underline;}

.fSlogan{flex-shrink: 0; width: 20%;}
.fSlogan img{height: 0.8rem;}
.fSlogan h3{font-size: 0.22rem; color: #FFF; font-weight: bold; line-height: 1.5;}
.fSlogan p{margin: .1rem 0 .3rem; font-size: 0.16rem; color: #FFF; line-height: 1.6;}

.fMedia{display:flex; flex-wrap:nowrap; gap: 0 .2rem;}
.fMedia a{display: block; transition:all .5s ease;}
.fMedia iconify-icon{font-size: 0.24rem; color: #FFF;}
.fMedia a:hover{transform:translate(0,-4px);}

.fCR{padding: .22rem 0 .36rem; border-top: 1px solid rgb(255 255 255 / 15%);}
.fCR p,.fCR a{font-size: 0.16rem; color: rgb(255 255 255 / 80%); line-height: 1.4;}
.fCR a:hover{text-decoration: underline;}

@media screen and (max-width:1024px) {
	.fTit{font-size: 18px;}

	.fNav{display: none;}

	.fMain{flex-wrap: wrap; gap: 40px 0;}
	.fSlogan{order: -1; width: 100%;}
	.fSlogan img{height: 70px;}
	.fSlogan h3{font-size: 20px;}
	.fContact{width: 100%;}
	.fContact li:last-child{margin-bottom: 0;}
}
@media screen and (max-width:768px) {
	.fSlogan img{height: 60px;}
}
@media screen and (max-width:560px) {
	.fSlogan img{height: 50px;}
	.fSlogan h3{margin-top: 6px; font-size: 17px;}
	.fSlogan p{font-size: 15px;}
	.fMedia iconify-icon{font-size: 22px;}
	.fContact li{margin-bottom: 14px;}
	.fContact li iconify-icon{font-size: 20px;}
	.fCR p,.fCR a{font-size: 14px;}
}






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

.banner__{width: 100%; font-size: 0; position: relative; overflow: hidden;}
.banner__>img{width: 100vw; aspect-ratio: 192 / 52; object-fit: cover;}





/* Breadcrumb */
.in_position{padding:.2rem 0;background:#F7F7F7;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 3.5%;}
.catSide{flex-shrink: 0; width: 24%; box-sizing: border-box; padding: .4rem .2rem; position: relative; background: #FFF;}
.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{}
.cat_nav_tit{text-align: center; margin-bottom: 0.24rem; position: relative;}
.cat_nav_tit h4{font-size: 0.3rem; 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{border-bottom: 1px solid #DDD; position: relative;}

.cat_fold_tit{display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;padding: 0 .14rem 0 .2rem; gap: 0 .2rem; background: #FFF;}
.cat_fold_tit a{padding: .16rem 0; width: 100%; font-size: 0.2rem; 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{background: var(--i_color);}
.active .cat_fold_tit i{border-color: #FFF;}
.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{display: none; margin-top: 0.16rem; padding: 0 0 .2rem; background: #FFF; border-radius:6px;}
.cat_fold_sub dt{box-sizing: border-box; position: relative;}
.cat_fold_sub dt::before{content: ''; position: absolute; left: 0; top: 0; width: 0; height: 100%; background: #F7F7F7;}
.cat_fold_sub a{display: block;padding: .14rem .2rem;font-size: 0.17rem; color: #666; position: relative; transition:all .5s ease;}
.cat_fold_sub dt:hover::before, .cat_fold_sub dt.active::before{width: 100%; transition:all .5s ease;}
.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;}
}
@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{border: none; 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: #FFF; border: 1px solid var(--i_color);}
	.cat_nav_tit h4{font-size: 18px; color: var(--i_color);}
	.cat_nav_tit iconify-icon{display: block; margin-left: auto;font-size: 26px;color: var(--i_color);}

	.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: 12px;}
	.cat_fold_sub a{padding: 12px 20px; font-size: 15px;}
}





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

.pItem{display: block;}
.pPic{width: 100%; aspect-ratio: 1 / 1; overflow: hidden;}
.pPic img{width: 100%; height: 100%; object-fit: cover; transition:all .5s ease;}
.pTxt{padding: .14rem;}
.pTxt h5{height: .54rem; font-size: 0.18rem; line-height: 1.5; font-weight: bold; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.pTxt span{margin-top: 0.14rem; padding-top: 0.1rem;; position: relative; display:flex; flex-wrap:wrap; align-items: center;}
.pTxt span::before{content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 1px; background: #CCC;}
.pTxt p{font-size: 0.17rem;}
.pTxt iconify-icon{margin-left: auto; height: .3rem; font-size: 0.3rem; color: #777;}

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

@media screen and (max-width:1024px) {
	.pTxt h5{height: 48px; font-size: 16px;}
	.pTxt p{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.pList{gap: 30px 4%;}
	.pList li{width: 48%;}
}
@media screen and (max-width:560px) {
	.pList{gap: 20px 4%;}

	.pTxt h5{height: 42px; font-size: 15px; line-height: 1.4;}
	.pTxt span{margin-top: 8px; padding-top: 6px;}
	.pTxt p{font-size: 13px;}
	.pTxt iconify-icon{height: 24px; font-size: 24px;}
}






/* 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:#FFF;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{background:linear-gradient(to bottom, transparent, #F7F7F7);}
.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: #FFF;}
.thumbnail-pagination .swiper-pagination-current{font-size: 0.22rem;color: #FFF;}

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

	.p_atlas{width: 100%; max-width: 6rem; margin: 0 auto 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%;}

.p_title h1{font-size: 0.24rem; color: #111; line-height: 1.4; position: relative; font-weight: bold;}

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

.pMenu{border-top: 1px solid var(--i_color); display:flex; flex-wrap:wrap; align-items: center;}
.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; color: #111; font-weight: bold;}
.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:#999;}
.p_share dt:hover{transform:translate(0,-4px);}
.p_share dt:hover iconify-icon{color: var(--i_color2);}

.p_feat{}
.p_feat>h5{margin-bottom: 0.1rem; font-size: 0.22rem; font-weight: bold;}
.p_feat dl{display:flex; flex-wrap:wrap; gap: .3rem .3rem;}
.p_feat dt{box-sizing: border-box; width: 28%; padding: .26rem; background: #FFF;}
.p_feat dt iconify-icon{font-size: 0.46rem; color: var(--i_color);}
.p_feat dt p{margin-top: 0.1rem; font-size: 0.17rem; font-weight: bold;}

@media screen and (max-width:1200px) {
	.p_des article{font-size: 0.17rem;}
}
@media screen and (max-width:1024px) {
	.p_title h1{font-size: 20px;}
	.p_share a iconify-icon{font-size: 22px;}

	.p_feat>h5{font-size: 18px;}
	.p_feat dl{gap: 30px 3%;}
	.p_feat dt{width: 31.33%;}
}
@media screen and (max-width:768px) {
	.p_feat dt iconify-icon{font-size: 40px;}
}
@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_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;}

	.p_feat dl{gap: 14px 0;}
	.p_feat dt{padding:14px 20px; width: 100%; display:flex; flex-wrap:wrap; align-items: center; gap: 0 10px;}
	.p_feat dt iconify-icon{font-size: 34px;}
	.p_feat dt p{margin: 0 0; font-size: 16px;}
}







.pContent{background: #FFF;}

.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 .8rem; 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: 18px;}
	.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='%2300438A' 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);}

@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;}
.p_tags a:hover{background: var(--i_color); 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{position:relative; overflow:hidden}
.pRelated_list .swiper-wrapper{display:flex; position:relative; width:100%}
.pRelated_list li{flex-shrink:0; position:relative}

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

@media screen and (max-width:560px) {
	.pRelated-pagination{margin-top: 20px;}
	.pRelated-pagination .swiper-pagination-bullet{width: 6px; height: 6px;}
	.pRelated-pagination .swiper-pagination-bullet-active{width: 8px; height: 8px;}
}






.about__{background:url(static/images/about-bg.webp) no-repeat center; background-size: contain;}
.about__ article{font-size: 0.18rem; line-height: 1.8; text-align: center; color: #555;}

.about__num{display:flex; flex-wrap:nowrap; justify-content: space-between; gap: 0 5vw;}
.about__num dt{width: 100%; text-align: center;}
.about__num .num{display:flex; flex-wrap:wrap; justify-content: center; align-items: baseline; font-size: 0.3rem; font-weight: bold;}
.about__num .num i{font-size: 0.5rem; color: #222; font-weight: bold;}

.about__num span{margin-top: 0.1rem; display:flex; flex-wrap:wrap; justify-content: center; align-items: center; gap: 0 .1rem;}
.about__num img{height: 0.4rem;}
.about__num p{font-size: 0.18rem; color: #666;}

.about__pic{position: relative; overflow: hidden;}
.about__pic::before{content: ''; position:absolute; top:0; left:0; width:100%; height:100%; background:rgb(0 67 138 / 50%);}
.about__pic img{width: 100vw;}
.about__pic .about__btn{position:absolute; top:45%; left:50%; transform:translate(-50%,-50%);}
.about__pic p{position: relative; top: .7rem; font-size: 0.24rem; color: #FFF; font-weight: bold;}

@media screen and (max-width:1024px) {
	.about__ .i_tit .line{margin: 12px auto 0;}
	.about__ article{font-size: 16px;}

	.about__num .num{font-size: 24px;}
	.about__num .num i{font-size: 40px;}
	.about__num span{flex-direction: column; gap: 10px 0;}
	.about__num img{height: 34px;}
	.about__num p{font-size: 16px;}

	.about__pic img{aspect-ratio: 4 / 2; object-fit: cover;}
	.about__pic .about__btn{top: 50%;}
	.about__pic p{display: none;}
}
@media screen and (max-width:768px) {
	.about__num{flex-wrap: wrap; gap: 26px 4%;}
	.about__num dt{width: 48%;}
}
@media screen and (max-width:560px) {
	.about__ article{font-size: 15px;}

	.about__num .num{font-size: 20px;}
	.about__num .num i{font-size: 30px;}
	.about__num img{height: 30px;}
	.about__num p{font-size: 14px;}
}






.about__why{}
.about__why .wrap{display:flex; flex-wrap:wrap; align-items: flex-start;}

.about__why .t{width: 41%;}


.about__why__list{margin-left: auto; width: 54%;}
.about__why__list dt{width: 100%; box-sizing: border-box; padding: .3rem; margin-top: 0.2rem; display:flex; flex-wrap:nowrap; gap: 0 .24rem;}
.about__why__list dt:first-child{margin-top: 0;}
.about__why__list i{flex-shrink: 0; width: 0.8rem; height: 0.8rem; background: #F4F4F4; border-radius:50%; position: relative;}
.about__why__list i img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); height: 0.42rem;}
.about__why__list .i2{opacity: 0; visibility: hidden;}

.about__why__list h5{font-size: 0.22rem; font-weight: bold;}
.about__why__list p{margin-top: 0.12rem; font-size: 0.16rem; color: #555; line-height: 1.5;}

.about__why__list dt:hover{box-shadow: 0 0 .1rem rgb(0 67 138 / 20%);}
.about__why__list dt:hover i{background: var(--i_color);}
.about__why__list dt:hover .i1{opacity: 0; visibility: hidden;}
.about__why__list dt:hover .i2{opacity: 1; visibility: visible;}
.about__why__list dt:hover h5{color: var(--i_color);}

.about__why__list dt,.about__why__list i,.about__why__list .i1,.about__why__list .i2{transition:all .5s ease;}

@media screen and (max-width:1024px) {
	.about__why .wrap{gap: 30px 0;}
	.about__why .t{width: 100%;}

	.about__why__list{width: 100%;}
	.about__why__list dt{box-shadow: 0 0 .1rem rgb(0 67 138 / 10%);}
	.about__why__list i{width: 60px; height: 60px;}
	.about__why__list i img{height: 30px;}
	.about__why__list h5{font-size: 18px;}
	.about__why__list p{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.about__why__list dt{padding: 30px 20px; flex-wrap: wrap; gap: 20px 0;}
	.about__why__list i{width: 50px; height: 50px;}
	.about__why__list i img{height: 26px;}
	.about__why__list h5{font-size: 17px;}
	.about__why__list p{font-size: 14px;}
}






.history{}

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

.history_top{display:flex; flex-wrap:nowrap; align-items: center; justify-content: space-between;}
.history_top i{font-size: 0.5rem; font-weight: bold; color: var(--i_color);}

.history-navigation{flex-shrink: 0; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .14rem;}
.history-navigation>div{width: 0.44rem; height: 0.44rem; background: #868888; border-radius:50%; position: relative; cursor: pointer;}
.history-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.2rem; color: #FFF;}

.history-navigation>div:hover{background: var(--i_color);}

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

@media screen and (max-width:1024px) {
	.history_top{display: none;}
	.history_cont .line{display: none;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}



.history_show{position:relative; overflow:hidden}
.history_show .swiper-wrapper{display:flex; position:relative; width:100%}
.history_show li{flex-shrink:0; position:relative; display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 .4rem;}
.history_show .pic{flex-shrink: 0; width: 45%; aspect-ratio: 63 / 38; position: relative;}
.history_show .pic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}
.history_show .txt{width: 100%; margin-top: 0.2rem;}
.history_show .txt p{margin-bottom: 0.2rem; padding-left: 0.2rem; font-size: 0.18rem; line-height: 1.6; position: relative;}
.history_show .txt p::before{content: ''; position: absolute; left: 0; top: .1rem; width: 6px; height: 6px; background: var(--i_color); border-radius:50%;}

.history_list{padding-bottom: 10px; position:relative; overflow:hidden}
.history_list::before{content: ''; position: absolute; left: 0; bottom: 14px; width: 100%; height: 1px; background: #CCC;}
.history_list .swiper-wrapper{display:flex; position:relative; width:100%}
.history_list li{flex-shrink:0; position:relative; text-align: center; cursor: pointer; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; -webkit-user-select: none; user-select: none;}
.history_list li h5{font-size: 0.18rem;}
.history_list .round{display: table; margin: .16rem auto 0; position: relative;}
.history_list .round::before,.history_list .round::after{visibility: hidden; content: '';position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); box-sizing: border-box; width: 100%; height: 100%; border-radius:50%;}
.history_list .round::before{background: rgb(0 67 138 / 50%); animation:historyScale 1.6s infinite linear;}
.history_list .round::after{background: rgb(0 67 138 / 70%); animation:historyScale2 2s infinite linear;}
.history_list .round i{display: block; width: 10px; height: 10px; background: #B3B3B3; border-radius:50%; position: relative; z-index: 2;}

.history_list .swiper-slide-thumb-active h5{color: var(--i_color);}
.history_list .swiper-slide-thumb-active .round::before,.history_list .swiper-slide-thumb-active .round::after{visibility: visible;}
.history_list .swiper-slide-thumb-active .round i{background: var(--i_color);}

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.history_show .txt p{margin-bottom: 14px; font-size: 16px;}

	.history_list li h5{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.history_show .swiper-wrapper{align-items: flex-start;}
	.history_show li{flex-wrap: wrap; flex-direction: column;}
	.history_show .pic{width: 100%;}
}
@media screen and (max-width:560px) {
	.history_show .txt p{font-size: 15px;}

	.history_list li h5{font-size: 15px;}
}


@keyframes historyScale{
	0% {
		opacity: 0
	}
	5% {
		opacity: 1
	}
	80% {
		opacity: 0
	}
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(2);
		-ms-transform: translate(-50%, -50%) scale(2);
		-o-transform: translate(-50%, -50%) scale(2);
		-webkit-transform: translate(-50%, -50%) scale(2);
		-moz-transform: translate(-50%, -50%) scale(2)
	}
}
@keyframes historyScale2{
	0% {
		opacity: 0
	}
	5% {
		opacity: 1
	}
	80% {
		opacity: 0
	}
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(3);
		-ms-transform: translate(-50%, -50%) scale(3);
		-o-transform: translate(-50%, -50%) scale(3);
		-webkit-transform: translate(-50%, -50%) scale(3);
		-moz-transform: translate(-50%, -50%) scale(3)
	}
}






.aboutCE{}

.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; aspect-ratio: 89 / 54; overflow: hidden;}
.aboutCE_list li img{width: 100%; height: 100%; object-fit: cover;}
.aboutCE_list .t{opacity: 0; position: absolute; left: 0; bottom: -.46rem; width: 100%; background: rgb(0 67 138 / 70%);}
.aboutCE_list .t p{padding: .12rem .2rem; text-align: center; font-size: 0.18rem; font-weight: bold; color: #FFF; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}

.aboutCE_list .swiper-slide-active .t{opacity: 1; bottom: 0; transition:all .5s .2s;}

.aboutCE-pagination{display:none}

@media screen and (max-width:1024px) {
	.aboutCE_list .t p{font-size: 16px;}

	.aboutCE-pagination{display:block; text-align:center}
	.aboutCE-pagination .swiper-pagination-bullet{width:.2rem; height:2px; display:inline-block; background:#CCC; outline:none; cursor:pointer;}
	.aboutCE-pagination .swiper-pagination-bullet-active{height: 3px; background:var(--i_color)}
}
@media screen and (max-width:560px) {
	.aboutCE_list .t p{font-size: 14px; font-weight: normal;}
}







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

.honor_t{position: absolute; left: 0; top: 20%; width: 100%;}
.honor_t .i_tit{width: 40%;}

.honor_wrap{width: 94%; margin-left: auto;margin-right: auto;}
.honor_pic{display: table; margin-left: auto; width: 71.923%;}

@media screen and (max-width:768px) {
	.honor_t{position: initial; margin-bottom: 30px;}
	.honor_t .i_tit{width: 100%; text-align: center;}
	.honor_t .i_tit>span{margin-left: auto; margin-right: auto;}

	.honor_pic{width: 100%;}
}







.abPartners{}

.abPartners_list{padding: .16rem; position:relative; overflow:hidden}
.abPartners_list .swiper-wrapper{display:flex; position:relative; width:100%}
.abPartners_list li{flex-shrink:0; position:relative; aspect-ratio: 4 / 2; box-sizing: border-box; border: 1px solid #EEE; box-shadow: 0 0 .1rem rgb(0 0 0 / 10%);}
.abPartners_list img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width: 90%; max-height: 90%; object-fit: contain;}

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

@media screen and (max-width:1024px) {
	.abPartners_list li{box-shadow: none;}
}
@media screen and (max-width:768px) {
	.abPartners-pagination .swiper-pagination-bullet{width: 30px;}
}
@media screen and (max-width:560px) {
	.abPartners-pagination .swiper-pagination-bullet{width: 20px;}
}






.caseList{}
.caseList li{margin-bottom: 0.4rem;}
.caseList a{padding: .3rem; background: #F4F4F4; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .3rem;}

.caseList .pic{flex-shrink: 0; width: 24%; aspect-ratio: 258 / 194; overflow: hidden;}
.caseList .pic img{width: 100%; height: 100%; object-fit: cover; transition:all .5s ease;}

.caseList .txt{width: 100%;}
.caseList h5{font-size: 0.2rem; font-weight: bold; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.caseList p{margin-top: 0.2rem; font-size: 0.16rem; color: #666; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;}
.caseList i{display: block; margin-top: 0.18rem; padding-top: 0.18rem; border-top: 1px solid #DDD; font-size: 0.16rem; color: #666}

.caseList a:hover img{transform: scale(1.05, 1.05);}
.caseList a:hover h5{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.caseList li{margin-bottom: 30px;}
	.caseList a{padding: 20px;}
	.caseList .pic{width: 30%;}
	.caseList h5{font-size: 17px; line-height: 1.5;}
	.caseList p{font-size: 14px; -webkit-line-clamp:2;}
	.caseList i{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.caseList .pic{width: 1.9rem;}
	.caseList h5{font-size: 16px;}
	.caseList p{margin-top: 10px; -webkit-line-clamp:1}
	.caseList i{margin-top: 10px; padding-top: 10px;}
}
@media screen and (max-width:560px) {
	.caseList li{margin-bottom: 16px;}
	.caseList a{padding: 14px; gap: 0 20px;}
	.caseList .pic{width: 40%;}
	.caseList p{display: none;}
}






.service__{}

.service__text{width: 60%; position: relative; z-index: 3;}

.service__t{box-sizing: border-box; padding: .4rem; box-shadow: 0 0 .1rem rgb(0 0 0 / 10%); position: relative; background: #FFF; overflow: hidden;}
.service__t::before{content: ''; position: absolute; left: .6rem; bottom: 0; width: 2rem; height: 3rem; background:linear-gradient(to bottom, transparent, rgb(3 106 175 / 6%)); transform:skewX(-20deg);}
.service__t iconify-icon{margin-bottom: 0.1rem; font-size: 0.6rem; color: var(--i_color);}

.service__t h5{margin-bottom: 0.14rem; font-size: 0.22rem; font-weight: bold; line-height: 1.5;}
.service__t span{font-size: 0.16rem; color: #555; line-height: 1.6;}

.service__t article{font-size: 0.16rem; line-height: 1.6;}

.service__pic{position: absolute; right: 0; top: 0; width: 40%; height: 92%; overflow: hidden;}
.service__pic img{position: absolute; left: 0; bottom: 0; width: 100%; min-height: 100%; object-fit: cover;}

@media screen and (max-width:1440px) {
	.service__pic{width: 50%;}
}
@media screen and (max-width:1024px) {
	.service__ .wrap_l{padding-right: 3vw;}
	.service__text{padding-top: 0; width: 100%;}
	.service__t{padding: 30px 30px 40px;}
	.service__t iconify-icon{font-size: 46px;}
	.service__t h5{font-size: 18px;}
	.service__t span{font-size: 14px;}

	.service__pic{position: initial; width: 100%; height: auto;}
	.service__pic img{position: initial; min-height: auto;}
}
@media screen and (max-width:560px) {
	.service__t{padding: 30px 20px 40px;}
	.service__t iconify-icon{font-size: 40px;}
	.service__t h5{font-size: 17px;}
	.service__t span{font-size: 13px;}
}






.serAdv{background: #F4F4F4;}

.serAdv_list{display:flex; flex-wrap:wrap; gap: .44rem 3%;}
.serAdv_list dt{width: 31.33%; background: #FFF; display:flex; flex-wrap:wrap; box-shadow: 0 0 .1rem rgb(0 0 0 / 10%);}

.serAdv_list .pic{width: 100%; aspect-ratio: 4 / 3; position: relative; overflow: hidden;}
.serAdv_list .pic img{width: 100%; height: 100%; object-fit: cover;}

.serAdv_list .txt{width: 100%; box-sizing: border-box; padding: .2rem;}
.serAdv_list .txt h5{padding-bottom: .1rem; margin-bottom: .1rem; border-bottom: 1px solid var(--i_color); font-size: 0.2rem; font-weight: bold;}
.serAdv_list .txt span{font-size: 0.16rem; color: #666; line-height: 1.5;}

.serAdv_list dt:nth-child(even) .txt{order: -1;}

@media screen and (max-width:1024px) {
	.serAdv_list{gap: 30px 0}
	.serAdv_list dt{width: 100%; align-items: center;}

	.serAdv_list .pic{width: 50%;}
	.serAdv_list .txt{width: 50%; padding: 20px 32px;}
}
@media screen and (max-width:768px) {
	.serAdv_list .pic{order:-2; width: 100%;}
	.serAdv_list .txt{width: 100%;}
	.serAdv_list .txt h5{font-size: 18px;}
}
@media screen and (max-width:560px) {
	.serAdv_list{gap: 20px 0;}
	.serAdv_list .txt{padding: 26px 20px;}
	.serAdv_list .txt h5{font-size: 17px;}
	.serAdv_list .txt span{font-size: 14px;}
}





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

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

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

.svApp_list li {
	flex-grow: 1;
	width: 20%;
	height: 100%;
	position: relative;
	transition: all 0.7s ease;
	cursor: pointer;
	overflow: hidden;
	z-index: 2;
}
.svApp_list li::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 50%; background:linear-gradient(to bottom, transparent, rgb(0 0 0 / 78%)); z-index: 2;}
.svApp_list .bg{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}
.svApp_list .t{position: absolute; left: 0; bottom: .2rem; width: 100%; box-sizing: border-box; padding: 0 .3rem; z-index: 3;}
.svApp_list h5{margin-bottom: 0.14rem; text-align: center; font-size: 0.2rem; color: #FFF; font-weight: bold;}
.svApp_list span{display: none; width: 38vw; font-size: 0.16rem; color: #FFF; line-height: 1.6;}

.svApp_list li.active{flex-grow: 1000 !important;}
.svApp_list li.active h5{text-align: left;}
.svApp_list li.active span{display: block;}

@media screen and (max-width:1366px) {
	.svApp_list h5{font-size: 20px;}
}
@media screen and (max-width:1200px) {
	.svApp_list h5{font-size: 18px;}
}
@media screen and (max-width:1024px) {
	.svApp_list::before{display: none;}
	.svApp_list ul{position: initial; flex-wrap: wrap; gap: 30px 0;}
	.svApp_list li{width: 100%; height: auto; min-height: 4rem; display:flex; flex-wrap:wrap; align-items: flex-end;}
	.svApp_list li::before{height: 70%;}
	.svApp_list .t{position: relative; bottom: 0; padding: 40px 30px;}
	.svApp_list h5{text-align: left;}
	.svApp_list span{display: block; width: 100%;}
}
@media screen and (max-width:768px) {
	.svApp_list span{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.svApp_list ul{gap: 20px 0;}
	.svApp_list li{min-height: 3rem;}
	.svApp_list .t{padding: 20px 20px;}
	.svApp_list h5{font-size: 16px;}
	.svApp_list span{font-size: 13px;}
}





.toBuy{
	--icon_size:.84rem;
	--round_mar:.36rem;
	--round_size:.14rem;
}
.toBuy{background:url(static/images/about-bg.webp) no-repeat center; background-size: contain;}

.toBuy_list{display:flex; flex-wrap:nowrap; justify-content: space-between; gap: 0 3%;}
.toBuy_list li{width: 100%; text-align: center; position: relative;}
.toBuy_list li::before{content: ''; position: absolute; left: calc(50% + .3rem); top: calc(var(--icon_size) + var(--round_mar) + var(--round_size) / 2); width: 7.5vw; height: 1px; background: #CCC;}
.toBuy_list li:last-child::before{display: none;}

.toBuy_list li>img{height: var(--icon_size); -webkit-filter:grayscale(1); filter:grayscale(1);}

.toBuy_list .round{display: table; margin: var(--round_mar) auto .22rem; position: relative;}
.toBuy_list .round::before{visibility: hidden; content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); box-sizing: border-box; width: 100%; height: 100%; border-radius:50%; background: rgb(0 67 138 / 50%); animation:historyScale2 1.6s infinite linear;}
.toBuy_list .round i{display: block; width: var(--round_size); height: var(--round_size); background:#222; border-radius:50%;}
.toBuy_list p{font-size: 0.18rem; color: #888;}

.toBuy_list li:hover>img{-webkit-filter:none; filter:none}
.toBuy_list li:hover p{color: #111;}
.toBuy_list li:hover .round i{background: var(--i_color);}
.toBuy_list li:hover .round::before{visibility: visible;}

@media screen and (max-width:1440px) {
	.toBuy{--icon_size:.7rem;}
}
@media screen and (max-width:1200px) {
	.toBuy{--icon_size:.6rem;}
}
@media screen and (max-width:1024px) {
	.toBuy{--icon_size:36px;}
	.toBuy_list{flex-wrap: wrap; gap: 24px 3%;}
	.toBuy_list li{text-align: left; width: 31.33%; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .16rem; background: #FFF; box-shadow: 0 0 .1rem rgb(0 0 0 / 10%); box-sizing: border-box; padding:18px 20px;}
	.toBuy_list li::before{display: none;}
	.toBuy_list .round{display: none;}
	.toBuy_list p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.toBuy_list{gap: 18px 4%;}
	.toBuy_list li{width: 48%;}
}
@media screen and (max-width:560px) {
	.toBuy_list{gap: 14px 0;}
	.toBuy_list li{width: 100%;}
}







.nNav{display:flex; flex-wrap:wrap; align-items: flex-end; position: relative;}
.nNav::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background:linear-gradient(to right, var(--i_color), transparent);}
.nNav>h3{padding-bottom: 4px; font-weight: bold;}
.nNav>h3 i{font-weight: bold; color: var(--i_color);}

.nNav ul{margin-left: auto; display:flex; flex-wrap:wrap; gap: 0 .5rem;}
.nNav li{position: relative;}
.nNav li::before{content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--i_color); transition:all .5s ease;}
.nNav li a{display: block; padding: .22rem 0; font-size: 0.2rem; font-weight: bold;}
.nNav li:hover::before, .nNav li.active::before{width: 100%;}
.nNav li:hover a, .nNav li.active a{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.nNav>h3{display: none;}
	.nNav ul{margin-left: 0;}
	.nNav li a{padding: 16px 0; font-size: 18px;}
}
@media screen and (max-width:560px) {
	.nNav ul{gap: 0 30px;}
	.nNav li a{font-size: 17px;}
}






.nList{display:flex; flex-wrap:wrap; gap: .5rem 2.5%;}
.nList li{width: 31.66%; position: relative;}
.nList a{display: block; padding-bottom: 0.4rem;}
.nList .pic{width: 100%; aspect-ratio: 446 / 376; overflow: hidden;}
.nList .pic img{width: 100%; height: 100%; object-fit: cover; transition:all .5s ease;}

.nList .txt{margin-top: 0.2rem;}
.nList .txt h5{font-size: 0.2rem; font-weight: bold; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.nList .txt p{margin-top: 0.14rem; font-size: 0.16rem; color: #666; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:5;}

.nList a>i{position: absolute; bottom: 0; font-size: 0.16rem; color: #666}

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

@media screen and (max-width:1024px) {
	.nList .txt h5{font-size: 18px;}
	.nList .txt p{font-size: 14px; -webkit-line-clamp:2}
	.nList a>i{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.nList{gap: 40px 4%;}
	.nList li{width: 48%;}
}
@media screen and (max-width:560px) {
	.nList a{padding-bottom: 30px;}
	.nList .txt h5{font-size: 17px; line-height: 1.4;}
	.nList .txt p{margin-top: 10px; font-size: 13px;}
	.nList a>i{font-size: 13px;}
}






.contact__form{background: #F7F7F7;}

#wpforms-119{
	--wpforms_input_height:48px;
	--wpforms_textarea_height:160px;
	--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-119{margin:0; padding:0;}
#wpforms-form-119{width:100%; position:relative;}

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

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

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

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

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

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

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

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





.contact__{position: relative; z-index: 2;}

.contact__list{padding: .4rem; background:url(static/images/contact-bg.webp) no-repeat center; background-size: cover;}
.contact__list ul{display:flex; flex-wrap:nowrap; gap: 0 3vw;}
.contact__list li{width: 100%; text-align: center;}
.contact__list i{display: block; margin: 0 auto; width: 0.8rem; height: 0.8rem; background: #FFF; border-radius:50%; position: relative;}
.contact__list i iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.34rem; color: var(--i_color);}
.contact__list h6{margin: .18rem auto .1rem; font-size: 0.18rem; color: #FFF;}
.contact__list a{font-size: 0.2rem; color: #FFF;}

@media screen and (max-width:1024px) {
	.contact__list i{width: 60px; height: 60px;}
	.contact__list i iconify-icon{font-size: 24px;}
	.contact__list h6{font-size: 16px;}
	.contact__list a{font-size: 18px;}
}
@media screen and (max-width:768px) {
	.contact__list ul{flex-wrap: wrap; gap: 30px 0;}
	.contact__list li{display:flex; flex-wrap:nowrap; gap: 0 .2rem; align-items: center; text-align: left;}
	.contact__list i{margin: 0 0; width: 50px; height: 50px;}
	.contact__list h6{margin: 0 0 8px;}
}
@media screen and (max-width:560px) {
	.contact__list{padding: 30px 20px;}
	.contact__list i{width: 44px; height: 44px;}
}





.map{margin-top: -1rem;}
.map iframe{width: 100%; height: 65vh;}

@media screen and (max-width:768px) {
	.map{margin-top: 60px;}
	.map iframe{height: 50vh;}
}


