/*
Theme Name: Tianlitai
Version: 1.0
Description: Anhui Lingju Digital, as a core partner of Google China, owns the only Google Overseas Experience Center in Anhui Province, providing one-stop services for localized foreign trade enterprises in Anhui to go overseas - website construction, Google SEO optimization, Google bidding, Google SNS social media marketing, etc.
Author: Copyright: Anhui Lingju
*/
@charset "utf-8";


:root {
	/* Global Color */
	--i_color: #006EBF;

	/* Head height */
	--header_height: .9rem;

	/* Default Border Color */
	--border_color: rgba(0, 0, 0, .1);
}
@media screen and (max-width:1024px) {
	:root {
		--header_height: .6rem;
	}
}
@media screen and (max-width:768px) {
	:root {
		--border_color: rgba(0, 0, 0, .06)
	}
}


.wrap {
	width: 94vw;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
}
.wrap2{
	width: 92vw;
	margin-left: auto;margin-right: auto;
}
@media screen and (max-width:1440px) {
	.wrap2{width: 94vw;}
}


.wrap_l{box-sizing: border-box; padding-left: 10.6vw;}
.wrap_r{box-sizing: border-box; padding-right: 10.6vw;}
@media screen and (max-width:1440px) {
	.wrap_l{padding-left: 3vw;}
	.wrap_r{padding-right: 3vw;}
}








/* header */
header {
	position: fixed;
	top: 0;
	left:0;
	width: 100%;
	background: #FFF;
	box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
	-webkit-transition:all .5s ease; transition:all .5s ease;
	z-index: 2014
}
header .wrap {
	box-sizing: border-box;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

@media screen and (max-width:1024px) {
	header {
		top: 0;
		width: 100%;
		border: none;
		background: #FFF;
		box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
	}
	header .wrap{padding: 0 0;}
}






/* logo */
.logo {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: var(--header_height);
}
.logo a {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 68%;
}
.logo img {max-height: 100%;}
.logo_b{}
.logo_w{display: none;}







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

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

	.i_nav>li>a {
		display: block;
		font-size: 18px;
		color: #222;
		line-height: var(--header_height);
		white-space: nowrap;
		position: relative;
	}

	.i_nav>.current-menu-item::before,
	.i_nav>.current-category-ancestor::before,
	.i_nav>.current-post-ancestor::before,
	.i_nav>.current-menu-ancestor::before,
	.i_nav>.current-menu-parent::before,
	.i_nav>li:hover::before,
	.i_nav>li.active::before
	{
		width: 70%;
		background: var(--i_color);
	}
	.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 .sub-menu {
		display: none;
		position: absolute;
		left:50%; transform:translate(-50%,0);
		top: var(--header_height);
		min-width: 1.4rem;
		background: #FFF;
		overflow: hidden;
		box-shadow: 0 .06rem .1rem rgb(0 0 0 / 8%);
		font-size: 0;
		text-align: center;
	}

	.i_nav .sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu li:not(:last-child):before {content: '';position:absolute; bottom: 0; left:50%; transform:translate(-50%,0);width: 90%;height: 1px;background: #EEE;}
	.i_nav .sub-menu a {
		display: block;
		padding: 0 .2rem;
		font-size: 0.16rem;
		color: #666;
		line-height: 0.4rem;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: relative;
	}

	.i_nav .sub-menu .current-menu-item::before,
	.i_nav .sub-menu .current-category-ancestor::before,
	.i_nav .sub-menu .current-post-ancestor::before,
	.i_nav .sub-menu .current-menu-ancestor::before,
	.i_nav .sub-menu .current-menu-parent::before,
	.i_nav .sub-menu li:hover::before{
		width: 100%;
	}


	.i_nav .sub-menu li:hover a {
		color: var(--i_color);
	}

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

	/* nav list */
	.nav_list_btn{width: 0.3rem;height: 0.3rem;background: var(--i_color);position: relative;cursor: pointer;}
	.nav_list_btn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.3rem;color: #FFF;}

	.i_nav_list{
		visibility: hidden;
		opacity: 0;
		position: absolute;
		top: calc(var(--header_height) + .2rem);
		right: 0;
		background: #FFF;
		box-shadow: 0 0.04rem 0.1rem rgb(0 0 0 / 10%);
		z-index: 2014;
		-webkit-transition: all .5s ease;
		transition: all .5s ease
	}
	.i_nav_list.on {
		visibility: visible;
		opacity: 1;
		top: var(--header_height);
	}
	.i_nav_list li{}
	.i_nav_list a{
		display: block;
		padding: .06rem .2rem;
		font-size: 0.16rem;
		white-space:nowrap;
	}
	.i_nav_list a:hover{color: var(--i_color);}
}
@media screen and (max-width:1440px) {
	.i_nav{gap: 0 .6rem;margin-left: 0.6rem;}
}
@media screen and (max-width:1366px) {
	.i_nav{gap: 0 .5rem;}
	.i_nav>li>a{font-size: 17px;}
}
@media screen and (max-width:1200px) {
	.i_nav{gap: 0 .4rem;}
	.i_nav>li>a{font-size: 15px;}
}








.nav_menu_products{display: none; position: fixed;top: var(--header_height); left: 0;width: 100%;background: #FFF;border-top: 1px solid #DDD; box-shadow: 0 4px 10px rgb(0 0 0 / 10%); z-index: 2014;-webkit-transition:top .5s ease; transition:top .5s ease;}

.nav_menu_products dl{padding: .5rem 0;display:-webkit-flex; display:flex; flex-wrap:nowrap;justify-content: center; gap: 0 2%;}
.nav_menu_products dt{width: 100%;max-width: 2.4rem;}

.nav_menu_products figure{width:100%; position:relative; overflow:hidden}
.nav_menu_products figure::before{content:""; display:block; padding-bottom:75%}
.nav_menu_products figure::after{
	content: '';
	position: absolute;left: 0;bottom: 0;
	width: 100%;height: 0;
	background:-webkit-linear-gradient(top, transparent, rgb(0 110 191 / 90%));
	background:linear-gradient(to bottom, transparent, rgb(0 110 191 / 90%));
	-webkit-transition:all .5s ease; transition:all .5s ease;
}
.nav_menu_products figure img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover; -webkit-transition: all .5s ease; transition: all .5s ease}
.nav_menu_products figcaption{position: absolute;left: 0;bottom: .2rem;width: 100%;box-sizing: border-box;padding: 0 .2rem;z-index: 3;}
.nav_menu_products figcaption p{font-size: 0.17rem;color: #FFF;font-weight: bold;}

.nav_menu_products dt:hover figure::after{height: 40%;}
.nav_menu_products dt:hover figure img{width: 104%;height: 104%;}

@media screen and (max-width:1366px) {
	.nav_menu_products figcaption p{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.nav_menu_products{display: none !important;}
}





@media screen and (max-width:1024px) {
	.i_nav {
		opacity: 0;
		position: fixed;
		top: var(--header_height);
		left: 101%;
		width: 100%;
		width: 100vw;
		height: calc(100vh - var(--header_height));
		margin: 0 0;
		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: .2rem;
		width: .3rem;
		height: .3rem;
		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: .2rem;
	}
	.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: .2rem;
	}

	.i_nav>li>a {
		padding: 0 .2rem;
		font-size: .16rem;
		color: #222;
		line-height: .44rem;
		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 .4rem;
		font-size: .15rem;
		color: #555;
		line-height: .4rem;
		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: .4rem;
		height: .4rem;
		background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat center;
		background-size: .16rem;
	}
	.i_nav>li>.sub-menu b.on {
		background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat center;
		background-size: .16rem;
	}

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

	.i_nav .sub-menu .sub-menu a {
		padding: 0 .6rem;
		font-size: .13rem;
		color: #888;
		line-height: .36rem;
		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%); */
	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: #555;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 3px;
	background: #555;
	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: 30px;
	}
}
@media screen and (max-width:560px) {
	.nav_menu{margin-left: 20px;}
}







.top_r {--size: .26rem}
.top_r {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 0 .2rem;
}
@media screen and (max-width:1024px) {
	.top_r{margin-left: auto; margin-right: 0;}
}
@media screen and (max-width:768px) {
	.top_r {--size: .24rem}
}

.top_search_ico,
.top_language{
	height: var(--header_height);
	display:-webkit-flex; display:flex; flex-wrap:wrap;
	align-items: center;
	text-align: center;
	position: relative;
}
.top_search_ico iconify-icon,
.top_language_btn iconify-icon
{font-size: var(--size);color: #333;cursor: pointer;}

.top_language{padding-left: 0.2rem;position: relative;}
.top_language::before{content: '';position:absolute; left: 0; top:50%; transform:translate(0,-50%);width: 1px;height: .2rem;background: rgb(0 0 0 / 30%);}
.top_language_btn{padding:.1rem 0.18rem .1rem 0; position: relative; cursor: pointer;}
.top_language_btn::before{content: '';position:absolute; top:46%; right: 0; width:0; height:0; border-left:5px solid transparent; border-right:5px solid transparent; border-top:6px solid #333;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_language_btn p{font-size: .16rem; color: #333;}
.top_language_btn iconify-icon{display: none;}

.top_language_btn.on::before{-webkit-transform:rotate(-180deg); transform:rotate(-180deg)}

.language_list{
	opacity: 0;
	visibility: hidden;
	position: absolute;top: calc(var(--header_height) + .2rem);right: 0;
	background: #FFF;
	min-width: 1.2rem;
	z-index: 2016;
	box-shadow: 0 0 .1rem rgb(0 0 0 / 10%);
	-webkit-transition:all .4s ease; transition:all .4s ease;
	padding: .16rem .2rem;
	text-align: left;
}
.language_list.on{
	opacity: 1;
	visibility: visible;
	top: var(--header_height);
}

.language_list dt>h6{margin-bottom: 0.08rem; font-size: 0.17rem;font-weight: bold;white-space: nowrap;}
.curr_lang{margin-bottom: 0.12rem;padding-bottom: 0.12rem;border-bottom: 1px solid #EEE;}

.lang_list a{display: block; padding: .06rem 0;}
.lang_list span img{display: none;}
.lang_list .trp-ls-language-name{padding-left: 0.3rem; font-size: 14px;position: relative;}
.lang_list .trp-ls-language-name::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);left: 0;width: 0.18rem;height: 0.18rem;box-sizing: border-box;border: 1px solid #AAA;-webkit-border-radius:50%; border-radius:50%;}
.lang_list .trp-ls-language-name::after{display: none; content: '';position:absolute; top:50%; transform:translate(0,-50%);left: 0.06rem;width: 0.06rem;height: 0.06rem;background: var(--i_color);-webkit-border-radius:50%; border-radius:50%;}

.lang_list li:hover .trp-ls-language-name::after,
.curr_lang .trp-ls-language-name::after{display: block;}
.lang_list li:hover .trp-ls-language-name,
.curr_lang .trp-ls-language-name{color: var(--i_color);}

@media screen and (max-width:1200px) {
	.top_language_btn p{display: none;}
	.top_language_btn iconify-icon{display: block;}
}
@media screen and (max-width:1024px) {
	.language_list dt>h6{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.top_language{padding-left: 0;}
	.top_language::before{display: none;}
	.language_list dt>h6{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.language_list dt>h6{font-size: 14px;}
	.lang_list .trp-ls-language-name{font-size: 13px;}
}






/* search */
.top_search {
	--search_height: .38rem
}
.top_search {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: calc(var(--header_height) + .3rem);
	left: 0;
	width: 100%;
	padding: .16rem 0;
	background: #FFF;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 99;
}
.top_search.on {
	visibility: visible;
	opacity: 1;
	top: var(--header_height);
	box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
}
.top_search form {
	width: 80%;
	margin: 0 auto;
	max-width: 5rem;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	overflow: hidden;
}
.top_search_ipt {
	width: calc(100% - var(--search_height) * 2);
	height: var(--search_height);
	box-sizing: border-box;
	padding: 0 0 0 .12rem;
}
.top_search_btn {
	font-size: 0;
	color: #FFF;
	width: calc(var(--search_height) * 2);
	height: var(--search_height);
	background: var(--i_color) url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="white" d="M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3ZM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8Z"%2F%3E%3C%2Fsvg%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%;
	}
}





.header_home{background: none;box-shadow: none;}
.header_home .logo_w{display: block;}
.header_home .logo_b{display: none;}
.header_home .i_nav>li>a{color: #FFF;}
.header_home .i_nav>.current-menu-item>a,
.header_home .i_nav>.current-category-ancestor>a,
.header_home .i_nav>.current-post-ancestor>a,
.header_home .i_nav>.current-menu-ancestor>a,
.header_home .i_nav>.current-menu-parent>a,
.header_home .i_nav>li:hover>a,
.header_home .i_nav>li.active>a
{color: #FFF;}
.header_home .i_nav>.current-menu-item::before,
.header_home .i_nav>.current-category-ancestor::before,
.header_home .i_nav>.current-post-ancestor::before,
.header_home .i_nav>.current-menu-ancestor::before,
.header_home .i_nav>.current-menu-parent::before,
.header_home .i_nav>li:hover::before,
.header_home .i_nav>li.active::before
{background: #FFF;}
.header_home .top_search_ico iconify-icon,
.header_home .top_language_btn iconify-icon,
.header_home .top_language_btn p
{color: #FFF;}
.header_home .top_language::before{background: #CCC;}
.header_home .top_language_btn::before{border-top-color: #FFF;}



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





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

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

.banner-button-prev,
.banner-button-next {
	display: block;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 0.6rem;
	height: 0.6rem;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 3;
}
.banner-button-prev {
	left: -.8rem;
}
.banner-button-next {
	right: -.8rem;
}
.banner-button-prev iconify-icon,
.banner-button-next iconify-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.3rem;
	color: #FFF;
}
.banner-button-prev:hover iconify-icon,
.banner-button-next:hover iconify-icon {
	color: var(--i_color);
}
.banner:hover .banner-button-prev {
	left: 0;
}
.banner:hover .banner-button-next {
	right: 0;
}

.banner-pagination {
	position:absolute; left:50%; transform:translate(-50%,0);
	bottom: .5rem;
	z-index: 3;
}
.banner-pagination .swiper-pagination-bullet {
	width: .5rem;
	height: 2px;
	display: inline-block;
	margin: 0 6px;
	background: rgb(255 255 255 / 40%);
	outline: none;
	cursor: pointer;
	position: relative;
}
.banner-pagination .swiper-pagination-bullet-active {
	background: #FFF;
}
@media screen and (max-width:1440px) {
	.banner-button-prev,.banner-button-next{display: none;}
}
@media screen and (max-width:1024px) {
	.banner .swiper-slide{padding-bottom: 50%;}
	.banner-pagination{bottom: 30px;}
	.banner-pagination .swiper-pagination-bullet{width: 30px;}
}
@media screen and (max-width:560px) {
	.banner-pagination{bottom: 26px;}
	.banner-pagination .swiper-pagination-bullet{margin: 0 4px;}
	.banner .swiper-slide{padding-bottom: 54%;}
}







.banner_text{position:absolute; top:45%; transform:translate(0,-50%);left: 0;width: 100%;text-align: center;}
.banner_text .wrap{box-sizing: border-box; padding: 0 6%;}
.banner_text h2{font-size: 3.6vw;color: #FFF; font-weight: bold; line-height: 1.2;}
.banner_text h6{margin: .3rem 0; font-size: 1.4vw; color: #FFF;}
.banner_text p{display: table; padding: .1rem .2rem; font-size: 0.16rem;color: #FFF; background: rgb(253 189 0 / 30%);}

@media screen and (max-width:1024px) {
	.banner_text .wrap{padding: 0 0;}
	.banner_text h6{margin: 14px 0; font-size: 2vw;}
	.banner_text p{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.banner_text p{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.banner_text h2{font-size: 4.6vw;}
	.banner_text h6{margin: 10px 0 0; font-size: 3vw;}
	.banner_text p{display: none;}
}







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




.i_tit{}
.i_tit h3{display: table; position: relative;}
.i_tit h3::before{content: '';position: absolute;top: 0;left: 0;width: 0.46rem;height: 0.46rem;background:-webkit-linear-gradient(top, var(--i_color), transparent);
background:linear-gradient(to bottom, var(--i_color), transparent); -webkit-border-radius:50%; border-radius:50%;}
.i_tit h3::after{content: '';position: absolute;left: 0;bottom: 0;width: 1.6rem;height: 2px;background:-webkit-linear-gradient(left, var(--i_color),transparent);
background:linear-gradient(to right, var(--i_color),transparent);}
.i_tit h3 i{font-weight: bold;color: #000;position: relative;}
.i_tit h6,.i_tit p{margin-top: 0.24rem;}
.i_tit.center{text-align: center;}
.i_tit.center h3{margin-left: auto;margin-right: auto;}

@media screen and (max-width:1024px) {
	.i_tit h3::before{top: -4px; width: 34px;height: 34px;}
}
@media screen and (max-width:560px) {
	.i_tit h3::before{top: -2px; left: -2px; width: 28px;height: 28px;}
}





.i_more{display: table; padding: .1rem .2rem; background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}
.i_more span{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .14rem;}
.i_more b{display: block;font-size: 0.16rem;color: #FFF;}
.i_more iconify-icon{font-size: 0.28rem;color: #FFF;}
.i_more.center{margin-left: auto;margin-right: auto;}
.i_more:hover{-webkit-transform:translate(0,-4px); transform:translate(0,-4px); box-shadow: 0 .06rem 0.1rem rgb(0 110 191 / 50%);background: var(--i_color) !important; border-color: transparent !important;}
.i_more:hover b,.i_more:hover iconify-icon{color: #FFF !important;}
@media screen and (max-width:1024px) {
	.i_more{padding: 8px 16px;}
	.i_more b{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.i_more{padding: 6px 14px;}
	.i_more span{gap: 0 10px;}
	.i_more b{font-size: 13px;}
	.i_more iconify-icon{font-size: 20px;}
}






.section_tit{display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;gap: 0 1.8rem;}
.section_tit .i_more{margin-left: auto;flex-shrink: 0;}

@media screen and (max-width:1024px) {
	.section_tit{gap: 0 1rem;}
}
@media screen and (max-width:768px) {
	.section_tit{flex-wrap: wrap; gap: 16px 0;}
	.section_tit .i_more{margin: 0 0;}
}






.productItem{}
.productItem .cover{width:100%; background: #F3F1E5; position:relative; overflow:hidden}
.productItem .cover::before{content:""; display:block; padding-bottom:100%}
.productItem .cover i{display:none; position: absolute; left: 0;top: -.8rem;width: .7rem;height: .7rem; background: #C2D7DD; clip-path: polygon(0 0, 0% 100%, 100% 0); z-index: 2;-webkit-transition:all .5s ease; transition:all .5s ease;}
.productItem .cover i::before{content: '';position: absolute;top: 7px;left: -5px; width: 0.5rem;height: 0.3rem;background:url(static/images/logo.webp) no-repeat center;background-size: contain; -webkit-transform:rotate(-40deg); transform:rotate(-40deg);}
.productItem .cover img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.productItem .tit{padding: .2rem;}
.productItem .tit p{text-align: center; height: 0.52rem; font-size: 0.17rem;font-weight: bold; overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.productItem .tit i{display: block; margin: 0.12rem 0 .18rem; width: 100%;height: 1px;background: #EEE;}
.productItem .tit span{padding: .08rem 0; display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; justify-content: center; gap: 0 .1rem; background: #F1F1F1;}
.productItem .tit b{font-size: 0.16rem;}
.productItem .tit iconify-icon{font-size: 0.26rem;}

.productItem:hover .cover i{top: 0;}
.productItem:hover .cover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.productItem:hover p{color: var(--i_color);}
.productItem:hover span{background: var(--i_color);}
.productItem:hover span b,.productItem:hover span iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.productItem .cover i{display: none;}
	.productItem .tit{padding: 14px;}
	.productItem .tit p{height: 46px; font-size: 15px;}
	.productItem .tit span{}
	.productItem .tit b{font-size: 13px;}
	.productItem .tit iconify-icon{font-size: 22px;}
}
@media screen and (max-width:560px) {
	.productItem .tit i{margin: 8px 0 12px;}
}







.i_category{position: relative;}
.i_category::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 50%;background:-webkit-linear-gradient(top, transparent, #F3F9F5); background:linear-gradient(to bottom, transparent, #F3F9F5);}

.i_category_list{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .34rem 2%;}
.i_category_list li{width: 49%; position: relative;}
.i_category_list li::before{
	content: '';
	position: absolute;left: 0;bottom: 0;
	width: 100%;height: 0;
	background:-webkit-linear-gradient(top, transparent, rgb(0 110 191 / 90%));
	background:linear-gradient(to bottom, transparent, rgb(0 110 191 / 90%));
	-webkit-transition:all .5s ease; transition:all .5s ease;
	z-index: 2;
}

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

.i_category_list figcaption{position: absolute;left: 0;bottom: 0;width: 100%;box-sizing: border-box;padding: 0 .3rem .3rem;z-index: 3;}
.i_category_list span{display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;gap: 0 .3rem;}
.i_category_list span p{color: #FFF;font-weight: bold;}

.i_category_list figcaption h6{display: none; font-size: 0.16rem; margin-top: 6px; color: #FFF;}
.i_category_list .square_btn{flex-shrink: 0; margin-left: auto; border-color: #FFF;}
.i_category_list .square_btn iconify-icon{color: #FFF;}

.i_category_list li:hover .square_btn{opacity: 0;}
.i_category_list li:hover::before{height: 60%;}
.i_category_list li:hover img{
	-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.i_category_list{gap: .2rem 2%;}
	.i_category_list li::before{
		height: 40%;
		background:-webkit-linear-gradient(top, transparent, rgb(0 110 191 / 60%));
		background:linear-gradient(to bottom, transparent, rgb(0 110 191 / 60%));
	}
	.i_category_list figcaption{padding: 0 20px 14px;}
	.i_category_list span p{font-size: 18px}
	.i_category_list figcaption h6{display: none;}
	.i_category_list li:hover .square_btn{opacity: 1;}
}
@media screen and (max-width:768px) {
	.i_category_list{gap: .24rem 4%;}
	.i_category_list li{width: 48%;}
	.i_category_list li::before{display: none;}
	.i_category_list figcaption{position: relative; padding: 14px 0 0;}
	.i_category_list span{gap: 0 10px;}
	.i_category_list span p{font-size: 16px;color: #333;line-height: 1.3;}
	.i_category_list .square_btn{border-color: #C9C9C9;}
	.i_category_list .square_btn iconify-icon{color: #AAA;}
}
@media screen and (max-width:560px) {
	.i_category_list span p{font-size: 15px;}
}







.hotProducts{}

.hotProducts_nav{border: 1px solid #DDD; display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center; gap: 0 .4rem;}
.hotProducts_nav ul{display:-webkit-flex; display:flex; flex-wrap:nowrap; width: 100%;}
.hotProducts_nav li{width: 100%; min-height: .7rem; display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; justify-content: center;}
.hotProducts_nav li a{display: block; text-align: center; padding: .1rem .2rem; font-size: 0.18rem;font-weight: bold;}
.hotProducts_nav .i_more{flex-shrink: 0; margin-left: auto; margin-right: 0.2rem;}

.hotProducts_nav li.active{background: var(--i_color);}
.hotProducts_nav li.active a{color: #FFF;}


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

.hotProducts_show ul{display:-webkit-flex; display:flex; flex-wrap:wrap; gap: 0 2%;}
.hotProducts_show li{width: 23.5%; box-shadow: 0 6px .1rem rgb(0 0 0 / 10%);}

@media screen and (max-width:1024px) {
	.hotProducts_nav li a{font-size: 16px;}
	.hotProducts_nav .i_more{display: none;}
}
@media screen and (max-width:768px) {
	.hotProducts_nav{border: none; border-top: 1px solid #DDD; border-left: 1px solid #DDD;}
	.hotProducts_nav ul{flex-wrap: wrap;}
	.hotProducts_nav li{width: 50%;min-height: 50px; box-sizing: border-box; border-right: 1px solid #DDD; border-bottom: 1px solid #DDD;}
	.hotProducts_nav li a{padding: 4px 10px; font-size: 15px;}

	.hotProducts_show ul{gap: 30px 4%; flex-wrap: wrap;}
	.hotProducts_show li{width: 48%; min-height: auto;}

}
@media screen and (max-width:560px) {

}






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

.homeAbout article{text-align: center; line-height: 1.8;}
.homeAbout article a{color: var(--i_color);}

.homeAbout_list{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 4%;}
.homeAbout_list dt{width: 100%;display:-webkit-flex; display:flex; flex-wrap:wrap;flex-direction: column; justify-content: space-between; gap: 1rem 0;}

.homeAbout_list .txt{text-align: center;}
.homeAbout_list .txt span{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: center; align-items: baseline; gap: 0 .1rem; font-size: 0.18rem;}
.homeAbout_list .txt i{display:-webkit-flex; display:flex; flex-wrap:nowrap; font-size: .4rem;}
.homeAbout_list .txt p{font-size: 0.16rem;}

.homeAbout_list .icon{display: block; margin: 0 auto; width: 1rem;height: 1rem;box-sizing: border-box; border: 1px solid #FFF; -webkit-border-radius:50%; border-radius:50%; position: relative;}
.homeAbout_list .icon::before{content: '';position:absolute; left:50%; transform:translate(-50%,0);bottom: calc(100% + .2rem); width: 1px;height: 0.5rem;background: #FFF;}
.homeAbout_list .icon iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.46rem;color: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}

.homeAbout_list dt:nth-child(even) .icon{order: -1;}
.homeAbout_list dt:nth-child(even) .icon::before{bottom: initial; top: calc(100% + .2rem);}

.homeAbout_list dt:hover .icon iconify-icon{-webkit-transform:translate(-50%,-50%) rotateY(180deg); transform:translate(-50%,-50%) rotateY(180deg);}

@media screen and (max-width:1024px) {
	.homeAbout_list{flex-wrap: wrap; gap: 30px 0;}
	.homeAbout_list dt{flex-direction: initial;justify-content: initial;flex-wrap: nowrap; gap: 0 3%;}
	.homeAbout_list .txt{width: 100%;text-align: left;}
	.homeAbout_list .txt span{justify-content: initial;}
	.homeAbout_list .txt i{font-size: 30px;}

	.homeAbout_list .icon{flex-shrink: 0; order: -1; margin: 0 0; width: 60px;height: 60px;}
	.homeAbout_list .icon::before{display: none;}
	.homeAbout_list .icon iconify-icon{font-size: 30px;}
}
@media screen and (max-width:768px) {
	.homeAbout_list .txt span{font-size: 17px;}
	.homeAbout_list .txt i{font-size: 24px;}
	.homeAbout_list .txt p{margin-top: 6px; font-size: 14px;}
}
@media screen and (max-width:560px) {
	.homeAbout_list .txt span{font-size: 15px;}
	.homeAbout_list .txt i{font-size: 20px;}
	.homeAbout_list .txt p{font-size: 13px;}
	.homeAbout_list .icon{width: 50px;height: 50px;}
	.homeAbout_list .icon iconify-icon{font-size: 24px;}
}






/* eject videos */
.vd_box {
	display: none;
	position: fixed;
	top: 52%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2016;
	width: 60%;
	max-height: 90%;
}
.vd_box::before {
	content: '';
	display: block;
	padding-bottom: 56.25%;
}
.close_v {
	position: absolute;
	top: -.2rem;
	right: -.2rem;
	width: 0.4rem;
	height: 0.4rem;
	background: var(--i_color);
	z-index: 2;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	cursor: pointer;
}
.close_v::before {
	content: '+';
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 0.44rem;
	color: #FFF;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg)
}
.vd_box iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #000;
	object-fit: contain;
}
@media screen and (max-width:1024px) {
	.vd_box {
		width: 80%;
	}
	.close_v::before {
		font-size: .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;
	}
}






.companyAdv{}

.companyAdv_list{height: 0; padding-bottom: 40%; position: relative; overflow: hidden;}
.companyAdv_list dl{position: absolute;left: 0;top: 0;width: 100%;height: 100%; display:-webkit-flex; display:flex; flex-wrap:nowrap;}
.companyAdv_list dt{width: 24%; height: 100%; position: relative;-webkit-transition:all .7s ease; transition:all .7s ease; overflow: hidden;}
.companyAdv_list dt::after{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 0;background:-webkit-linear-gradient(top, transparent, rgb(0 110 191 / 75%));background:linear-gradient(to bottom, transparent, rgb(0 110 191 / 75%));}
.companyAdv_list .cover{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
.companyAdv_list .cover img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.companyAdv_list .tit{position: absolute;left: 0;bottom: 0;width: 100%;box-sizing: border-box; padding: .3rem .4rem; text-align: center; z-index: 3;}
.companyAdv_list .tit h6{font-size: 0.24rem;color: #FFF;font-weight: bold;}
.companyAdv_list .tit p{display: block; margin-top: 0.14rem; opacity: 0; height: 0; text-align: left; width: 36vw; font-size: 15px;color: #FFF;}

.companyAdv_list dt.curr .tit{text-align: left;}
.companyAdv_list dt.curr .tit p{opacity: 1; height: auto;-webkit-transition:all .7s ease; transition:all .7s ease;}
.companyAdv_list dt.curr::after{height: 50%; -webkit-transition:all .7s ease; transition:all .7s ease;}

@media screen and (max-width:1440px) {
	.companyAdv_list .tit p{width: 42vw;}
}
@media screen and (max-width:1024px) {
	.companyAdv_list{height: auto; padding-bottom: 0;}
	.companyAdv_list dl{position: relative;display: block;}
	.companyAdv_list dt{width: 100%;height: auto; margin-bottom: 50px;}
	.companyAdv_list dt::after{display: none;}
	.companyAdv_list .cover{position: relative; overflow: hidden;}
	.companyAdv_list .cover::before{content: '';display: block;padding-bottom: 70%;}
	.companyAdv_list .tit{position: initial; margin-top: 20px; padding: 0 0;}
	.companyAdv_list .tit h6{font-size: 20px; color: #333;}
	.companyAdv_list .tit p{opacity: 1; height: auto; color: #666; width: 100%;}
}
@media screen and (max-width:560px) {
	.companyAdv_list dt{margin-bottom: 40px;}
	.companyAdv_list .tit h6{font-size: 18px}
	.companyAdv_list .tit p{font-size: 13px;}
}








.latestNews{background: #FAFCFB;}

.latestNews_cont{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .6rem;}

.latestNews_box{flex-shrink: 0; width: 45%; position: relative; overflow: hidden;}
.latestNews_box::before{content: '';display: block;padding-bottom: 84%;}
.latestNews_box::after{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 40%;background:-webkit-linear-gradient(top, transparent, #000);
background:linear-gradient(to bottom, transparent, #000);}
.latestNews_box img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.latestNews_box:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}


.latestNews_txt{position: absolute;left: 0;bottom: 0;width: 100%; box-sizing: border-box; padding:.2rem .3rem; z-index: 2;}
.latestNews_txt i{font-size: 14px;color: #FFF;}
.latestNews_txt h6{margin: .1rem 0;font-size: .18rem; color: #FFF;}
.latestNews_txt p{font-size: 14px;color: #FFF;}
.latestNews_txt h6,.latestNews_txt p{overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.latestNews_list{width: 100%;}
.latestNews_list li{position: relative;}
.latestNews_list li:first-child{border-top: 1px solid #EEE;}
.latestNews_list li::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background: #EEE;}
.latestNews_list li::after{content: '';position: absolute;left: 0;bottom: 0;width: 0;height: 1px;background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}
.latestNews_list a{padding: .4rem 0; display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .5rem;}
.latestNews_list h5{font-size: .18rem;}
.latestNews_list p{margin-top: 0.2rem; font-size: 14px;color: #666;}
.latestNews_list i{flex-shrink: 0; font-size: 0.16rem;}

.latestNews_list h5,.latestNews_list p{overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.latestNews_list li:hover::after{width: 100%;}
.latestNews_list li:hover h5,.latestNews_list li:hover i{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.latestNews_list a{padding: .32rem 0;}
}
@media screen and (max-width:1366px) {
	.latestNews_list p{margin-top: 0.1rem;}
}
@media screen and (max-width:1024px) {
	.latestNews_cont{flex-wrap: wrap;}
	.latestNews_box{width: 100%;}
}
@media screen and (max-width:768px) {
	.latestNews .section_tit .i_more{margin-left: auto;}
	.latestNews_txt h6,.latestNews_list h5{font-size: 17px;}
}
@media screen and (max-width:560px) {
	.latestNews_txt{padding: 20px 20px;}
	.latestNews_txt h6,.latestNews_list h5{font-size: 16px;}
	.latestNews_list a{flex-wrap: wrap;padding: 20px 0;}
	.latestNews_list span{width: 100%;}
	.latestNews_list i{margin-top: 10px;font-size: 13px;}
}






.homeCertificate{overflow: hidden;}
.homeCertificate>img{width: 100vw;margin-bottom: -8px;}






footer{}

.slogan{background:url(static/images/slogan_bg.webp) no-repeat center;background-size: cover;}
.slogan .wrap{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;gap: 0 .4rem;}
.slogan h5{text-align: center; color: #FFF;}
.slogan .i_more{background: #FFF;}
.slogan .i_more b,.slogan .i_more iconify-icon{color: var(--i_color);}

.f_cont{position: relative;overflow: hidden;}
.f_cont::before{content: '';position: absolute;right: 8%;bottom: 0;width: 100%;height: 100%;background:url(static/images/logo_footer.webp) no-repeat right;background-size: contain;}
.f_cont .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap;justify-content: space-between;}

.f_tit{margin-bottom: 0.3rem; font-weight: bold;}

.f_contact{flex-shrink: 0; width: 40%;}
.f_contact_list{}
.f_contact_list dt{margin-bottom: 0.18rem;}
.f_contact_list dt,.f_contact_list a{font-size: 0.18rem;}
.f_contact_list a:hover{color: var(--i_color);text-decoration: underline;}

.f_media{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 0 .3rem;}
.f_media li{-webkit-transition:all .5s ease; transition:all .5s ease;}
.f_media a{display: block;width: 0.4rem;height: 0.4rem;background: #F1F1F1;position: relative;-webkit-border-radius:50%; border-radius:50%;}
.f_media iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.18rem;color: #CCC;}
.f_media li:hover{-webkit-transform:translate(0,-6px); transform:translate(0,-6px);}
.f_media a:hover{background: rgb(0 110 191 / 15%);}
.f_media a:hover iconify-icon{color: var(--i_color);}

.f_nav{width: 24%;}
.f_nav ul{}
.f_nav li{}
.f_nav li a{display: block; font-size: 0.18rem; line-height: 2.2;}
.f_nav li a:hover{color: var(--i_color);text-decoration: underline;}

.f_cr{padding: .3rem 0; background: var(--i_color);}
.f_cr p,.f_cr a{font-size: 0.16rem; color: #FFF;}
.f_cr a:hover{text-decoration: underline;}

@media screen and (max-width:1024px) {
	.slogan .i_more{margin-top: 30px;}
	.f_cont::before{top:50%; transform:translate(0,-50%); height: 60%;}
	.f_contact{width: 100%;}
	.f_contact_list a{font-size: 16px;}
	.f_nav{display: none;}
}
@media screen and (max-width:768px) {
	.f_contact_list dt{margin-bottom: 6px;}
	.f_contact_list dt, .f_contact_list a{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.slogan h5{font-size: 15px; line-height: 1.3;}
	.slogan .i_more{margin-top: 20px;}

	.f_cont::before{bottom: -20px; width: 260px;height: 260px;}
	.f_tit{margin-bottom: 20px;}
	.f_contact_list dt, .f_contact_list a{font-size: 15px;}

	.f_cr{padding: 20px 0;}
	.f_cr p, .f_cr a{font-size: 13px;}
}








/* ======================================================== */
.banner__{width: 100%;position: relative; overflow: hidden;}

.banner__pic{width: 100%;position: relative; overflow: hidden;}
.banner__pic::before{content: '';display: block;padding-bottom: 27%;}
.banner__pic img{position:absolute; top:0; left:0; width:100vw; height:100%; object-fit: cover;}

.banner__text{position: absolute;left: 0;top: 50%;transform: translate(0, -50%);width: 100%;text-align: center;}
.banner__text h2{font-size: 3vw;color: #FFF; font-weight: bold;}


/* Breadcrumb */
.in_position{position: absolute;left: 0;width: 100%; bottom: 0; padding:.2rem 0;background:rgb(255 255 255 / 8%);}
.in_position .wrap{display:-webkit-flex;display:flex;flex-wrap:wrap;align-items:center;}
.in_position a{display:block;font-size:15px;color:#FFF;position:relative;line-height:20px;}
.in_position a:first-child{padding-left: 0.26rem;}
.in_position a:first-child::before{
	content: '';
	position:absolute; top:50%; transform:translate(0,-50%);left: 0;
	width: 18px;height: 18px;
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23FFF' d='m8.13 1.229l5.5 4.47a1 1 0 0 1 .37.777V14a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6.476a1 1 0 0 1 .37-.776l5.5-4.471a1 1 0 0 1 1.26 0M13 6.476L7.5 2.005L2 6.475V14h11z'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
}
.in_position a:not(:last-child):after {content:">";margin:0 4px;color:#FFF}

.in_position2{position: initial; background: #EBF4FA;}
.in_position2 a{color: #333;}
.in_position2 a::before{
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23333' d='m8.13 1.229l5.5 4.47a1 1 0 0 1 .37.777V14a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6.476a1 1 0 0 1 .37-.776l5.5-4.471a1 1 0 0 1 1.26 0M13 6.476L7.5 2.005L2 6.475V14h11z'/%3E%3C/svg%3E") no-repeat center !important;
	background-size: contain;
}
.in_position2 a:after{color: #333 !important;}

@media screen and (max-width:1024px) {
	.banner__pic::before{padding-bottom: 32%;}

	.in_position {position: relative; padding:.16rem 0; background: #EBF4FA;}
	.in_position a {font-size:14px; color: #333;}
	.in_position a::before{
		background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23333' d='m8.13 1.229l5.5 4.47a1 1 0 0 1 .37.777V14a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6.476a1 1 0 0 1 .37-.776l5.5-4.471a1 1 0 0 1 1.26 0M13 6.476L7.5 2.005L2 6.475V14h11z'/%3E%3C/svg%3E") no-repeat center !important;
		background-size: contain;
	}
	.in_position a:after{color: #333 !important;}
}
@media screen and (max-width:560px) {
	.banner__text h2{font-size: 4.6vw;}

	.in_position {padding:.12rem 0;}
	.in_position a {font-size:13px}
}







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

.catList_aside{width: 23%; box-sizing: border-box; position: relative;}

.catList_show{width: 72%;margin-left: auto;}

@media screen and (max-width:1024px) {
	.catList_aside{width: 100%; margin-bottom: 30px; background: none;}

	.catList_show{width: 100%;}
}




.cat_nav{padding: .2rem; background: #F1F1F1; border-top: 3px solid var(--i_color); position: relative;}
.cat_nav_tit{margin-bottom: 0.1rem;}
.cat_nav_tit h4{padding: 0 .2rem; font-size: .28rem;}
.cat_nav_tit iconify-icon{display: none;}

.cat_nav_list{}
.cat_nav_list li{position: relative; border-top: 1px solid #DDD;}
.cat_nav_list li:last-child{border-bottom: 1px solid #DDD;}
.cat_nav_list li.active{border-color: transparent;}

.cat_fold_tit{padding: 0 .2rem; display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;gap: 0 .2rem;}
.cat_fold_tit a{padding: .14rem 0; width: 100%; font-size: 0.18rem;font-weight: bold;}
.cat_fold_tit iconify-icon{margin-left: auto;flex-shrink: 0;font-size: 0.24rem;cursor: pointer;-webkit-transition:all .5s ease; transition:all .5s ease;}
.cat_fold_tit a:hover,.active .cat_fold_tit a,.active .cat_fold_tit iconify-icon{color: var(--i_color);}
.active .cat_fold_tit{background: var(--i_color);}
.active .cat_fold_tit a{color: #FFF;}
.active .cat_fold_tit iconify-icon{color: #FFF; -webkit-transform:rotate(-180deg); transform:rotate(-180deg);}

.cat_fold_sub{display: none; padding:.1rem .2rem;}
.cat_fold_sub a{display: block;padding: .1rem 0;font-size: 0.16rem;position: relative;-webkit-transition:all .5s ease; transition:all .5s ease;}
.cat_fold_sub a::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);left: 0;width: 0;height: 6px;background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}
.cat_fold_sub a:hover::before,.cat_fold_sub .active a::before{width: 6px;}
.cat_fold_sub a:hover,.cat_fold_sub .active a{padding-left: 0.16rem; color: var(--i_color);}

@media screen and (max-width:1024px) {
	.cat_nav{width: 100%; padding: 0 0; background: none;}
	.cat_nav_tit{margin: 0; padding: 14px 28px; display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;position: relative;z-index: 2; background: var(--i_color);}
	.cat_nav_tit h4{padding: 0 0; font-size: 20px; color: #FFF;}
	.cat_nav_tit iconify-icon{display: block; margin-left: auto;font-size: 26px;color: #FFF;}

	.active .cat_fold_tit{background: none;}
	.active .cat_fold_tit a{color: var(--i_color);}
	.active .cat_fold_tit iconify-icon{color: var(--i_color); -webkit-transform:rotate(-180deg); transform:rotate(-180deg);}

	.cat_fold_sub{padding: 0 20px;}

	.cat_nav_list{display: none;box-sizing: border-box;padding: 14px 30px 30px; background: rgb(0 88 167 / 5%);-webkit-border-radius:0 0 6px 6px; border-radius:0 0 6px 6px;}
	.cat_nav_list li{border-top: none; border-bottom: 1px solid rgb(0 88 167 / 10%);}
	.cat_nav_list li.active{border-color: rgb(0 88 167 / 10%);}
	.cat_fold_tit{-webkit-border-radius:6px; border-radius:6px; padding: 0 0;}
	.cat_fold_tit a{padding: 12px 0;font-size: 17px;}
	.cat_fold_sub p{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.cat_nav_tit{padding: 12px 20px;}
	.cat_nav_tit h4{font-size: 18px;}
	.cat_nav_tit iconify-icon{font-size: 22px;}

	.cat_nav_list{padding: 14px 20px 24px;}
	.cat_fold_tit a{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.cat_nav_tit h4{font-size: 16px;}

	.cat_fold_tit a{font-size: 15px;}
	.cat_fold_tit iconify-icon{font-size: 22px;}
	.cat_fold_sub a{font-size: 14px;}
}






.contact_aside{background:#F7F7F7; box-sizing: border-box; padding: .4rem; position: relative;position: relative; overflow: hidden;}
.contact_aside::before{content: '';position:absolute; left:50%; transform:translate(-50%,0); bottom: 0;width: 140%;height: 60%;background:url(static/images/logo_footer.webp) no-repeat center bottom;background-size: contain;}
.contact_aside h5{padding-bottom: 4px;margin-bottom: 0.2rem; font-size: .28rem;color: var(--i_color);position: relative;}
.contact_aside h5::before{content: '';position: absolute;left: 0;bottom: 0;width: 0.6rem;height: 3px;background: var(--i_color);}

.contact_aside ul{position: relative;}
.contact_aside li{margin: .1rem 0; display:-webkit-flex; display:flex; flex-wrap:wrap;}
.contact_aside h6,.contact_aside a,.contact_aside p{font-size: 0.17rem;}
.contact_aside li:last-child h6,.contact_aside li:last-child p{display: contents;}
.contact_aside a:hover{color: var(--i_color);text-decoration: underline;}

@media screen and (max-width:1366px) {
	.contact_aside{padding: .3rem;}
}
@media screen and (max-width:1024px) {
	.contact_aside{display: none;}
}







.cat_info{}
.cat_info h1{}
.cat_info>span{display: block; margin-top: 0.1rem;color: #777;}





.productsList{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .4rem 3%;}
.productsList li{width: 31.33%; box-shadow: 0 6px 0.1rem rgb(0 0 0 / 10%);}

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






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








.p_data{position: relative;background:url(static/images/p_data_bg.webp) no-repeat bottom center;background-size: cover;}
.p_data>.wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 4%;}
@media screen and (max-width:1024px) {
	.p_data>.wrap{flex-wrap: wrap; gap: 40px 0;}
}



/* atlas */
.p_atlas {
	width: 50%;
	height: 100%;
	position: relative;
	flex-shrink: 0;
}
.p_atlas::before {
	content: '';
	display: block;
	padding-bottom: 70%;
}

/* thumbnail */
.p_thumbnail {
	position: absolute; top:50%; transform:translate(0,-50%);
	left: 0;
	width: 22%;
	height: 100%;
	box-sizing: border-box;
	overflow: hidden;
}
.p_thumbnail_list {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	position: relative;
}
.p_thumbnail_list .swiper-wrapper {
	flex-direction: column;
	position: relative;
	width: 100%;
}
.p_thumbnail_list .swiper-slide {
	flex-shrink: 0;
	position: relative;
	box-sizing: border-box;
	border: 1px solid #DADADA;
	background: #F3F1E5;
	overflow: hidden;
	cursor: pointer;
}
.p_thumbnail_list .swiper-slide img {
	position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p_thumbnail_list .swiper-slide-thumb-active {
	border-color: var(--i_color);
}

.thumbnail-pagination {display: none;}



.p_atlas_list {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 26%);
	height: 100%;
	box-sizing: border-box;
	overflow: hidden
}
.p_atlas_list .swiper-wrapper {
	display: -webkit-flex;
	display: flex;
	position: relative;
	height: 100%;
}
.p_atlas_list .swiper-slide {
	height: 100%;
	flex-shrink: 0;
	background: #F3F1E5;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.p_atlas_list .swiper-slide img {
	position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p_atlas_list .swiper-slide iframe,
.p_atlas_list .swiper-slide video {
	width: 100%;
	height: 100%;
	background: #000;
	object-fit: contain;
}

@media screen and (max-width:1024px) {
	.p_atlas {
		width: 100%;
		margin: 0 auto;
		max-width: 5rem;
		display: -webkit-flex;
		display: flex;
		flex-wrap: wrap;
	}
	.p_atlas::before {
		display: none;
	}
	.p_thumbnail {
		margin-top: 0.2rem;
		position: relative;
		transform: none;
		width: 100%;
	}
	.p_thumbnail_list{
		position: initial;top: initial;transform: none;
		height: auto;
	}
	.p_thumbnail_list .swiper-wrapper {
		display: -webkit-flex;
		display: flex;
		flex-direction: initial
	}
	.p_thumbnail_list .swiper-slide::before{content: '';display: block; padding-bottom: 100%;}

	.p_atlas_list {
		order: -1;
		position: relative;
		width: 100%;
	}
	.p_atlas_list .swiper-slide {
		height: 0;
		padding-bottom: 100%;
	}

}
@media screen and (max-width:768px) {
	.thumbnail-pagination{margin-top: 0;}
}







.p_title{}
.p_title .p_cat{font-size: 15px;}
.p_title .p_cat i{color: var(--i_color);}

h1.p_name{font-family: Arial; font-size: 0.26rem;font-weight: bold;}

.p_title article{position: relative; border-bottom: 1px solid #DDD;}
.p_title article::before,.p_title article::after{content: '';position: absolute;left: 0;}
.p_title article::before{top: 0;width: 100%;height: 1px;background: #DDD;}
.p_title article::after{top: -1px;width: 55%;height: 3px;background: var(--i_color);}

.p_btn{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 .4rem;}
.p_btn a:nth-child(2){background: #FFF; border: 1px solid var(--i_color);}
.p_btn a:nth-child(2) b,.p_btn a:nth-child(2) iconify-icon{color: var(--i_color);}

@media screen and (max-width:1024px) {
	h1.p_name{font-size: 22px;}
}
@media screen and (max-width:560px) {
	h1.p_name{font-size: 20px;}
	.p_btn{gap: 0 20px;}
}







.p_share{}
.p_share dl{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;gap: 0 .2rem;}
.p_share dt{font-size: 0.2rem;}
.p_share dd{-webkit-transition:all .5s ease; transition:all .5s ease;}

.p_share dd a{display: block;width: 0.4rem;height: 0.4rem;background: #F1F1F1;position: relative;-webkit-border-radius:50%; border-radius:50%;}
.p_share dd iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.18rem;color: #CCC;}
.p_share dd:hover{-webkit-transform:translate(0,-6px); transform:translate(0,-6px);}
.p_share dd a:hover{background: rgb(0 110 191 / 15%);}
.p_share dd a:hover iconify-icon{color: var(--i_color);}

@media screen and (max-width:560px) {
	.p_share dt{font-size: 16px;}
	.p_share dd a{width: 34px;height: 34px;}
	.p_share dd iconify-icon{font-size: 16px;}
}




.p_content .wrap{max-width:60vw!important}
@media screen and (max-width:1024px) {
    .p_content .wrap{max-width:none!important}
}




.pAdv{border-top: 1px solid #DDD;}
.pAdv>h5{margin-bottom: 0.2rem; font-size: 0.22rem;color: var(--i_color); font-weight: bold;}

.pAdv dl{}
.pAdv dt{margin: .3rem 0; display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center; gap: 0 4%;}
.pAdv dt h6{margin-bottom: 0.2rem; font-size: 0.2rem;}
.pAdv dt p{font-size: .16rem;color: #888; line-height: 1.8;}
.pAdv dt>img{flex-shrink: 0; width: 45%;}

.pAdv dt:nth-child(even) img{order: -1;}

@media screen and (max-width:1024px) {
	.pAdv>h5{font-size: 20px;}
	.pAdv dt h6{font-size: 18px;}
	.pAdv dt p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.pAdv dt{flex-wrap: wrap; gap: 20px 0;}
	.pAdv dt>img{order: -1; width: 100%;}
}
@media screen and (max-width:560px) {
	.pAdv>h5{font-size: 18px;}
	.pAdv dt h6{margin-bottom: 10px; font-size: 16px;}
}





.p_tags{display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: baseline; gap: .06rem 0;}
.p_tags>p{margin-right: 12px; font-size: 0.18rem;font-weight: bold;}
.p_tags a{margin-right: .26rem; font-size: 0.14rem;}
.p_tags a:hover{color: var(--i_color);text-decoration: underline;}
@media screen and (max-width:768px) {
	.p_tags>p{font-size: 15px;}
	.p_tags a{font-size: 13px;}
}





.p_view_other{padding-top: 0.2rem; border-top: 1px solid #DDD;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 .arrow_btn{flex-shrink: 0; width: 0.4rem; height: 0.4rem; box-sizing: border-box; border: 1px solid #BBB; -webkit-border-radius:50%; border-radius:50%;position: relative;}
.p_view_other .arrow_btn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.26rem; color: #888;}
.p_view_other a{font-size: 0.16rem;}
.p_view_other a b{font-weight: bold;}
.p_view_other .next{text-align: right;}
.p_view_other li:hover .arrow_btn{border-color: var(--i_color);background: var(--i_color);}
.p_view_other li:hover .arrow_btn iconify-icon{color: #FFF;}
.p_view_other a:hover{color: var(--i_color);text-decoration: underline;}

@media screen and (max-width:1024px) {
	.p_view_other a{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.p_view_other{flex-wrap: wrap;gap: 8px 0;}
	.p_view_other li{width: 100%;max-width: 100%;}
	.p_view_other .arrow_btn{width: 30px;height: 30px;}
	.p_view_other .arrow_btn iconify-icon{font-size: 20px;}
	.p_view_other .next{text-align: left;}
	.p_view_other .next .arrow_btn{order: -1;}
}







.relatedProduct{background: #F7F7F7;}

.relatedProduct_list{position:relative; overflow:hidden}
.relatedProduct_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.relatedProduct_list .swiper-slide{flex-shrink:0; position:relative; box-shadow: 0 6px 0.1rem rgb(0 0 0 / 10%);}

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

@media screen and (max-width:768px) {
	.relatedProduct-pagination{margin-top: 20px;}
	.relatedProduct-pagination .swiper-pagination-bullet{width: 30px;}
}







.nav_anchorPoint{background: #F1F1F1; width: 100%;}
.nav_anchorPoint.navFix{position: fixed;top: var(--header_height);left: 0; box-shadow: 0 2px 10px rgb(0 0 0 / 10%); z-index: 2013;}
.nav_anchorPoint ul{display:-webkit-flex; display:flex; flex-wrap:nowrap; justify-content: space-between;}
.nav_anchorPoint li{box-sizing: border-box; padding: .14rem .1rem; width: 100%; text-align: center; cursor: pointer;display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: center; align-items: center;}
.nav_anchorPoint p{font-size: 0.18rem;font-weight: bold;}

.nav_anchorPoint li.curr p{color: 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) {
	.nav_anchorPoint{display: none;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}





.about__{position: relative;}
.about__::before{content: '';position: absolute;left: 0;top: 0;width: 100%;height: 84%;background: #F1F1F1;}
.about__::after{content: '';position:absolute;left: 0; top:.8rem; width: 100%;height: 6rem;background:url(static/images/about_map.webp) no-repeat top center; background-size: contain;}

.about__ .wrap{z-index: 3;}
.about__cont{display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center;}

.about__text{width: 54%; height: 3.2rem; box-sizing: border-box; padding-right: 0.3rem; overflow-y: auto;}
.about__text::-webkit-scrollbar{width:4px; height:8px}
.about__text::-webkit-scrollbar-thumb{background: var(--i_color)}
.about__text article{line-height: 1.7;}

.about__num{margin-left: auto; width: 40%; display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .7rem 4%;}
.about__num dt{width: 48%;}
.about__num span{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;gap: 0 .1rem;}
.about__num iconify-icon{font-size: 0.5rem;color: var(--i_color);}
.about__num i{font-size: 0.4rem;color: var(--i_color); display:-webkit-flex; display:flex; flex-wrap:nowrap;}
.about__num p{margin-top: 6px; font-size: 0.16rem;color: #666;}

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

	.about__num{margin: 40px 0 0; width: 100%;}
	.about__num iconify-icon{font-size: 40px;}
	.about__num i{font-size: 28px;}
	.about__num p{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.about__::before{height: 90%;}
	.about__text{height: auto; padding-right: 0;}
	.about__num{gap: .4rem 4%;}
	.about__num iconify-icon{font-size: 30px;}
	.about__num i{font-size: 22px;}
}
@media screen and (max-width:560px) {
	.about__::before{height: 95%;}
	.about__num p{font-size: 13px;}
}






.about__video{text-align: center; position: relative;}
.about__video img{max-width: 100%;}

.video_btn{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); cursor: pointer;}
.video_btn i{display: block; margin: 0 auto; width: 0.42rem;height: 0.42rem;background: #E60012;position: relative;}
.video_btn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.26rem;color: #FFF;}
.video_btn p{font-family: Arial; margin-top: 0.2rem;font-size: 0.3rem;color: #FFF;font-weight: bold;}

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







.about__culture{}

.about__culture__list{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .5rem 3%;}
.about__culture__list li{width: 31.33%; background: #F3F8FB;}

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

.about__culture__list .text{padding: .2rem;}
.about__culture__list .text h5{padding-bottom: 0.1rem;margin-bottom: 0.1rem; font-size: 0.2rem; position: relative;}
.about__culture__list .text h5::before,.about__culture__list .text h5::after{content: '';position: absolute;bottom: 0;height: 1px;}
.about__culture__list .text h5::before{left: 0; width: 100%;background: #CCC;}
.about__culture__list .text h5::after{right: 0; width: 0;background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}

.about__culture__list .text p{font-size: 15px;}

.about__culture__list li:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.about__culture__list li:hover h5{color: var(--i_color);}
.about__culture__list li:hover h5::after{right: initial; left: 0; width: 100%;}

@media screen and (max-width:1024px) {
	.about__culture__list .text h5{font-size: 16px;}
	.about__culture__list .text p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.about__culture__list{gap: 28px 0;}
	.about__culture__list li{width: 100%;}
}







.about__history{background:url(static/images/milestones_bac.webp) no-repeat bottom right;}

.historys_partner_box{
	position: relative;

}
.historys_partner_box::after{
	content: '';
	position: absolute;
	top: 65px;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 1px;
	background-color: var(--i_color);
}
.historys_partner{position:relative}
.historys_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.historys_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.historys_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	box-sizing: border-box;
	padding-left: 1px;
	cursor:pointer;
	flex-direction: column;
}

.historys_partner_list li h3{
	height: 60px;
   font-size: 0.46rem;
   color: #222;
   font-family: 'med';
   transition: all 0.3s ease;
}
.historys_partner_list li i{
   display: block;
   width: 0.12rem;
   height: 0.12rem;
   background-color: var(--i_color);
   border-radius: 0.15rem;
   margin-bottom: 0.45rem;
   margin-left: 0.4rem;
   position: relative;
   transition: all 0.3s ease;
}
.historys_partner_list li i::after{
	content: '';
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    border-radius: 50%;
	opacity: .3;
    width: 0;
    height: 0;
    background: var(--i_color);
}
.historys_partner_list li:hover i::after{
	animation: dot 1.4s infinite ease;
}
.historys_text{
   background: rgba(247,247,247,0.7);
   border-radius: 0.18rem;
   backdrop-filter: blur(6px);
   box-sizing: border-box;
   padding: 0.4rem;
   border: 1px solid transparent;
   transition: all 0.3s ease;

}
.historys_text h4{
   width: 0.12rem;
   height: 0.12rem;
   border-radius: 50%;
   border: 0.02rem solid var(--i_color);
   margin-bottom: 0.2rem;
   background-color: #fff;
   box-sizing: border-box;
   position: relative;
   z-index: 2;
}
.historys_text h4::after{
	content: '';
	position: absolute;
	bottom: 0.1rem;
	left: 50%;
	transform: translate(-50%,0%);
	height: 0.9rem;
	width: 1px;
	background: var(--i_color);
	z-index: -1;
}
.historys_text h5{
	height: 3rem;
   font-size: 0.17rem;
   color: #222;
   line-height: 1.6;
   box-sizing: border-box;
   padding-right: 0.05rem;
   overflow: auto;
   position: relative;
   z-index: 2;

}
.historys_partner_list li:hover .historys_text{
	box-sizing: border-box;
	border: 1px solid var(--i_color);
}
.historys_partner_list li:hover h3{
	color: var(--i_color);
}
.historys_partner_list li:hover i{

}
@keyframes dot{
	0% {
		width: 100%;
		height: 100%;
	}

	50% {
		width: 200%;
		height: 200%;
	}
	100% {
		width: 100%;
		height: 100%;
	}
}


.historys_text h5::-webkit-scrollbar{width:1px; height:1px}
.historys_text h5::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); background:var(--i_color)}
.historys_text h5::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); border-radius:0; background:#F1F1F1}



.historys_LR{
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	gap: 0.2rem;
	margin-top: 0.6rem;
}
.historys_partner .pt-button-prev, .historys_partner .pt-button-next{
	position:relative;
	width:0.5rem;
	height:0.5rem;
	border: 1px solid #999;
	box-sizing: border-box;
	z-index:999;
	cursor:pointer;
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.historys_partner .pt-button-prev iconify-icon, .historys_partner .pt-button-next iconify-icon{
	font-size: 0.2rem;
	color: #999;
	transition: all 0.3s ease;
}

.historys_partner .pt-button-prev:hover, .historys_partner .pt-button-next:hover{
	background-color: var(--i_color);
	border: 1px solid var(--i_color);
}
.historys_partner .pt-button-prev:hover iconify-icon, .historys_partner .pt-button-next:hover iconify-icon{
	color: #fff;
}

@media screen and (max-width:1024px) {
	.historys_partner_list li h3{margin-left: 10px; font-size: 32px;}
	.historys_text h5{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.historys_partner .pt-button-prev, .historys_partner .pt-button-next{width: 40px;height: 40px;}
}






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

.honor_list{padding-top: 0.4rem; position:relative; overflow:hidden}
.honor_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.honor_list .swiper-slide{flex-shrink:0; text-align: center; position:relative}

.honor_list .cover{width:100%; position:relative; top: 0; z-index: 2; -webkit-transition:all .5s ease; transition:all .5s ease; overflow:hidden}
.honor_list .cover::before{content: '';position: absolute;left: 0;top: 0;width: 100%;height: 75%;background: #F1F1F1;}
.honor_list .cover::after{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 25%;background: #F3F8FB;}
.honor_list .cover i{display: block;width: 100%;position:relative; z-index: 3; overflow:hidden}
.honor_list .cover i::before{content:""; display:block; padding-bottom:124%}
.honor_list .cover img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width:100%; max-height:100%; object-fit: contain;-webkit-transition:all .5s ease; transition:all .5s ease;}

.honor_list .swiper-slide p{position: absolute;left: 0;bottom: 2px; width: 100%;box-sizing: border-box; padding: 0 .2rem; font-size: 15px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}

.honor_list .swiper-slide:hover .cover{top: -.4rem; box-shadow: 0 4px .1rem rgb(0 0 0 / 10%);}

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

@media screen and (max-width:1024px) {
	.honor_list{padding: 0 0;}
	.honor_list .swiper-slide p{position: initial; margin-top: 14px; white-space:wrap; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
	.honor_list .swiper-slide:hover .cover{top: 0;}
}
@media screen and (max-width:768px) {
	.honor-pagination{margin-top: 20px;}
	.honor-pagination .swiper-pagination-bullet{width: 30px;}
}







.about__environment{}

.about__environmentNav{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: center; gap: 10px .6rem;}
.about__environmentNav li{position: relative;}
.about__environmentNav li:not(:last-child)::before{content: '';position:absolute; top:50%; transform:translate(0,-50%); left: calc(100% + .3rem);width: 1px;height: 70%;background: #AAA;}
.about__environmentNav p{font-size: 0.17rem;font-weight: bold;cursor: pointer;}
.about__environmentNav li.active p{color: var(--i_color);}

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

@media screen and (max-width:768px) {
	.about__environmentNav p{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.about__environmentNav{gap: 10px 4%;}
	.about__environmentNav li{width: 48%;text-align: center;}
	.about__environmentNav li::before{display: none;}
}



.environment_list{position:relative; overflow:hidden}
.environment_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.environment_list .swiper-slide{flex-shrink:0; position:relative; overflow: hidden;}
.environment_list .swiper-slide::before{content: ''; display: block; padding-bottom: 100%;}
.environment_list .swiper-slide img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

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

@media screen and (max-width:768px) {
	.environment-pagination{margin-top: 20px;}
	.environment-pagination .swiper-pagination-bullet{width: 30px;}
}






.industryList{}

.industryCont{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 3%;}
.industryCont_pic{flex-shrink: 0; width: 48.4%;}
.industryCont_pic img{width: 100%;}

.industryCont_txt{width: 100%;}
.industryCont_txt h5{margin-bottom: 0.2rem; font-size: 0.2rem;font-weight: bold;}
.industryCont_txt span{font-size: 0.16rem;line-height: 1.7;}

.industryList .item:nth-child(even){background:url(static/images/industryItem_bg.webp) no-repeat center;background-size: cover;}
.industryList .item:nth-child(even) .industryCont_txt{order: -1;}

@media screen and (max-width:1024px) {
	.industryCont_txt h5{font-size: 18px;}
	.industryCont_txt span{font-size: 13px; line-height: 1.3;}
}
@media screen and (max-width:768px) {
	.industryCont{flex-wrap: wrap;gap: 20px 0;}
	.industryCont_pic{width: 100%;}
}
@media screen and (max-width:560px) {
	.industryCont_txt h5{margin-bottom: 10px; font-size: 16px;}
}



.industryGallery{width: 100%;position: relative;}

.industryGallery_list{width: calc(100% - .6rem); margin: 0 auto; position:relative; overflow:hidden}
.industryGallery_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.industryGallery_list .swiper-slide{flex-shrink:0; position:relative; overflow: hidden;}
.industryGallery_list .swiper-slide::before{content: '';display: block;padding-bottom: 56.54%;}
.industryGallery_list .swiper-slide img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.industryGallery-prev,.industryGallery-next{position:absolute; top:50%; transform:translate(0,-50%); width:.2rem; height:.4rem; z-index:3; cursor:pointer; outline:none; -webkit-user-select:none; user-select:none}
.industryGallery-prev{left:0;}
.industryGallery-next{right:0;}
.industryGallery-prev iconify-icon,.industryGallery-next iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.4rem; color:#777;}
.industryGallery_list .swiper-button-disabled{cursor:not-allowed}
.industryGallery-prev:hover iconify-icon,.industryGallery-next:hover iconify-icon{color: var(--i_color);}

.industryGallery-pagination{display:none}

@media screen and (max-width:1024px) {
	.industryGallery_list{width: 100%;}
	.industryGallery-prev,.industryGallery-next{display: none;}
	.industryGallery-pagination{display:block; margin-top:0.2rem; text-align:center}
	.industryGallery-pagination .swiper-pagination-bullet{width:.3rem; height:2px; display:inline-block; margin:0 6px; background:#CCC; outline:none; cursor:pointer;}
	.industryGallery-pagination .swiper-pagination-bullet-active{background:var(--i_color)}
}
@media screen and (max-width:768px) {
	.industryGallery-pagination{margin-top: 10px;}
	.industryGallery-pagination .swiper-pagination-bullet{width: 0.2rem;}
}







.brand{
	background:-webkit-linear-gradient(top, #F2FAFF, transparent);
	background:linear-gradient(to bottom, #F2FAFF, transparent);
}

.brandCont{position: relative;}
.brandCont img{width: 100%;}
.brandCont span{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 35%;text-align: center;}
.brandCont span h5{margin-bottom: 0.12rem; font-size: 0.28rem;font-weight: bold;}
.brandCont span p{color: #666;}

.brand_list{position:relative; overflow:hidden}
.brand_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.brand_list .swiper-slide{flex-shrink:0; position:relative}
.brand_list .swiper-slide span{display: block; box-sizing: border-box;border: 1px solid #E1E1E1; position: relative;overflow: hidden;}
.brand_list .swiper-slide span::before{content: '';display: block;padding-bottom: 66.66%;}
.brand_list .swiper-slide img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width:85%; height:75%; object-fit: contain;}

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

@media screen and (max-width:1024px) {
	.brandCont span h5{font-size: 20px;}
}
@media screen and (max-width:768px) {
	.brandCont span p{display: none;}
	.brand-pagination .swiper-pagination-bullet{width: 10px;}
}
@media screen and (max-width:560px) {
	.brandCont span h5{font-size: 16px;}
}







.newsList{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .5rem 3%;}
.newsList li{width: 47.5%;background: #F7F7F7;}

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

.newsList .text{padding:.2rem .2rem .4rem;}
.newsList .text i{font-size: 15px;}
.newsList .text h5{margin: 0.1rem 0;padding-top: 0.1rem; border-top: 1px solid #E1E1E1; font-size: 0.24rem; position: relative; overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.newsList .text p{font-size: 15px; color: #555;overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;}

.newsList .i_more{background: #FFF; box-sizing: border-box; border: 1px solid var(--i_color);}
.newsList .i_more b,.newsList .i_more iconify-icon{color: var(--i_color);}

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

@media screen and (max-width:1024px) {
	.newsList .text i{font-size: 13px;}
	.newsList .text h5{margin: 10px 0; font-size: 18px;}
	.newsList .text p{font-size: 14px;}

	.newsList .i_more{display: none;}
}
@media screen and (max-width:768px) {
	.newsList .text h5{font-size: 16px;line-height: 1.4;}
	.newsList .text p{-webkit-line-clamp:2}
}
@media screen and (max-width:560px) {
	.newsList{gap: 28px 0;}
	.newsList li{width: 100%;}
	.newsList .text h5{font-size: 15px;}
}







.contact__sec{}

.contact__cont{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 .6rem;}

.contact__{width: 100%;}
.contact__ h4{color: #222; font-weight: bold;}

.contact__list li{padding-bottom: 0.26rem;margin-bottom: 0.26rem;border-bottom: 1px solid #E1E1E1; display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 .2rem;}
.contact__list i{flex-shrink: 0; width: 0.62rem;height: 0.62rem;background: #F0F1F3;-webkit-border-radius:50%; border-radius:50%; position: relative;}
.contact__list i iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.3rem;color: var(--i_color);}
.contact__list span{width: 100%;}
.contact__list h6{margin-bottom: 6px; font-size: 15px;color: #666;}
.contact__list p,.contact__list a{font-size: 0.18rem;}

.contact__list li:hover{border-bottom-color: var(--i_color);}
.contact__list li:hover i{background: var(--i_color);}
.contact__list li:hover iconify-icon{color: #FFF;}
.contact__list a:hover{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.contact__cont{flex-wrap: wrap;gap: 20px 0;}
	.contact__ h4{font-size: 18px;}

	.contact__list i{width: 50px;height: 50px;}
	.contact__list i iconify-icon{font-size: 24px;}
	.contact__list p,.contact__list a{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.contact__ h4{display: none;}
	.contact__list li{padding-bottom: 20px;margin-bottom: 20px;}
	.contact__list i{width: 40px;height: 40px;}
	.contact__list i iconify-icon{font-size: 20px;}

	.contact__list h6{font-size: 14px;}
}







.contact__form{flex-shrink: 0; width: 50%;box-sizing: border-box;padding: .3rem;background: #F7F7F7;}

#wpforms-103{
	--wpforms-field-size-input-height:50px;
	--wpforms-field-border-size:0;
	--wpforms-button-background-color:var(--i_color);
	--wpforms-button-border-color:var(--i_color);
	--wpforms-page-break-color:var(--i_color);
	--wpforms-label-error-color:#d63637;
}
#wpforms-103{margin:0;padding:0;}
#wpforms-form-103{width:100%;position:relative;}

#wpforms-103 .wpforms-field-container{}
#wpforms-103 .wpforms-field-container>.wpforms-field{width: 100%;padding: 0 1px 20px;margin: 0 0 10px;overflow-x:initial !important}

#wpforms-103 .wpforms-field-container .wpforms-field-label{height: 0; font-size: 0;margin: 0 0;}
#wpforms-103 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 4px; font-size: 15px;color: #F00;font-weight: bold;}

#wpforms-103 .wpforms-field-container .wpforms-field>input,
#wpforms-103 .wpforms-field-container textarea
{border: 1px solid #CCC; background: #FFF;}
#wpforms-103 .wpforms-form label.wpforms-error{position: absolute;left: 0;bottom: 0;font-size: 13px;}

#wpforms-103 .wpforms-field-container .wpforms-field>input,
#wpforms-103 .wpforms-field-container textarea,
#wpforms-103 .wpforms-field-container select,
#wpforms-103 .wpforms-field-container .choices
{width: 100%;max-width: 100%; box-sizing: border-box; margin: 0 0;}
#wpforms-103 .wpforms-field-container .wpforms-field>input,
#wpforms-103 .wpforms-field-container textarea,
#wpforms-103 .wpforms-field-container select
{padding-left: 14px;padding-right: 14px;}
#wpforms-103 .wpforms-field-container textarea{padding-top: 10px;padding-bottom: 10px;}
#wpforms-103 .wpforms-field-container fieldset ul{padding: 0 2px; display:-webkit-flex; display:flex; flex-wrap:wrap;}
#wpforms-103 .wpforms-field-container select{cursor: pointer;}
#wpforms-103 .wpforms-field-container .wpforms-datepicker-wrap{width: 310px;}
#wpforms-103 .wpforms-field-container .wpforms-datepicker-wrap input{width: 100%;max-width: 100%;}
#wpforms-103 .wpforms-field-container .wpforms-datepicker-clear{right: 10px;}
#wpforms-103 .wpforms-field-container em.wpforms-error,#wpforms-103 .wpforms-field-container .mailcheck-error{position: absolute; margin: 0 0; bottom: -2px;}

/* #wpforms-234567 input::placeholder, #wpforms-234567 textarea::placeholder{color:#333;font-size:16px} */

#wpforms-103 .wpforms-field-container{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: space-between;}
#wpforms-103-field_1-container,
#wpforms-103-field_2-container,
#wpforms-103-field_3-container,
#wpforms-103-field_4-container
{width: 48% !important;}

#wpforms-103 .wpforms-submit-container{width: 100%;padding:0 0; -webkit-border-radius:1rem; border-radius:1rem; overflow: hidden;}
#wpforms-103 .wpforms-submit-container button{width: 100%;height:.54rem; font-size: 16px; color: #FFF; background: var(--i_color);}
#wpforms-103 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-103 .wpforms-submit-container button:hover{background: #0a5084;}

@media screen and (max-width:1024px) {
	.contact__form{width: 100%;}
}
@media screen and (max-width:768px) {
	#wpforms-103 .wpforms-field-container>.wpforms-field{width: 100% !important;}
}
@media screen and (max-width:560px) {
	.contact__form{padding: 20px;}
}








.map{width: 100%;position: relative;overflow: hidden;}
.map::before{content: '';display: block;padding-bottom: 34%;}
.map iframe{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

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