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

:root {
	--i_color: #E30002;
	--i_color2: #0866FF;
	--top1_height: .34rem;
	--top2_height:.8rem;
	--header_height: calc(var(--top1_height) + var(--top2_height));
}
@media screen and (max-width:1024px) {
	:root {
		--top2_height:.6rem;
		--header_height: .6rem;
	}
}





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

.wrap_top{width: 94%; max-width: 1600px; margin-left: auto;margin-right: auto;}
.wrap_top2{margin-left: 8.16vw;}
@media screen and (max-width:1680px) {
	.wrap_top2{margin-left: 3vw}
}






.wrap_l{margin-left: 13.4vw;}
.wrap_r{margin-right: 13.4vw;}

@media screen and (max-width:1680px) {
	.wrap_l{margin-left: 8.3vw;}
	.wrap_r{margin-right: 8.3vw;}
}
@media screen and (max-width:1440px) {
	.wrap_l{margin-left: 3vw;}
	.wrap_r{margin-right: 3vw;}
}





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

.top{background: #000;}
.wrap_top{display:flex; flex-wrap:wrap; align-items: center;}

.welcome{font-size: 14px; color: #FFF; line-height: var(--top1_height);}
.topMedia{margin-left: auto; display:flex; flex-wrap:wrap; gap: 0 .14rem;}
.topMedia li{}
.topMedia iconify-icon{font-size: 0.2rem; color: var(--i_color);}
/*.topMedia a:hover iconify-icon{color: var(--i_color2);}*/

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.top{display: none;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}




.top2{position: relative;}
.wrap_top2{display:flex; flex-wrap:nowrap; align-items: center;}

/* logo */
.logo {
	flex-shrink: 0;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: var(--top2_height);
}
.logo a {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
.logo img {max-height: 75%;}
@media screen and (max-width:1366px) {
	.logo img {max-height: 65%;}
}






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

	.i_nav>li {position: relative;}

	.i_nav>li>a {
		display: block;
		font-size: .18rem;
		color: #333;
		line-height: var(--top2_height);
		white-space: nowrap;
		position: relative;
	}
	.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:-20px;
		min-width: 1.4rem;
		background: #FFF;
		overflow: hidden;
		box-shadow: 0 .06rem .1rem rgb(0 0 0 / 8%);
		font-size: 0;
		text-align: left;
	}

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

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

	.i_nav .sub-menu li:hover a {
		color: var(--i_color);
	}
}
@media screen and (max-width:1440px) {
	.i_nav{gap: 0 .5rem;}
}
@media screen and (max-width:1200px) {
	.i_nav>li>a{font-size: 0.17rem;}
}






@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;
		margin-right: 3%;
	}
}





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




.top_search_ico{position: relative; font-size: 0; height: var(--top2_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: -.18rem;width: 1px;height: 0.2rem;background: #CCC;}
.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);}
@media screen and (max-width:1024px) {
	.top_search_ico::before{display: none;}
}

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

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





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

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

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

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




.top_whatsapp{display:flex; flex-wrap:wrap; align-items: center; height: var(--top2_height); background: var(--i_color);}
.top_whatsapp a{padding: 0 .6rem 0 .3rem;}
.top_whatsapp span{display:flex; flex-wrap:wrap;align-items: center; gap: 0 .1rem;}
.top_whatsapp iconify-icon{font-size: 0.24rem;color: #FFF;}
.top_whatsapp p{font-size: 0.16rem;color: #FFF;font-weight: bold;}
.top_whatsapp h6{margin-top: 0.06rem; font-size: 0.16rem;color: #FFF;}

@media screen and (max-width:1440px) {
	.top_whatsapp a{padding: 0 .4rem 0 .3rem;}
}
@media screen and (max-width:1200px) {
	.top_whatsapp{display: none;}
}
@media screen and (max-width:1024px) {}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}






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





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

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

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

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

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






.banner_text1{position:absolute; top:12%; left: 15%; width: 60%;}
.banner_text1 h3{font-size: 1.9vw; color: var(--i_color); font-weight: 900;}
.banner_text1 i{display: block; margin: .28rem 0 .4rem; width: 60%; height: 1px; background: var(--i_color); position: relative;}
.banner_text1 i::before{content: '';position: absolute; left: 0; bottom: 0; width: 1rem; height: 5px; background: var(--i_color);}
.banner_text1 p{display: table; padding: .2rem .3rem; width: 80%; font-size: 1.4vw; color: #FFF; background:linear-gradient(to right, var(--i_color), transparent);}

@media screen and (max-width:1024px) {
	.banner_text1{left: 3%; width: 80%;}
	.banner_text1 h3{font-size: 2.4vw;}
	.banner_text1 i{margin: 22px 0 24px;}
	.banner_text1 p{padding: 16px 20px; font-size: 1.9vw;}
	.banner_text1 .i_more{margin-top: 26px;}
}
@media screen and (max-width:560px) {
	.banner_text1{width: 93%;}
	.banner_text1 h3{font-size: 3.2vw;}
	.banner_text1 h3 br{display: none;}
	.banner_text1 i{margin: 10px 0 14px;}
	.banner_text1 i::before{width: 50px; height: 3px;}
	.banner_text1 p{padding: 8px 14px; font-size: 13px;}
	.banner_text1 .i_more{margin-top: 16px;}
}




.banner_text2{position: absolute; top: 12%; left: 14%;}
.banner_text2 h3{font-size: 1.9vw; color: #333; font-weight: 900;}
.banner_text2 p{margin-top: 0.26rem; font-size: 1.8vw;}

.banner_text2_btn{position: absolute; bottom: 12%; left: 14%;}

@media screen and (max-width:1024px) {
	.banner_text2{left: 3%;}
	.banner_text2_btn{left: 3%;}
	.banner_text2 h3{font-size: 2.4vw;}
	.banner_text2 p{margin-top: 20px; font-size: 2.2vw;}
}
@media screen and (max-width:560px) {
	.banner_text2 h3{font-size: 2.8vw;}
	.banner_text2 p{margin-top: 10px; font-size: 2.8vw;}
}






.banner_text3{position: absolute; top: 14%; left: 14%;}
.banner_text3 h3{font-size: 1.9vw; color: #333; font-weight: 900;}
.banner_text3 p{margin-top: 0.26rem; font-size: 1.8vw;}

.banner_text3 dl{display:flex; flex-wrap:wrap; gap: 0 .3rem}
.banner_text3 dt{}
.banner_text3 dt img{max-width: 1.34rem; max-height: 1.34rem; object-fit: contain;}

@media screen and (max-width:1024px) {
	.banner_text3{top: 12%; left: 3%;}
	.banner_text3 h3{font-size: 2.4vw;}
	.banner_text3 p{margin-top: 20px; font-size: 2.2vw;}
	.banner_text3 dt img{max-height: 80px;}
}
@media screen and (max-width:768px) {
	.banner_text3 dl{margin-top: 26px; gap: 0 20px;}
	.banner_text3 dt img{max-height: 70px;}
	.banner_text3 .i_more{margin-top: 20px;}
}
@media screen and (max-width:560px) {
	.banner_text3{top: 8%;}
	.banner_text3 h3{font-size: 3.6vw;}
	.banner_text3 p{margin-top: 10px; font-size: 2.8vw;}
	.banner_text3 dl{margin-top: 14px; gap: 0 14px;}
	.banner_text3 dt img{max-height: 42px;}
	.banner_text3 .i_more{margin-top: 14px;}
}




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



.i_tit{}
.i_tit h5{display:flex; flex-wrap:wrap; align-items: center; gap: 0 .1rem; font-size: 0.18rem;color: var(--i_color);}
.i_tit h5 i{display: table; width: 0.4rem;height: 2px; background: var(--i_color);}
.i_tit h3{margin: 6px 0;}
.i_tit h3 i{color: var(--i_color);}
.i_tit p{color: #555;}

.i_tit.white h5{color: #FFF;}
.i_tit.white h5 i{background: #FFF;}
.i_tit.white h3,.i_tit.white p{color: #FFF;}

.i_tit.center{text-align: center;}
.i_tit.center h5{justify-content: center;}

@media screen and (max-width:1024px) {
	.i_tit h5 i{width: 30px;}
	.i_tit h5{font-size: 16px;}
	.i_tit p{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.i_tit h5{font-size: 14px;}
	.i_tit p{font-size: 14px;}
}







.i_more{display: table; border: 1px solid var(--i_color); transition:all .5s ease;}
.i_more span{padding: .1rem .2rem; display:flex; flex-wrap:nowrap;align-items: center;gap: 0 .1rem;}
.i_more b{font-size: 0.18rem;color: var(--i_color); font-weight: bold;}
.i_more iconify-icon{font-size: 0.22rem;color:var(--i_color)}

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

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

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

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






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

@media screen and (max-width:560px) {
	.secTit{flex-wrap: wrap; gap: 20px 0;}
	.secTit .i_more{margin: 0 0;}
}






.homeCat{
	background:linear-gradient(to bottom, transparent, #F1F1F1);
	position: relative;
}
.homeCat::before{content: '';position: absolute;right: 0; bottom: 0; width: 36%; height: 3rem; background:url(static/images/logo-bg.webp) no-repeat right bottom; background-size: contain;}

.homeCat_cont{
	--showWidth: 72%;
	--navMargin: .26rem
}
.homeCat_cont{position: relative; min-height: 5.2rem;}

.homeCat_nav{position:absolute; top:50%; transform:translate(0,-50%); left: 0; width: calc(100% - var(--showWidth) + var(--navMargin)); z-index: 2;}
.homeCat_nav li{margin-top: 0.2rem; width: calc(100% - var(--navMargin) * 2); height: 0.64rem; display:flex; flex-wrap:wrap; align-items: center; justify-content: center; background: #EEE; cursor: pointer; transition:all .5s ease;}
.homeCat_nav li:first-child{margin-top: 0;}
.homeCat_nav p{padding: 0 .3rem; text-align: center; font-size: 0.18rem; font-weight: bold; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; transition:all .5s ease;}

.homeCat_nav li.active{width: 100%; background: var(--i_color);}
.homeCat_nav li.active p{color: #FFF;}

@media screen and (max-width:1024px) {
	.homeCat_nav{margin-bottom: 40px; position: initial; transform: none; width: 100%; display:flex; flex-wrap:wrap; gap: 20px 4%;}
	.homeCat_nav li{width: 48%; height: 56px; margin: 0 0;}
	.homeCat_nav li.active{width: 48%;}
	.homeCat_nav p{padding: 0 20px; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.homeCat_nav{gap: 14px 4%;}
	.homeCat_nav li{height: 50px;}
	.homeCat_nav p{font-size: 14px;}
}






.homeCat_show{width: var(--showWidth); margin-left: auto;}
.homeCat_show .item{opacity: 0; visibility: hidden; position: relative; left: .3rem; height: 0; overflow: hidden;}
.homeCat_show .item.active{opacity: 1; visibility: visible; left: 0; height: auto; transition:all .8s ease;}

.homeCat_show a{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 5%;}

.homeCat_show .coverpic{flex-shrink: 0; width:55%; position:relative; overflow:hidden}
.homeCat_show .coverpic::before{content:""; display:block; padding-bottom:100%}
.homeCat_show .coverpic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: contain; transition:all .5s ease;}

.homeCat_show .text{width: 100%;}
.homeCat_show .text h5{font-size: 0.28rem;color: var(--i_color); font-weight: bold; font-weight: bold;}
.homeCat_show .text p{margin: .1rem 0 .36rem; font-size: 0.16rem; color: #666; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:4;}
.homeCat_show .btn{display: table; width: 0.5rem;height: 0.5rem;background: var(--i_color); border-radius:50%; position: relative;}
.homeCat_show .btn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.18rem;color: #FFF;}

@media screen and (max-width:1200px) {
	.homeCat_show .text h5{font-size: 0.24rem;}
}
@media screen and (max-width:1024px) {
	.homeCat_show{width: 100%;}
	.homeCat_show .text h5{font-size: 20px;}
}
@media screen and (max-width:768px) {
	.homeCat_show .coverpic{width: 40%;}
}
@media screen and (max-width:560px) {
	.homeCat_show a{flex-wrap: wrap; gap: 24px 0;}
	.homeCat_show .coverpic{width: 100%;}
	.homeCat_show .text h5{font-size: 18px;}
	.homeCat_show .text p{margin-bottom: 20px; font-size: 15px;}
	.homeCat_show .btn{width: 40px; height: 40px;}
}







.hotProduct{}

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

.hotProduct-pagination{display:block; width: 100%; height: 3px; position: relative;}
.hotProduct-pagination::before{content: '';position: absolute;left: 0;top: 1px;width: 100%;height: 1px;background: #DDD;}
.hotProduct-pagination span{
	background: var(--i_color);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}







.pItem{display: block;}
.pItem .coverpic{width:100%; box-sizing: border-box; border: 1px solid #EEE; position:relative; overflow:hidden}
.pItem .coverpic::before{content:""; display:block; padding-bottom:100%}
.pItem .coverpic::after{content: ''; position:absolute; left:50%; transform:translate(-50%,0); bottom: 0; width: 0; height: 3px; background: var(--i_color); transition:all .5s ease;}
.pItem .coverpic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: contain; transition:all .5s ease;}
.pItem .text{margin-top: 0.2rem; text-align: center;}
.pItem .text p{font-size: 0.18rem;font-weight: bold; line-height: 1.3; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.pItem:hover .coverpic::after{width: 100%;}
.pItem:hover p{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.pItem .text p{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.pItem .text{margin-top: 12px;}
	.pItem .text p{font-size: 14px;}
}







.homeAbout{
	padding-bottom: 2rem;
	background:url(static/images/home-about-bg.webp) no-repeat center;
	background-attachment: fixed;
	background-size: cover;
}

.homeAbout_cont{display:flex; flex-wrap:nowrap; gap: 0 4%; align-items: center;}

.homeAbout_cont .pic{flex-shrink: 0; width: 50%; position: relative;}
.homeAbout_cont .pic::before{content: '';position: absolute; left: 0; bottom: 0;width: 100%; height: 5px; background: var(--i_color);}
.homeAbout_cont .pic img{width: 100%;}
.homeAbout_cont .pic:hover .vBtn{transform:translate(-50%,-50%) rotate(360deg); transition:all .5s ease;}

.homeAbout_cont .txt{width: 100%;}
.homeAbout_cont .txt article{color: #FFF;}
.homeAbout_cont .txt dl{display:flex; flex-wrap:nowrap; gap: 0 4%;}
.homeAbout_cont .txt dt{width: 100%; position: relative; overflow: hidden;}
.homeAbout_cont .txt dt::before{content: '';display: block; padding-bottom: 60%;}
.homeAbout_cont .txt dt img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; transition:all .5s ease;}

.homeAbout_cont .txt dt:hover img{transform: scale(1.05, 1.05);}

@media screen and (max-width:768px) {
	.homeAbout_cont{flex-wrap: wrap; gap: 24px 0;}

	.homeAbout_cont .pic{width: 100%;}
}
@media screen and (max-width:560px) {
	.homeAbout{padding-bottom: 1rem;}
}





.vBtn{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 0.68rem;height: 0.68rem; background: rgb(227 0 2 / 50%); border-radius:50%; cursor: pointer;}
.vBtn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.36rem; color: #FFF;}

@media screen and (max-width:1024px) {
	.vBtn{width: 60px; height: 60px;}
	.vBtn iconify-icon{font-size: 30px;}
}
@media screen and (max-width:560px) {
	.vBtn{width: 50px; height: 50px;}
	.vBtn iconify-icon{font-size: 26px;}
}






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






.aboutList{margin-top: -1.3rem; display:flex; flex-wrap:nowrap; background: #FFF; box-shadow: 0 6px 10px rgb(227 0 2 / 5%);}
.aboutList dt{width: 100%; box-sizing: border-box; padding: .5rem; text-align: center; position: relative;}
.aboutList dt::before{content: '';position:absolute; top:50%; transform:translate(0,-50%); left: 0; width: 1px; height: 70%; background: rgb(0 0 0 / 10%);}
.aboutList dt:first-child::before{display: none;}

.aboutList iconify-icon{font-size: 0.6rem; color: #333;}
.aboutList i img{opacity: .8; height: 0.6rem; -webkit-filter:brightness(0); filter:brightness(0);}

.aboutList span{display: block; margin-top: 0.24rem;}

.aboutList dt:hover iconify-icon{transform:rotateY(360deg); color: var(--i_color); transition:all .5s ease;}

@media screen and (max-width:1200px) {
	.aboutList iconify-icon{font-size: 0.5rem;}
}
@media screen and (max-width:1024px) {
	.aboutList dt{padding: 40px 30px;}
	.aboutList iconify-icon{font-size: 42px;}
	.aboutList i img{height: 42px;}
	.aboutList span{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.aboutList{flex-wrap: wrap;}
	.aboutList dt{padding: 24px 20px; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 20px; text-align: left;}
	.aboutList dt::before{top: 0; transform: none; width: 100%; height: 1px; background: rgb(0 0 0 / 5%);}
	.aboutList i img{height: 36px;}
	.aboutList span{margin: 0 0;}
}
@media screen and (max-width:560px) {
	.aboutList{margin-top: -66px;}
	.aboutList iconify-icon{font-size: 30px;}
	.aboutList i img{height: 30px;}
}







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

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

.homeCase_list .coverpic{width:100%; position:relative; overflow:hidden}
.homeCase_list .coverpic::before{content:""; display:block; padding-bottom:73%}
.homeCase_list .coverpic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; transition:all .5s ease;}
.homeCase_list .play{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 0.66rem;height: 0.66rem; background: rgb(255 255 255 / 50%); border-radius:50%; z-index: 3;}
.homeCase_list .play iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.34rem;color: var(--i_color);}

.homeCase_list .text{padding: .24rem .1rem; text-align: center; position: relative;}
.homeCase_list .text::before{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;background: #DDD; transition:all .5s ease;}
.homeCase_list .text p{font-size: 0.18rem;font-weight: bold; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; position: relative; transition:all .5s ease;}

.homeCase_list li:hover .play{background: rgb(227 0 2 / 50%);}
.homeCase_list li:hover .play iconify-icon{color: #FFF;}
.homeCase_list li:hover .text::before{height: 100%; background: var(--i_color);}
.homeCase_list li:hover .text p{color: #FFF;}

.homeCase-navigation{display:flex; flex-wrap:nowrap; gap: 0 .3rem; align-items: center; justify-content: center;}
.homeCase-navigation>div{width:.46rem; height:.46rem; box-sizing: border-box; border: 1px solid #DDD; border-radius:50%; position: relative; cursor: pointer;}
.homeCase-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);}
.homeCase_list .swiper-button-disabled{cursor:not-allowed}
.homeCase-navigation>div:hover{background: var(--i_color); border-color: var(--i_color);}
.homeCase-navigation>div:hover iconify-icon{color: #FFF;}


.homeCase-pagination{display:none}

@media screen and (max-width:1200px) {
	.homeCase_list .text p{font-size: 14px;}
}
@media screen and (max-width:1024px) {
	.homeCase_list .play{width: 50px; height: 50px;}
	.homeCase_list .play iconify-icon{font-size: 28px;}

	.homeCase_list .text{padding: 16px 10px;}

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

	.homeCase-navigation{display: none;}
}
@media screen and (max-width:560px) {
	.homeCase_list .play{width: 40px; height: 40px;}
	.homeCase_list .play iconify-icon{font-size: 24px;}
}







.homeNews{position: relative;}
.homeNews::before{content: '';position: absolute; left: 0; top: -26%; width: 100%; height: 5rem; background:url(static/images/home-news-bg.webp) no-repeat center; background-size: 100%;}

.homeNews_list{display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: auto auto; gap: 0 8%; position: relative;}
.homeNews_list::before{content: ''; position:absolute; left:50%; width: 1px; height: 100%;background: #DDD;}
.homeNews_list li{border-bottom: 1px solid #DDD;}

.homeNews_list a{padding: .28rem 0; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .3rem;}

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

.homeNews_list .date{display:none; position: absolute; left: 0.2rem; bottom: 0.2rem; background: var(--i_color); text-align: center; padding: .1rem;}
.homeNews_list .date p{font-size: 0.3rem; color: #FFF;}
.homeNews_list .date i{font-size: 14px; color: #FFF;}

.homeNews_list li:first-child .date{display:block;}

.homeNews_list .text{}
.homeNews_list .text h5{font-size: 0.18rem; font-weight: bold; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.homeNews_list .text p{margin: .1rem 0; font-size: 0.16rem;color: #666; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.homeNews_list .text i{font-size: 14px; color: #999;}

@media screen and (min-width:1025px) {
	.homeNews_list li:first-child{grid-row:span 3;}
	.homeNews_list li:first-child,.homeNews_list li:last-child{border-bottom: none;}
	.homeNews_list li:first-child a{flex-wrap: wrap; gap: .2rem 0;}
	.homeNews_list li:first-child a{padding: 0 0;}
	.homeNews_list li:nth-child(2) a{padding-top: 0;}
	.homeNews_list li:nth-child(4) a{padding-bottom: 0;}
	.homeNews_list li:first-child .text i{display: none;}

	.homeNews_list li:first-child .coverpic{order:-1; width: 100%;}
}

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

@media screen and (max-width:1024px) {
	.homeNews::before{top: -16%;}
	.homeNews_list{display: block;}
	.homeNews_list::before{display: none;}
	.homeNews_list .date{display: none;}
	.homeNews_list li:first-child .date{display:none;}

	.homeNews_list .text h5{font-size: 16px;}
	.homeNews_list .text p{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.homeNews_list a{padding: 18px 0; gap: 0 24px;}
	.homeNews_list .text h5{font-size: 15px;}
	.homeNews_list .text p{font-size: 14px;}

	.homeNews_list .coverpic{width: 35%;}
}







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

.fHead{display:flex; flex-wrap:wrap; align-items: center;}

.fLogo{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .2rem;}
.fLogo img{flex-shrink: 0; height: 0.54rem;}
.fLogo h3{color: #FFF; font-weight: bold;}

.fMedia{margin-left: auto; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .1rem;}
.fMedia p{font-size: 0.18rem;color: #FFF;font-weight: bold;}
.fMedia dl{display:flex; flex-wrap:wrap; align-items: center; gap: 0 .26rem;}
.fMedia dt{}
.fMedia iconify-icon{font-size: 0.26rem; color: var(--i_color);}
/*.fMedia a:hover iconify-icon{color: var(--i_color2);}*/

.icon_facebook iconify-icon{color:#0866FF}


.fMain{display:flex; flex-wrap:wrap; justify-content: space-between;}

.fTit{margin-bottom: 0.3rem; padding-top: 0.26rem; border-top: 1px solid rgb(255 255 255 / 60%); font-size: 0.28rem;color: #FFF;font-weight: bold;}

.fNav{width: 30%;}
.fNav_list{}
.fNav_list li{margin-bottom: 0.22rem;}
.fNav_list a{display: block; font-size: 0.18rem; color: #FFF;}
.fNav_list a:hover{color: var(--i_color);}


.fContact{width: 30%;}
.fContact_list{}
.fContact_list li{margin-bottom: 0.5rem;}
.fContact_list dl{}
.fContact_list dt{margin-bottom: 0.22rem;}
.fContact_list dt,.fContact_list dt a{font-size: 0.18rem;color: #FFF;}
.fContact_list dt a:hover{color: var(--i_color);}


.fQR{}
.fQR_list{display:flex; flex-wrap:nowrap; gap: 0 .24rem;}
.fQR_list dt{text-align: center;}
.fQR_list img{height: 1.5rem;}
.fQR_list p{margin-top: 0.14rem; font-size: 0.18rem; color: #FFF;}


.fAddress{display:flex; flex-wrap:wrap; gap: 0 4%; justify-content: space-between;}
.fAddress dt{max-width: 48%;}
.fAddress h6{font-size: 0.2rem;color: #FFF;font-weight: bold;}
.fAddress p{margin-top: 0.14rem; font-size: 0.18rem;color: #FFF;}


.fCR{background: rgb(255 255 255 / 6%);}
.fCR p{}
.fCR p,.fCR a{font-size: 0.17rem; color: #FFF; line-height: 47px;}
.fCR a:hover{color: var(--i_color); text-decoration: underline;}

@media screen and (max-width:1024px) {
	.fLogo img{height: 40px;}

	.fNav{display: none;}

	.fContact{width: 100%;}
	.fTit{font-size: 22px; border-color: rgb(255 255 255 / 14%);}
	.fContact_list li{margin-bottom: 30px;}
	.fContact_list dt{margin-bottom: 14px;}
	.fContact_list dt, .fContact_list dt a{font-size: 16px;}

	.fQR{width: 100%;}
	.fQR_list img{height: 1rem;}
	.fQR_list p{font-size: 15px;}

	.fAddress{gap: 30px 0;}
	.fAddress dt{max-width: none; width: 100%;}
	.fAddress h6{font-size: 18px;}
	.fAddress p{margin-top: 10px; font-size: 16px;}

	.fCR{padding: 16px 0;}
	.fCR p, .fCR a{font-size: 15px; line-height: 1.5;}
}
@media screen and (max-width:768px) {
	.fHead{gap: 20px 0;}
	.fMedia{width: 100%;}

	.fTit{font-size: 20px}
}
@media screen and (max-width:560px) {
	.fHead{gap: 14px 0;}
	.fLogo h3{font-size: 16px;}
	.fMedia p{font-size: 15px;}
	.fMedia dl{gap: 0 14px;}
	.fMedia iconify-icon{font-size: 24px;}

	.fTit{font-size: 18px;}

	.fAddress h6{font-size: 16px;}
	.fAddress p{font-size: 14px; line-height: 1.5;}

	.fCR p, .fCR a{font-size: 13px}
}






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

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

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

@media screen and (max-width:560px) {
	.banner__text h2{font-size: 18px;}
}






/* Breadcrumb */
.in_position{padding:.2rem 0; position:relative;}
.in_position .wrap{display:flex;flex-wrap:wrap;align-items:center;}
.in_position a{display:block;font-size:15px;color:#333;position:relative;line-height:20px;}
.in_position a:first-child{padding-left: 0.26rem;}
.in_position a:first-child::before{
	content: '';
	position:absolute; top:50%; transform:translate(0,-50%);left: 0;
	width: 20px;height: 20px;
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M13 19h6V9.978l-7-5.444l-7 5.444V19h6v-6h2zm8 1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V9.49a1 1 0 0 1 .386-.79l8-6.223a1 1 0 0 1 1.228 0l8 6.223a1 1 0 0 1 .386.79z'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
}
.in_position a:not(:last-child):after {content:">";margin:0 4px;color:#555}
.in_position a:last-child {color: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%;}
.cat_nav{flex-shrink: 0; width: 26%; box-sizing: border-box; position: relative;}
.catList_show{width: 100%; margin-left: auto;}

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







.cat_nav_tit{padding-bottom: 0.16rem; position: relative; border-bottom: 1px solid #DDD;}
.cat_nav_tit h4{font-size: 0.3rem; color: var(--i_color); font-weight: bold;}
.cat_nav_tit iconify-icon{display: none;}

.cat_nav_list{position: relative;}
.cat_nav_list li{position: relative; border: 1px solid transparent; border-bottom-color:#DDD;}
.cat_nav_list li.active{border: 1px solid rgb(227 0 2 / 40%);}

.cat_fold_tit{display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;padding: 0 .1rem 0 .14rem; gap: 0 .2rem;}
.cat_fold_tit a{padding: .16rem 0; width: 100%; font-size: 0.18rem; font-weight: bold; line-height: 1.5;}
.cat_fold_tit iconify-icon{margin-left: auto;flex-shrink: 0;font-size: 0.3rem;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(90deg); transform:rotate(90deg);}

.cat_fold_sub{display: none; padding: .18rem .14rem;}
.cat_fold_sub dt{box-sizing: border-box; border-radius:4px;}
.cat_fold_sub a{display: block;padding: .14rem .2rem;font-size: 0.16rem; position: relative; transition:all .5s ease;}
.cat_fold_sub a::before{opacity: 0; content: ''; position:absolute; top:50%; transform:translate(0,-50%); left: 0; width: 0.24rem; height: 0.24rem; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23E30002' d='M10 17V7l5 5z'/%3E%3C/svg%3E") no-repeat center; background-size: contain; transition:all .5s ease;}

.cat_fold_sub a:hover, .cat_fold_sub dt.active a{padding-left: 0.36rem; background: rgb(227 0 2 / 6%);}
.cat_fold_sub a:hover::before, .cat_fold_sub dt.active a::before{opacity: 1; left: 0.1rem;}

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

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

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

	.cat_nav_list{padding: 20px 20px;}

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






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

@media screen and (max-width:1024px) {
	.category_name{margin-bottom: 18px;}
}






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

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





/* Paging */
.in_paging{
	--size:34px;
	--border_radius:0;
}
.in_paging ul{display:flex; flex-wrap:wrap;justify-content:center;align-items:center;text-align: center;}
.in_paging li{min-width: var(--size);margin: 0 4px;}
.in_paging a,.in_paging span {display:block;padding: 0 10px; height: var(--size); line-height:calc(var(--size) - 2px);font-size:14px;color:#666;background:#EEE;box-sizing: border-box; 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:560px) {
	.in_paging{--size:30px;}
}







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

/* atlas */
.p_atlas {flex-shrink: 0; width:35%; box-sizing: border-box; position: relative;}
.p_atlas_list {width: 100%; box-sizing: border-box; border: 1px solid #DDD; background: #FFF; margin-left: auto; margin-right: auto; position:relative;overflow:hidden}
.p_atlas_list .swiper-wrapper {display:-webkit-flex;display:flex;position:relative;width:100%}
.p_atlas_list .swiper-slide {flex-shrink:0;position:relative;overflow:hidden;}
.p_atlas_list .swiper-slide::before {content:'';display:block;padding-bottom:100%;}
.p_atlas_list .swiper-slide img {position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;}

/* thumbnail */
.p_thumbnail_list {width:calc(100% - 1.2rem);margin:.2rem auto 0;box-sizing:border-box;position:relative;overflow:hidden}
.p_thumbnail_list .swiper-wrapper {display:-webkit-flex;display:flex;position:relative;width:100%}
.p_thumbnail_list .swiper-slide {box-sizing: border-box; border: 1px solid transparent; flex-shrink:0;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 {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.36rem;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;bottom:.1rem;right:.1rem;text-align:center;padding: 2px 6px; z-index:2;}
.thumbnail-pagination,.thumbnail-pagination span{font-size: 14px; color: #666;}
.thumbnail-pagination .swiper-pagination-current{font-size: 0.22rem;color: var(--i_color);}

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

	.p_atlas{width: 100%; max-width: 6rem; margin: 0 auto .46rem;}
	.p_thumbnail_list{width: 100%;}
	.thumbnail-prev, .thumbnail-next{display: none;}
}
@media screen and (max-width:560px) {
	.p_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{margin-top: 0.22rem; padding-bottom: 0.18rem; border-bottom: 1px solid var(--i_color); color: #333; font-weight: bold; line-height: 1.4;}

.p_des{}
.p_des>h5{margin-bottom: 0.12rem; font-size: 0.18rem; color: #333; font-weight: bold;}
.p_des article{}

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

.p_share{border-bottom: 1px solid #DDD; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center; justify-content: flex-end; gap: 0 .1rem;}
.p_share>p{font-size: 0.18rem;font-weight: bold;}
.p_share dl{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;gap: 0 .2rem;}
.p_share dt a{display:block;}
.p_share dt iconify-icon {font-size:0.22rem;color:#666;}
.p_share dt:hover iconify-icon{color: var(--i_color);}

.pTags{display:flex; flex-wrap:nowrap; gap: 0 .1rem; align-items: baseline;}
.pTags>p{flex-shrink: 0; font-size: 0.18rem;font-weight: bold;}
.pTags ul{display:flex; flex-wrap:wrap; gap: .16rem;}
.pTags li{background: #F1F1F1;}
.pTags a{display: block; padding: 8px .1rem; font-size: 0.16rem;}
.pTags li:hover{background: #FDEBEB;}
.pTags a:hover{color: var(--i_color);}

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

	.p_title h1{margin-top: 0;}

	.pTags>p{font-size: 16px;}
	.pTags a{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.p_des{margin: 20px 0;}
	.p_des>h5{font-size: 16px;}

	.p_share>p{font-size: 16px;}
	.p_share dl{gap: 0 14px;}

	.pTags{flex-wrap: wrap; gap: 16px 0;}
	.pTags ul{gap: 10px;}
	.pTags a{font-size: 12px;}
}






.pContent{border-top: 10px solid #E5E5E5;}

.pContent_tit{background: #F3F3F3;}
.pContent_tit h3{display: table; padding: .1rem .2rem; background: #FFF; border-top: 2px solid var(--i_color); font-size: 0.24rem; color: var(--i_color); font-weight: bold;}

@media screen and (max-width:1024px) {
	.pContent{border-width: 6px;}

	.pContent_tit h3{font-size: 20px;}
}
@media screen and (max-width:768px) {
	.pContent_tit h3{font-size: 18px;}
}
@media screen and (max-width:560px) {
	.pContent_tit h3{font-size: 16px;}
}







.p_view_other{background: #F6F6F6;}

.p_view_other ul{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 .1rem;}
.p_view_other span{flex-shrink: 0; width: 0.3rem;height: 0.3rem; position: relative;}
.p_view_other span iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: .28rem; color: #333;}
.p_view_other p{font-size: 0.16rem; line-height: 1.5;}
.p_view_other p b{font-size: 0.16rem; color: #666;}

.p_view_other li:hover span iconify-icon{color: var(--i_color);}
.p_view_other a:hover p{color: var(--i_color); text-decoration: underline;}
.p_view_other a:hover p b{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.p_view_other span iconify-icon{font-size: 22px;}
	.p_view_other p{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.p_view_other{padding: 16px 0;}
	.p_view_other ul{flex-wrap: wrap; gap: 12px 0;}
	.p_view_other li{max-width: 100%}
	.p_view_other span{order: -1;}
	.p_view_other p{font-size: 14px;}
	.p_view_other p b{font-size: 14px;}
}







.about__{}

.about__ .txt article{color: #333;}







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

.aboutAdv_list{width: 100%; position: relative; overflow: hidden;}
.aboutAdv_list::before{content: '';display: block;padding-bottom: 38.5%;}

.aboutAdv_list dl{position:absolute; top:0; left:0; width:100%; height:100%; display:flex; flex-wrap:wrap; gap: 0 1.5%;}
.aboutAdv_list dt{width: 17vw; height: 100%; position: relative; transition:all .5s ease; overflow: hidden;}
.aboutAdv_list dt::after{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 0; background:linear-gradient(to bottom, transparent, #CB7373); transition:all .5s ease;}

.aboutAdv_list dt>img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.aboutAdv_list .t1,.aboutAdv_list .t2{z-index: 3;}

.aboutAdv_list .t1{position: absolute; left: 0; bottom: .3rem; width: 100%; text-align: center;}
.aboutAdv_list .t1 img{height: 0.7rem;}
.aboutAdv_list .t1 h6{height: 0.46rem; margin-top: 0.3rem;}

.aboutAdv_list .t2{opacity: 0; visibility: hidden; position: absolute; left: 0.3rem; bottom: 0.3rem; width: 30vw;}
.aboutAdv_list .t2 p{margin-top: 0.14rem; font-size: 0.18rem; color: #FFF; line-height: 1.5;}
.aboutAdv_list .t2 img{display: none;}

.aboutAdv_list h6{font-size: 0.2rem; color: #FFF; font-weight: bold;}

.aboutAdv_list .curr::after{height: 40%;}
.aboutAdv_list .curr .t1{opacity: 0; visibility: hidden;}
.aboutAdv_list .curr .t2{opacity: 1; visibility: visible;}

.aboutAdv_list .t1,.aboutAdv_list .t2{transition:all .5s ease;}

@media screen and (max-width:1440px) {
	.aboutAdv_list .t2{width: 48vw;}
}
@media screen and (max-width:1200px) {
	.aboutAdv_list .t1 img{height: 0.56rem;}
}
@media screen and (max-width:1024px) {
	.aboutAdv_list::before{display: none;}

	.aboutAdv_list dl{position: initial;}
	.aboutAdv_list dt{margin-bottom: 40px; width: 100%; background: var(--i_color);}
	.aboutAdv_list dt:last-child{margin-bottom: 0;}
	.aboutAdv_list dt::after{height: 40%;}
	.aboutAdv_list dt>img{position: initial;}

	.aboutAdv_list .t1{display: none;}
	.aboutAdv_list .t2{opacity: 1; visibility: visible; width: 100%; left: 0; bottom: 20px; box-sizing: border-box; padding: 0 20px;}
	.aboutAdv_list .t2 img{display: block; height: 40px;}
	.aboutAdv_list h6{margin-top: 16px; font-size: 18px;}

	.aboutAdv_list .t1 h6{display: none;}
}
@media screen and (max-width:560px) {
	.aboutAdv_list{padding-bottom: 0;}
	.aboutAdv_list dt{margin-bottom: 20px}
	.aboutAdv_list .t2 img{height: 30px;}
	.aboutAdv_list h6{font-size: 16px;}
	.aboutAdv_list .t2 p{margin-top: 10px; font-size: 14px;}
}







.aboutCE{background:url(static/images/aboutCE-bg.webp) no-repeat bottom center;}

.aboutCE .i_tit{position: absolute; width: 75%;}

.aboutCE_cont{padding-top: .7rem; display:flex; flex-wrap:nowrap; gap: 0 0; user-select: none;}

.aboutCE_gallery{flex-shrink: 0; width: 40%; margin-top: 1.3rem;}
.aboutCE_gallery>img{height: 0.76rem; margin-bottom: 0.2rem;}

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

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

.aboutCE_list li p{margin-top: 0.18rem; font-size: 0.18rem; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.aboutCE-navigation{display:flex; flex-wrap:nowrap; gap: 0 .2rem; align-items: center; justify-content: center;}
.aboutCE-navigation>div{width:.46rem; height:.46rem; box-sizing: border-box; border: 1px solid #DDD; border-radius:50%; position: relative; cursor: pointer;}
.aboutCE-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);}
.aboutCE_list .swiper-button-disabled{cursor:not-allowed}
.aboutCE-navigation>div:hover{background: var(--i_color); border-color: var(--i_color);}
.aboutCE-navigation>div:hover iconify-icon{color: #FFF;}

.aboutCE-pagination{display: none;}

@media screen and (max-width:1024px) {
	.aboutCE .i_tit{position: initial; width: 100%;}

	.aboutCE_cont{padding-top: 0;}

	.aboutCE_gallery{margin-top: 0; width: 100%;}
	.aboutCE_gallery>img{height: 40px;}

	.aboutCE_pic{display: none;}

	.aboutCE-navigation{display: none;}

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





.aboutCE_pic{width: 100%;}
.aboutCE_pic img{width: 100%;}






.aboutHonor{}

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

.aboutHonor_list .pic{background: #F9F9F9; padding: .5rem .4rem; position: relative;}
.aboutHonor_list .pic::before{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 25%; background: #F1F1F1;}

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

.aboutHonor_list .pic span{position: absolute; left: 100%; top: 0; width: 0.36rem; height: 100%;}
.aboutHonor_list .pic span img{width: 100%; height: 100%;}

.aboutHonor_list li p{margin-top: 0.2rem; font-size: 0.18rem;}

.aboutHonor-navigation{display:flex; flex-wrap:nowrap; gap: 0 .2rem; align-items: center; justify-content: center;}
.aboutHonor-navigation>div{width:.46rem; height:.46rem; box-sizing: border-box; border: 1px solid #DDD; border-radius:50%; position: relative; cursor: pointer;}
.aboutHonor-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);}
.aboutHonor_list .swiper-button-disabled{cursor:not-allowed}
.aboutHonor-navigation>div:hover{background: var(--i_color); border-color: var(--i_color);}
.aboutHonor-navigation>div:hover iconify-icon{color: #FFF;}

.aboutHonor-pagination{display: none;}

.aboutHonor_list li:hover p{color: var(--i_color);}

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

	.aboutHonor-navigation{display: none;}

	.aboutHonor-pagination{display:block; margin-top:0.4rem; text-align:center}
	.aboutHonor-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#CCC; border-radius:50%; outline:none; cursor:pointer;}
	.aboutHonor-pagination .swiper-pagination-bullet-active{background:var(--i_color)}
}
@media screen and (max-width:560px) {
	.aboutHonor_list .pic{padding: 20px 20px;}
	.aboutHonor_list .pic span{width: 16px;}
	.aboutHonor_list li p{font-size: 15px;}
}








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






.support{}

.supportList{}
.supportList dt{}

.supportList .wrap{padding: .5rem 0; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 5%;}

.supportList .t{width: 100%;}
.supportList .t h5{margin-bottom: 0.2rem; padding-bottom: 0.14rem; font-size: 0.2rem; font-weight: bold; position: relative;}
.supportList .t h5::before{content: '';position: absolute; left: 0; bottom: 0; width: 0.58rem; height: 2px; background: var(--i_color); transition:all .5s ease;}
.supportList .t span{color: #666;}

.supportList .p{flex-shrink: 0; width: 55%;}
.supportList .p img{width: 100%; transition:all .5s ease;}

.supportList dt:nth-child(even){background: #F7F7F7;}
.supportList dt:nth-child(even) .p{order: -1;}

.supportList dt:hover h5{color: var(--i_color);}
.supportList dt:hover h5::before{width: 1.6rem;}
.supportList dt:hover img{transform: scale(1.02, 1.02);}

@media screen and (max-width:1024px) {
	.supportList .t h5{font-size: 18px;}
	.supportList .t span{font-size: 14px;}
	.supportList .p{width: 50%;}
}
@media screen and (max-width:768px) {
	.supportList .wrap{flex-wrap: wrap; gap: 28px 0;}
	.supportList .p{order: -1; width: 100%;}
}
@media screen and (max-width:560px) {
	.supportList .wrap{padding: 20px 0;}
	.supportList .t h5{font-size: 16px;}
}







.afterSales{}

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

.afterSales_head .wrap{box-sizing: border-box; padding: .5rem; background: rgb(255 255 255 / 8%); border: 1px solid rgb(255 255 255 / 28%);}

.afterSales_list{background: #F7F7F7;}
.afterSales_list dl{display:flex; flex-wrap:nowrap;}
.afterSales_list dt{width: 100%; box-sizing: border-box; padding: 0 .5rem; text-align: center; border-left: 1px solid #DDD;}
.afterSales_list dt:first-child{border-left: none;}
.afterSales_list dt>img{height: 0.7rem; -webkit-filter:grayscale(1); filter:grayscale(1);}

.afterSales_list h5{margin: .3rem 0 .2rem; padding-bottom: 0.2rem; font-size: 0.2rem; font-weight: bold; position: relative;}
.afterSales_list h5::before{content: '';position:absolute; bottom: 0; left:50%; transform:translate(-50%,0); width: 0.6rem; height: 2px; background: #AAA;}
.afterSales_list p{font-size: 0.16rem; color: #444; line-height: 1.6;}

.afterSales_list dt:hover>img{transform:rotateY(360deg); -webkit-filter:none; filter:none; transition:transform .5s ease;}
.afterSales_list dt:hover h5{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.afterSales_head .wrap{padding: 40px;}

	.afterSales_list dt{padding: 0 20px;}
	.afterSales_list dt>img{height: 46px;}
	.afterSales_list h5{font-size: 16px;}
	.afterSales_list p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.afterSales_list dl{flex-wrap: wrap; gap: 30px 0;}
	.afterSales_list dt{display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 .3rem; border: none; text-align: left;}
	.afterSales_list dt>img{flex-shrink: 0; height: 36px;}

	.afterSales_list h5{display: table; margin: 0 0 10px; padding-bottom: 10px;}
	.afterSales_list h5::before{left: 0; transform: none;}
}
@media screen and (max-width:560px) {
	.afterSales_head .wrap{padding: 20px;}
}







.faq{}

.faq_list{}
.faq_list li{margin-bottom: 0.3rem; background: #F5F5F5;}

.faq_list .tit{padding: .24rem .5rem; cursor: pointer; position: relative;}
.faq_list .tit iconify-icon{position:absolute; top:50%; transform:translate(0,-50%); left: .14rem; font-size: 0.24rem; transition:all .5s ease;}
.faq_list .tit p{font-size: 0.22rem;}
.faq_list .tit.active p{color: var(--i_color);}
.faq_list .tit.active iconify-icon{transform:translate(0,-50%) rotate(90deg);}

.faq_list .txt{display: none;}
.faq_list .txt span{display: block; padding: 0 .5rem .26rem;}

@media screen and (max-width:1024px) {
	.faq_list li{margin-bottom: 20px;}
	.faq_list .tit p{font-size: 18px;}
	.faq_list .tit iconify-icon{font-size: 20px;}
}
@media screen and (max-width:560px) {
	.faq_list li{margin-bottom: 16px;}
	.faq_list .tit{padding: 18px 40px;}
	.faq_list .tit p{font-size: 16px;}
	.faq_list .tit iconify-icon{font-size: 18px;}

	.faq_list .txt span{padding: 0 40px 20px;}
}







.navLine{width: 100%; display:flex; flex-wrap:wrap; justify-content: center; gap: 0 .3rem; position: relative;}
.navLine::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background: #DDD;}
.navLine li{position: relative;}
.navLine li::before{content: '';position: absolute;left: 0;bottom: 0;width: 0;height: 3px;background: var(--i_color);}

.navLine a{display: block; padding: .2rem .2rem; font-size: 0.18rem; font-weight: bold; color: #666;}

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

.navLine li:hover a{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.navLine{gap: 0 10px;}
	.navLine a{padding: 20px 16px; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.navLine{gap: 10px 10px;}
	.navLine a{padding: 12px 14px; font-size: 15px;}
}








.nList{}
.nList li{}
.nList a{display: block; padding: .4rem 0; border-bottom: 1px solid #DDD;}

.nList h5{font-size: 0.26rem; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.nList p{margin: .24rem 0; font-size: 0.16rem; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

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

.nList .date{position: absolute; left: .3rem; bottom: .3rem; background: #333; text-align: center; padding: .1rem;}
.nList .date b{display: block; margin-bottom: 4px; font-size: 0.28rem; color: #FFF;}
.nList .date i{font-size: .16rem; color: #FFF;}

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

@media screen and (max-width:1440px) {
	.nList h5{font-size: 0.22rem;}
}
@media screen and (max-width:1024px) {
	.nList h5{font-size: 20px;}
	.nList p{margin:16px 0 20px; font-size: 15px;}

	.nList .date b{font-size: 24px;}
	.nList .date i{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.nList h5{font-size: 18px;}
	.nList .coverpic{width: 70%;}
	.nList .date{left: 16px; bottom: 16px;}
}
@media screen and (max-width:560px) {
	.nList a{padding: 30px 0;}

	.nList h5{font-size: 18px;}
	.nList p{font-size: 14px;}
	.nList .coverpic{width: 100%;}

	.nList .date b{font-size: 20px;}
	.nList .date i{font-size: 14px;}
}






.contact__{}

.contact__box{display:flex; flex-wrap:wrap; background: #F0F0F0;}

.contact__l,.contact__r{width: 50%; box-sizing: border-box; padding: .4rem;}

@media screen and (max-width:1024px) {
	.contact__l,.contact__r{width: 100%;}
}
@media screen and (max-width:560px) {
	.contact__l,.contact__r{padding: 30px 24px;}
}



.contact__l{background: var(--i_color);}
.contact__l .tit{}
.contact__l .tit h4{color: #FFF; font-weight: bold;}
.contact__l .tit h6{margin-top: 6px; color: rgb(255 255 255 / 80%);}

.contact__custom{}
.contact__custom li{margin-top: 0.4rem;}
.contact__custom span{display: block; margin-bottom: 5px;}
.contact__custom span, .contact__custom span a{font-size: 0.16rem; color: rgb(255 255 255 / 80%); line-height: 1.6;}
.contact__custom span a:hover{text-decoration: underline;}

.contact__main{margin-top: 0.5rem;}
.contact__main h5{border-bottom: 1px solid #FFF; padding-bottom: 0.16rem; margin-bottom: 0.16rem; font-size: 0.2rem;font-weight: bold; color: #FFF;}
.contact__main__list{padding-top: 6px; display:flex; flex-wrap:nowrap; gap: 0 .3rem;}
.contact__main__list a{padding: .14rem; width: 100%; display:flex; flex-wrap:wrap; align-items: center; justify-content: center; gap: 0 .1rem; border: 1px solid #FFF; transition:all .5s ease;}
.contact__main__list a iconify-icon{font-size: 0.24rem; color: #FFF;}
.contact__main__list p{font-size: 0.16rem; color: rgb(255 255 255 / 80%);}
.contact__main__list a:nth-child(2){background: #333; border-color: #333;}
.contact__main__list a:hover{transform:translate(0,-6px);}

.contact__address{margin-top: 0.2rem;}
.contact__address dt{margin-top: 0.24rem;}
.contact__address h6{font-size: 0.18rem; color: #FFF;}
.contact__address p{margin-top: 0.1rem; font-size: 0.16rem; color: rgb(255 255 255 / 80%); line-height: 1.4;}

@media screen and (max-width:1024px) {
	.contact__custom span, .contact__custom span a{font-size: 15px;}
	.contact__main h5{font-size: 18px;}

	.contact__main__list a iconify-icon{font-size: 20px;}
}
@media screen and (max-width:768px) {
	.contact__custom li{margin-top: 30px;}

	.contact__main__list{flex-wrap: wrap; gap: 14px 0;}
}
@media screen and (max-width:560px) {
	.contact__custom li{margin-top: 20px;}

	.contact__main{margin-top: 34px;}
	.contact__main h5{font-size: 16px;}
	.contact__main__list a iconify-icon{font-size: 18px;}
	.contact__main__list p{font-size: 15px;}

	.contact__address h6{font-size: 16px;}
	.contact__address p{font-size: 14px;}
}





.contact__r{}
.contact__r .tit h4{font-weight: bold;}
.contact__r .tit h6{margin-top: 6px;}

#wpforms-143{
	--wpforms_input_height:50px;
	--wpforms_textarea_height:160px;
	--wpforms_input_font_size: 16px;
}
#wpforms-143{margin:0; padding:0;}
#wpforms-form-143{width:100%; position:relative;}

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

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

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

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

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

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








.map{position: relative; display:flex; flex-wrap:nowrap; gap: 0 .28rem;}
.map .box{width: 100%; position: relative; overflow: hidden;}
.map .box::before{content: '';display: block; padding-bottom: 80%;}
.map iframe{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

@media screen and (max-width:1024px) {
	.map{margin-bottom: 60px; flex-wrap: wrap; gap: 28px 0;}
}
@media screen and (max-width:560px) {
	.map{margin-bottom: 40px;}
	.map .box::before{padding-bottom: 100%;}
}


