/*
Theme Name: Surglite
Version: 1.0
Description:
Author:
*/
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.wrap {
  width: 94%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.wrap2{width: 92%;  margin-left: auto;margin-right: auto;}
.wrap_l {
  padding-left: 8.35%;
}
.wrap_r {
  padding-right: 8.35%;
}
@media screen and (min-width:1921px) {
	.wrap {max-width: none;}
}
@media screen and (max-width: 1440px) {
  .wrap {
    width: 90%;
  }
  .wrap_l {
    padding-left: 5%;
  }
  .wrap_r {
    padding-right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .wrap {
    width: 94%;
  }
  .wrap_l {
    padding-left: 3%;
    padding-right: 3%;
  }
  .wrap_r {
    padding-right: 3%;
    padding-left: 3%;
  }
}
:root {
  --i_color: #02AC56;
  --i_color2: #1a1919;
  --bc_color: #f6f6f6;
  --top1_height: .32rem;
	--top2_height:.8rem;
	--header_height: calc(var(--top1_height) + var(--top2_height));
  --border_color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  :root,
  header {
    --top2_height:.6rem;
		--header_height: .6rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}
.top_wrap {
  padding: 0 2%;
}




/* 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: var(--i_color);}
.top .wrap2{height: var(--top1_height); display:flex; flex-wrap:nowrap; align-items: center;}

.top_contact{display:flex; flex-wrap:wrap; gap: 0 .4rem;}
.top_contact dt{display:flex; flex-wrap:wrap; align-items: center; gap: 0 6px;}
.top_contact dt iconify-icon{font-size: 0.18rem; color: #FFF;}
.top_contact dt,.top_contact p,.top_contact a{font-size: 0.15rem; color: #FFF; line-height: var(--top1_height);}

.top_contact a:hover{text-decoration: underline;}

.topMedia{margin-left: auto; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .14rem;}
.topMedia li{}
.topMedia iconify-icon{font-size: 0.2rem; color: #FFF;}

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




.top2{position: relative;}
.top2 .wrap2{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-width: 2rem; max-height: 75%;}
@media screen and (max-width:1200px) {
	.logo{padding-right: 3%;}
	.logo img {max-width: 1.6rem; max-height: 65%;}
}
@media screen and (max-width:1024px) {
	.logo{padding: 0 0; border: none;}
}





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

	.i_nav>li {height: var(--top2_height); display:flex; flex-wrap:wrap; align-items: center; position: relative;}

	.i_nav>li>a {
		display: block;
    padding: .1rem .2rem;
		font-size: .16rem;
		color: #333;
		white-space: nowrap;
    text-transform: uppercase;
    border-radius:2rem;
		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
	{
		background: var(--i_color);
    color: #FFF;
	}

	.i_nav .sub-menu {
		display: none;
		position: absolute; left:50%; transform:translate(-50%,0);
    top: 100%;
		min-width: 1.6rem;
		background: #FFF;
		overflow: hidden;
		box-shadow: 0 .06rem .1rem rgb(0 0 0 / 8%);
		font-size: 0;
		text-align: center;
	}
  .nav_products .sub-menu{display: none !important;}

	.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 .8rem;}*/
}
@media screen and (max-width:1200px) {
	/*.i_nav{gap: 0 .7rem;}*/
	.i_nav>li>a{font-size: 0.17rem;}
}





.nav_menu_products{display: none; position: fixed;top: var(--header_height); left: 0;width: 100%;background: #FFF; 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: .3rem 0;display:-webkit-flex; display:flex; flex-wrap:nowrap;justify-content: center; gap: 0 4%;}
.nav_menu_products dt{width: 100%;max-width: 2.4rem;}

.nav_menu_products figure{width:100%; position:relative; overflow:hidden}
.nav_menu_products .pic{width: 100%; position: relative; overflow: hidden;}
.nav_menu_products .pic::before{content:""; display:block; padding-bottom:100%}
.nav_menu_products .pic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; transition:all .5s ease;}
.nav_menu_products figcaption{margin-top: 0.1rem; width: 100%;box-sizing: border-box; z-index: 3;}
.nav_menu_products figcaption p{text-align: center; font-size: 16px;color: #333;font-weight: bold;}

.nav_menu_products dt:hover img{transform: scale(1.05, 1.05);}
.nav_menu_products dt:hover p{color: var(--i_color);}

@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%;
		margin: 0 0;
		width: 100%;
		width: 100vw;
		height: calc(100vh - var(--header_height));
		background: #FFF;
		overflow-y: auto;
		-webkit-transition:all .5s ease; transition:all .5s ease;
		z-index: 9999
	}
	.i_nav.active{opacity: 1; left: 0;}
	/*滚动条*/
	.i_nav::-webkit-scrollbar {
		width: 3px;
		height: 8px
	}
	.i_nav::-webkit-scrollbar-thumb {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		background: #555
	}
	.i_nav::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		border-radius: 0;
		background: #F1F1F1
	}

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

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

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

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

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

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

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






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


.nav_menu.on i {
	opacity: 0
}

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

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

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






.top_r{--size:.26rem;}
.top_r {
	margin-left: auto;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
  gap: 0 .3rem;
}
@media screen and (max-width:1200px) {
	.top_r{--width:1rem}
}
@media screen and (max-width:1024px) {
	.top_r{--width:auto}
	.top_r{position: initial; margin-left: auto; padding: 0; gap: 0 30px;}
}
@media screen and (max-width:560px) {
	.top_r{--size:.24rem}
	.top_r{gap: 0 26px;}
}






.top_search_ico{position: relative; font-size: 0; height: var(--top2_height); display:flex; flex-wrap:wrap; align-items: center; justify-content: center; cursor: pointer;}
.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{height: 100%;display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; justify-content: center; cursor: pointer; position: relative;}
.top_language_btn iconify-icon{font-size: var(--size);color: #333;-webkit-transition:all .5s ease; transition:all .5s ease;}

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

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

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

@media screen and (max-width:1024px) {
	.top_language_btn{background: none;}
	.top_language_btn iconify-icon{color:#333}
}
@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: calc(100vh - var(--header_height));
	position: relative;
	overflow: hidden
}
.banner .swiper-slide>img,
.banner .swiper-slide>a>img {
	position:absolute; top:0; left:0; width:100vw; height:100%; object-fit: cover;
}

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

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

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





.banner_text{position:absolute; top:45%; transform:translate(0,-50%); left: 0; width: 100%;}
.banner_text h2{width: 60%; font-size: 2.8vw; color: #FFF; font-weight: bold;}
.banner_text p{width: 60%; margin: .3rem 0 .4rem; font-size: 0.26rem; color:#FFF; line-height: 1.6;}

@media screen and (max-width:1200px) {
  .banner_text p{font-size: 0.22rem;}
}
@media screen and (max-width:1024px) {
  .banner_text h2,.banner_text p{width: 70%;}
	.banner_text p{margin: 20px 0 20px; font-size: 18px;}
}
@media screen and (max-width:768px) {
  .banner_text h2,.banner_text p{width: 100%;}
	.banner_text h2{font-size: 4vw;}
	.banner_text p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.banner_text h2{font-size: 4.6vw;}
	.banner_text p{margin: 10px 0; font-size: 14px;}
}





.i_tit {
  position: relative;
  z-index: 2;
  text-align: center;
}
.i_tit h2 {
  font-size: 0.38rem;
  padding: 0.2rem 0;
  color: #fff;
  font-weight: bold;
  position: relative;
  text-transform: capitalize;
}
.i_tit span {
  color: var(--i_color) !important;
  -webkit-text-fill-color: initial;
}
.i_tit h2::before,
.i_tit h2::after {
  content: "";
  height: 4px;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  z-index: 2;
}
.i_tit h2::before {
  width: 0.6rem;
}
.i_tit h2::after {
  width: 0rem;
  background-color: var(--i_color);
}
.i_tit h6 {
  font-size: 0.18rem;
  margin-top: 0.2rem;
  color: #fff;
  font-weight: 100;
  line-height: 170%;
}
.i_tit_l {
  text-align: left;
}
.i_tit_l h2::before,
.i_tit_l h2::after {
  bottom: 0;
  left: 0;
  transform: initial;
}
.i_tit.on h2::after {
  animation: movewidth 0.7s forwards;
}
.i_tit.on h2 {
  background-image: -webkit-linear-gradient(
    right,
    #fff 60%,
    var(--i_color),
    #01943a,
    #aeecb8
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-background-size: 200% 100%;
  -webkit-animation: maskedAnimation 3s forwards linear;
}
.i_tit_hei h2 {
  color: #333;
}
.i_tit_hei h2::before {
  background-color: #333;
}
.i_tit h2::after {
  background-color: var(--i_color);
}
.i_tit_hei h6 {
  color: #333;
}
.i_tit_hei.on h2 {
  background-image: -webkit-linear-gradient(
    right,
    #333 60%,
    var(--i_color),
    #01943a,
    #28362b
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-background-size: 200% 100%;
  -webkit-animation: maskedAnimation 3s forwards linear;
}
@keyframes maskedAnimation {
  0% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
@keyframes movewidth {
  0% {
    width: 0rem;
  }
  100% {
    width: 0.6rem;
  }
}
@media screen and (max-width: 1440px) {
  .i_tit {
    margin-bottom: 0.4rem;
  }
  .i_tit h2 {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_tit {
    margin-bottom: 0.3rem;
  }
  .i_tit h2 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 560px) {
  .i_tit h2 {
    font-size: 0.2rem;
  }
  .i_tit h6 {
    font-size: 14px;
  }
}
/*
.i_tit a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 0.18rem;
  color: var(--i_color);
  display: flex;
  align-items: center;
}
.i_tit iconify-icon {
  margin-left: 0.2rem;
} */
/* home more btn */
.i_more {
  display: table;
  overflow: hidden;
  background: var(--i_color);
  position: relative;
  border: 1px solid transparent;
  -webkit-border-radius: 0.3rem;
  border-radius: 0.3rem;
}
.i_more b {
  display: table;
  overflow: hidden;
  padding: 0.1rem 0.32rem;
  font-size: 0.16rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 2;
  -webkit-border-radius: 0.3rem;
  border-radius: 0.3rem;
}
.i_more::before {
  content: "";
  width: 0;
  height: 1000%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #000;
  transition: 0.5s ease;
  display: block;
  z-index: 1;
}
.i_more:hover::before {
  width: 180%;
}
.i_more_c {
  margin-left: auto;
  margin-right: auto;
}
.i_more_list {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.i_more_list a:nth-child(1) {
  margin-right: 0.16rem;
}
.i_more2 {
  background: var(--i_color2);
  /* border-color: var(--i_color2); */
}
.i_more2 b {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .i_more b {
    padding: 0.1rem 0.28rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_more b {
    padding: 10px 30px;
    font-size: 14px;
  }
}
/* -----------------------------------底部--------------------------------------- */
/* Footer */
footer{
	background:url(static/images/footer-bg.webp) no-repeat center;
	background-size: cover;
}

/* .f_logo{margin-bottom: 0.4rem;}
.f_logo img{height: 0.36rem;} */

.f_cont{display:-webkit-flex; display:flex; flex-wrap:nowrap;}

.f_l{width: 100%;margin-right: 5%;display:-webkit-flex; display:flex; flex-wrap:wrap;}
.f_l dt{width: 36%;}
.f_l dd{width: 30%;}

.f_tit{margin-bottom: 0.34rem; border-bottom: 1px solid rgb(0 0 0 / 15%); position: relative;}
.f_tit p{display: table;padding-bottom: 0.1rem; font-size: 0.2rem;color: #333; font-weight: bold;text-transform: uppercase;position: relative;}
.f_tit p::before{
	content: '';position: absolute;left: 1px;bottom: 0;width: 100%;height: 3px;background: var(--i_color);
	-webkit-transform: skewX(-30deg);
    transform: skewX(-30deg);
}



.f_contact{}
.f_contact li{margin-bottom: 0.2rem;display:-webkit-flex; display:flex; flex-wrap:nowrap;}
.f_contact iconify-icon{margin-right: 0.14rem;font-size: 0.2rem; color: #666;}
.f_contact li p,.f_contact li a{font-size: 0.17rem;}
.f_contact li a:hover{color: var(--i_color);}

.f_media{margin-top: 0.4rem; display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 .26rem;}
.f_media li{-webkit-transition:all .5s ease; transition:all .5s ease;}
.f_media iconify-icon{font-size: 0.26rem; color:var(--i_color);}
.f_media li:hover{-webkit-transform:translate(0,-8px); transform:translate(0,-8px);}
.f_media li:hover iconify-icon{color: var(--i_color);}


.f_nav{}
.f_nav li{margin-bottom: 0.16rem;}
.f_nav a{font-size: 0.15rem;text-transform: uppercase;}
.f_nav a:hover{color: var(--i_color);}


.f_contact,
.f_media,
.f_l dd:nth-child(2) .f_nav
{box-sizing: border-box;padding-right: 0.4rem;}


.f_r{flex-shrink: 0;width:30%;}

.f_form_tit{margin-bottom: 0.3rem; text-align: center; padding-bottom: 0.1rem; font-size: 0.24rem; font-weight: bold;text-transform: uppercase;border-bottom: 1px solid rgb(0 0 0 / 15%);}
.f_r>h6{display: block; margin-bottom: 0.2rem; font-size: 15px; color: #666; line-height: 1.5;}

#wpforms-86{
    --wpforms_input_height:44px;
    --wpforms_textarea_height:120px;
    --wpforms_input_font_size: 15px;
}
#wpforms-86{margin:0; padding:0;}
#wpforms-form-86{width:100%; position:relative;}

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

#wpforms-86-field_4-container .choices{width: 100%; max-width: 100% !important;}
#wpforms-86-field_4-container .choices__inner{border: none !important; height: var(--wpforms_input_height);}
#wpforms-86-field_4-container .choices__list--single{font-size: var(--wpforms_input_font_size);}
#wpforms-86-field_4-container .choices__list--dropdown .choices__item{font-size: var(--wpforms_input_font_size)}

#wpforms-86 .wpforms-field-container .wpforms-field>input{height: var(--wpforms_input_height);}
#wpforms-86 .wpforms-field-container textarea{height: var(--wpforms_textarea_height);}
#wpforms-86 input::placeholder, #wpforms-86 textarea::placeholder{color:#AAA; font-size:var(--wpforms_input_font_size); line-height: 1.4;}

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

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

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

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

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




.f_cr{position: relative;}

.f_cr_cont{border-top: 1px solid rgb(0 0 0 / 10%); padding: 0.16rem 0 0.3rem;}
.f_cr_cont .wrap{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: space-between;}
.f_cr_cont p,.f_cr_cont a{font-size: 0.16rem;}
.f_cr_cont a:hover{color: var(--i_color);text-decoration: underline;}


@media screen and (max-width:1440px) {
	.f_logo img{height: 0.34rem;}
}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.f_logo img{height: 0.3rem;}
	.f_l dt{width: 100%;}
	.f_l dd{display: none;}
	.f_r{width: 42%;}
	.f_tit p,.f_form_tit{font-size: 0.2rem;}
	.f_contact iconify-icon{font-size: 0.24rem;}
	.f_contact li p, .f_contact li a{font-size: 0.16rem;}
	.f_contact, .f_media, .f_l dd:nth-child(2) .f_nav{padding-right: 0;}
	.f_media iconify-icon{font-size: 0.26rem;}

	.f_cr_cont p, .f_cr_cont a{font-size: 0.14rem;}
}
@media screen and (max-width:768px) {
	.f_logo img{height: 0.22rem;}
	.f_cont{flex-wrap: wrap;}
	.f_l{margin-right: 0;margin-bottom: 0.3rem;}
	.f_r{width: 100%;}
	.f_contact li p, .f_contact li a{font-size: 0.15rem;}
	.f_form_tit{text-align: left;}

	.f_cr_cont{padding: 0.16rem 0 0.2rem;}
}
@media screen and (max-width:560px) {
	.f_logo{margin-bottom: 0.28rem;}
	.f_logo img{height: 0.2rem;}
	.f_contact iconify-icon{font-size: 0.2rem;}
	.f_contact li p, .f_contact li a{font-size: 0.14rem;}
	.f_contact li{margin-bottom: 0.14rem;}
	.f_media iconify-icon{font-size: .24rem;}
}






.ip_box {
  background-color: var(--bc_color);
  position: relative;
  overflow: hidden;
}
.content {
  position: relative;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.ip_menu {
  width: 26%;
}
.ip_menu li {
  margin-bottom: 0.3rem;
  cursor: pointer;
}
.ip_menu span {
  font-size: 0.18rem;
  color: #222;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  padding-bottom: 6px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ip_menu li.current span,
.ip_menu li:hover span {
  border-color: var(--i_color);
  color: var(--i_color);
}
@media screen and (max-width: 959px) {
  .ip_menu {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    overflow-x: auto;
    margin-bottom: 0.2rem;
  }
  .ip_menu::-webkit-scrollbar {
    display: none;
    width: 100%;
    height: 2px;
    background: none;
  }
  .ip_menu::-webkit-scrollbar-thumb {
    width: 20px;
    height: 2px;
    -webkit-border-radius: 0.3rem;
    border-radius: 0.3rem;
    background-color: var(--i_color);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
  }
  .ip_menu li {
    margin: 0 0.2rem 0.18rem 0;
  }
  .ip_menu span {
    white-space: nowrap;
  }
}
.ip_content {
  width: 74%;
  min-height: 2.6rem;
}
/* 产品轮播 */
.i_p {
  width: 100%;
  overflow: hidden;
}
.i_p .swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.i_p .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.i_p .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.i_p_but {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.i_p-button-prev,
.i_p-button-next {
  margin-inline-end: 0.2rem;
  width: 0.36rem;
  height: 0.36rem;
  -webkit-border-radius: 0.3rem;
  border-radius: 0.3rem;
  border: 2px solid #999;
  cursor: pointer;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_p-button-prev iconify-icon,
.i_p-button-next iconify-icon {
  font-size: 0.26rem;
  color: #999;
}
.i_p-button-prev:hover,
.i_p-button-next:hover {
  background-color: var(--i_color);
  border-color: transparent;
}
.i_p-button-prev:hover iconify-icon,
.i_p-button-next:hover iconify-icon {
  color: #fff;
}
.i_p-pagination {
  margin-top: 0.4rem;
  text-align: center;
  display: none;
}
.i_p-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  outline: none;
  cursor: pointer;
}
.i_p-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .i_p_but {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 560px) {
  .i_p-button-prev,
  .i_p-button-next {
    width: 0.3rem;
    height: 0.3rem;
  }
  .i_p-button-prev iconify-icon,
  .i_p-button-next iconify-icon {
    font-size: large.2rem;
  }
}
.i_p .img {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
  background-color: #fff;
}
.i_p .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.i_p .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i_p .img img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_p li:hover img {
  width: 105%;
  height: 105%;
}
.i_p .swiper-slide a {
  display: block;
  width: 100%;
}
.i_p h6 {
  text-align: center;
  color: #fff;
  font-size: 0.18rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.i_p b {
  position: relative;
  z-index: 2;
}
.i_p h6::before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 100%;
  left: 50%;
  border-radius: 40%;
  transform: translateX(-50%);
  background: var(--i_color);
  transition: 0.5s ease;
  opacity: 0;
}
.i_p li:first-child h6::before,
.i_p li:hover h6::before {
  top: -10%;
  opacity: 1;
}
.ip_content .box > section:not(:first-child) {
  display: none;
}
@media screen and (max-width: 959px) {
  .ip_content {
    width: 100%;
  }
  .i_p {
    width: 100%;
    padding-bottom: 0.6rem;
  }
}

.iw_box::-webkit-scrollbar {
  /* display: none; */
  width: 100%;
  height: 60px;
  background: transparent;
}
.iw_box::-webkit-scrollbar-thumb {
  width: 0.6rem;
  height: 0.6rem;
  -webkit-border-radius: 0.3rem;
  border-radius: 0.3rem;
  background: url(static/images/d_arrow.png) no-repeat center;
  background-size: 60%;
  background-color: var(--i_color);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.iw_box {
  margin-top: .6rem;
  width: 100%;
  padding: 0;
  overflow: hidden;
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 561px) {
  .iw_box {
    padding: 0 0.3rem;
  }
}
.iw {
  width: fit-content;
  display: flex;
  flex-wrap: nowrap;
}
.scrollbar {
  width: 100%;
  height: 60px;
  background: none;
  position: relative;
  overflow: hidden;
}
.scrollbar::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgb(255 255 255 / 20%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.thumb {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 0.3rem;
  background: url(static/images/d_arrow.png) no-repeat center;
  background-size: 60%;
  background-color: var(--i_color);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  cursor: grab;
}
.iw ul {
  display: flex;
  display: -webkit-flex;
}
.iw li {
  width: 32%;
  min-width: 6rem;
  padding: 0.4rem;
  background-color: rgb(255 255 255 / 20%);
  backdrop-filter: blur(5px);
  color: #fff;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  position: relative;
  margin-right: 0.1rem;
}
.iw .ico {
  width: 0.6rem;
  height: 0.6rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  background-color: var(--i_color);
  position: absolute;
  top: -0.3rem;
  left: 0.5rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.iw .ico img {
  max-width: 0.4rem;
  object-fit: contain;
  -webkit-filter: brightness(100);
  -moz-filter: brightness(100);
  -o-filter: brightness(100);
  -ms-filter: brightness(100);
  filter: brightness(100);
}
.iw h6 {
  font-size: 0.24rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.12rem;
}
.iw p {
  font-size: 0.18rem;
  font-weight: 100;
  color: #fff;
  line-height: 150%;
}
.iw li,
.iw img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.iw li:hover {
  background-color: rgb(255 255 255 / 30%);
}
.iw li:hover img {
  transform: rotateY(360deg);
}
@media screen and (max-width: 1024px) {
  .iw h6 {
    font-size: 0.2rem;
  }
  .iw p {
    font-size: 0.16rem;
  }
  .iw li {
    min-width: 4rem;
  }
}
@media screen and (max-width: 560px) {
  .iw_box {
    margin-top: 0.6rem;
  }
  .iw ul {
    flex-wrap: wrap;
  }
  .iw li {
    width: 90%;
    min-width: 90%;
    padding: 0.3rem;
    margin: 0 auto 0.6rem;
  }
  .scrollbar {
    display: none;
  }
}



.hotProducts{position: relative;}

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

.hotProducts_nav{flex-shrink: 0; width: 20%;}
.hotProducts_nav ul{}
.hotProducts_nav li{display: table; padding-bottom: 4px; margin: .2rem 0; position: relative; cursor: pointer;}
.hotProducts_nav li::before{content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--i_color); transition:all .5s ease;}
.hotProducts_nav li p{font-size: 0.2rem; font-weight: bold;}

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

.hotProducts-navigation{margin-top: 1.2rem; display:flex; flex-wrap:wrap; gap: 0 .2rem;}
.hotProducts-navigation>div{width: 0.4rem; height: 0.4rem; box-sizing: border-box; border: 1px solid #CCC; border-radius:50%; position: relative; cursor: pointer;}
.hotProducts-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.2rem;}
.hotProducts-navigation>div:hover{background: var(--i_color); border-color: var(--i_color);}
.hotProducts-navigation>div:hover iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.hotProducts_nav{margin-bottom: 40px; width: 100%;}

	.hotProducts_nav ul{display:flex; flex-wrap:wrap; gap: 18px 30px;}
	.hotProducts_nav li{margin: 0 0;}
	.hotProducts_nav li p{font-size: 17px;}

	.hotProducts-navigation{display: none;}
}
@media screen and (max-width:768px) {
	.hotProducts_nav li p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.hotProducts_nav{margin-bottom: 30px}
	.hotProducts_nav ul{gap: 12px 20px;}
}




.hotProducts_show{margin-left: auto; width: 75%;}
.hotProducts_show .item{opacity: 0; visibility: hidden; height: 0; position: relative; top: 0.3rem;}
.hotProducts_show .item.active{opacity: 1; visibility: visible; height: auto; top: 0; transition:all .5s ease;}

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

.hotProducts-pagination{display: none;}

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

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





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

.pItem .txt{position: absolute; left: 0; bottom: 0; width: 100%; box-sizing: border-box; padding:.14rem .2rem;}
.pItem .txt::before{content: '';position: absolute; left: 0; bottom: 0; width: 100%; height: 0; background: var(--i_color); border-radius:.24rem .24rem 0 0; transition:all .3s ease;}
.pItem .txt p{text-align: center; font-size: 0.18rem; color: #FFF; font-weight: bold; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; position: relative;}

.pItem:hover img{transform: scale(1.05, 1.05);}
.pItem:hover .txt::before{height: 100%;}

@media screen and (max-width:1024px) {
	.pItem .txt p{font-size: 16px; line-height: 1.4;}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:560px) {
	.pItem .txt{padding: 8px 14px;}
	.pItem .txt p{font-size: 14px; font-weight: normal;}
}






.ourAdv{}
.ourAdv_cont{
	padding-top: 3.5rem;
	padding-bottom: 0.6rem;
	background:url(static/images/why-choose-bg.webp) no-repeat center;
	background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.ourAdv_cont .i_tit{position:absolute; left:50%; transform:translate(-50%,0); top: 10%;}

.ourAdv_item{width: 100%; box-sizing: border-box; padding: .4rem 4% 0 2%; display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 .1rem; overflow-x: auto; user-select: none; cursor: grab;}
.ourAdv_item dt{flex-shrink: 0; width:32%; background: rgb(255 255 255 / 25%); box-sizing: border-box; padding: .4rem; -webkit-border-radius:.1rem; border-radius:.1rem; backdrop-filter:blur(5px);}
.ourAdv_item::-webkit-scrollbar{opacity: 0; width:0; height:0}
.ourAdv_item i{display: block; margin-top: -.7rem; width: 0.56rem;height: 0.56rem;background: var(--i_color);position: relative; -webkit-border-radius:6px; border-radius:6px;}
.ourAdv_item i img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); height: 0.3rem;-webkit-transition:all .5s ease; transition:all .5s ease; -webkit-filter:brightness(100); filter:brightness(100);}
.ourAdv_item span h5{margin: 0.1rem 0; font-size: 0.22rem;color: #FFF;font-weight: bold;}
.ourAdv_item span p{font-size: 0.15rem; color: #FFF; line-height: 1.6;}

.adv_line{width: 100%;position: relative;}
.adv_line::before{content: '';position:absolute; top:50%; left: 0;width: 100%;height: 1px;background: rgb(255 255 255 / 20%);}
.adv_line span{display: block; width: 80%; height: 0.4rem; margin: 0 auto; position: relative;}
.adv_line i{position: absolute;top: 0;left: 0;width: .4rem;height: .4rem;background: var(--i_color); -webkit-border-radius:50%; border-radius:50%; cursor: pointer;}
.adv_line iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.24rem;color: #FFF;}

.ourAdv_item dt:hover i img{-webkit-transform:translate(-50%,-50%) rotateY(180deg); transform:translate(-50%,-50%) rotateY(180deg);}

@media screen and (max-width:1440px) {
	.ourAdv_cont{padding-top: 3rem;}
}
@media screen and (max-width:1366px) {
	.ourAdv_item span h5{font-size: 0.2rem;}
}
@media screen and (max-width:1200px) {
  .ourAdv_cont .i_tit{top: 4%;}

	.ourAdv_cont{padding-top: 2.4rem;}
}
@media screen and (max-width:1024px) {
	.ourAdv_cont{padding-top: 40px;}
  .ourAdv_cont .i_tit{position: initial; transform: none;}

	.ourAdv_item dt{padding: .46rem .2rem .3rem; width: 48%;}
	.ourAdv_item i{width: 50px;height: 50px;}
	.ourAdv_item i img{height: 26px;}
	.ourAdv_item span h5{margin: 16px 0 10px; font-size: 17px;}
	.ourAdv_item span p{font-size: 14px;}
	.adv_line{display: none;}
}
@media screen and (max-width:560px) {
	.ourAdv_cont{padding-bottom: 34px;}
	.ourAdv_item dt{width: 75%;}
}






/* CERTIFICATION */
.i_certy {
  background-color: #f6f6f6;
  position: relative;
}
.i_certy > img {
  width: 80%;
  object-fit: contain;
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.i_certy::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--i_color), transparent 90%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.i_c_box {
  position: relative;
  z-index: 2;
}
.ic {
  width: 90%;
  margin: 0 auto;
}
.ic .swiper-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ic .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.ic .swiper-slide {
  background-color: #fff;
  padding: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  width: 19%;
  overflow: hidden;
}
.ic .swiper-slide:before {
  content: "";
  display: block;
  padding-bottom: 142%;
}
.ic .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: cover;
}
/* .ic .swiper-slide{border-bottom:4px solid rgb(75 177 63 / 40%)} */
/* .ic .swiper-slide-active{border-color:var(--i_color); box-shadow:0 0 10px rgb(0 0 0 / 15%)} */
/* 左右箭头 */
.ic-button-prev,
.ic-button-next {
  position: absolute;
  top: 46%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  z-index: 999;
  outline: none;
  cursor: pointer;
  opacity: 0.5;
}
.ic-button-prev {
  left: 2%;
  background: url("static/images/public/arrow_left_hollow_bai2.svg") no-repeat
    center;
  background-size: 22px;
}
.ic-button-next {
  right: 2%;
  background: url("static/images/public/arrow_right_hollow_bai2.svg") no-repeat
    center;
  background-size: 22px;
}
/* 指示器 */
/* .ic-pagination{display:block; text-align:center; margin:40px auto 0}
.ic-pagination .swiper-pagination-bullet{width:8px; height:8px; display:inline-block; margin:0 5px; background:#E5E5E5; -webkit-border-radius:50%; -moz-border-radius:50%; -o-border-radius:50%; border-radius:50%; cursor:pointer; outline:none}
.ic-pagination .swiper-pagination-bullet-active{position:relative; width:40px; height:8px; -webkit-border-radius:100px; -moz-border-radius:100px; -o-border-radius:100px; border-radius:100px; background:var(--i_color)} */
@media screen and (max-width: 1440px) {
  /* .ic .swiper-slide{width:320px} */
  /* .ic-button-prev{left:10%}
	.ic-button-next{right:10%} */
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  /* .ic .swiper-slide{width:280px} */
  /* .ic-button-prev{left:6%}
	.ic-button-next{right:6%} */
}
@media screen and (max-width: 1080px) {
  .ic-pagination {
    margin: 30px auto;
  }
  .ic-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .ic-pagination .swiper-pagination-bullet-active {
    width: 30px;
  }
}
@media screen and (max-width: 959px) {
  /* .ic .swiper-slide{width:260px} */
  .ic-button-prev,
  .ic-button-next {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .ic .swiper-slide {
    width: 46%;
  }
  .ic-pagination {
    margin: 20px auto;
  }
}
@media screen and (max-width: 560px) {
}
.i_logo {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .i_logo {
    display: none;
  }
}
.logo_list {
  position: relative;
  overflow: hidden;
}
.logo_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.logo_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.logo_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 61%;
}
.logo_list .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.partners .logo_list {
  padding-top: 0.2rem;
}
.partners .logo_list .swiper-slide {
  box-sizing: border-box;
  border: 1px solid var(--border_color);
}
.logo-pagination {
  display: none;
  margin-top: 0.3rem;
  text-align: center;
}
.logo-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.logo-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.i_case {
  background-color: var(--bc_color);
}
.i_case_list {
  position: relative;
  overflow: hidden;
}
.i_case_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.i_case_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.i_case_list .swiper-slide a{display: block; width: 100%;}
.i_case_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.i_case_list .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.i_case_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 101%;
  height: 101%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_case_list .txt {
  text-align: center;
  background-color: var(--i_color);
  color: #fff;
  padding: 0.2rem;
  -webkit-border-radius: 0.1rem 0.1rem 0 0;
  border-radius: 0.1rem 0.1rem 0 0;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -20%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_case_list li:hover .txt {
  opacity: 1;
  bottom: 0;
}
@media screen and (max-width: 560px) {
  .i_case_list .txt {
    opacity: 1;
    bottom: 0;
  }
}
.i_case_list h6 {
  font-size: 0.18rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 170%;
  font-weight: bold;
}
.i_case_list .txt p {
  font-size: 0.14rem;
  line-height: 180%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.i_case_list iconify-icon {
  font-size: 0.28rem;
  margin-top: 0.2rem;
}
.i_case-prev,
.i_case-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.6rem;
  height: 0.6rem;
  -webkit-border-radius: 0.3rem;
  border-radius: 0.3rem;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0.3;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_case-prev {
  left: 0;
  background: url("static/images/public/arrow_left_hollow_bai2.svg") no-repeat
    center;
  background-size: 22px;
  background-color: var(--i_color);
}
.i_case-next {
  right: 0;
  background: url("static/images/public/arrow_right_hollow_bai2.svg") no-repeat
    center;
  background-size: 22px;
  background-color: var(--i_color);
}
.i_case_list .swiper-button-disabled {
  cursor: not-allowed;
}
.i_case-prev:hover,
.i_case-next:hover {
  opacity: 1;
}
.i_case-pagination {
  display: none;
  margin-top: 0.3rem;
  text-align: center;
}
.i_case-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.i_case-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .i_case-prev,
  .i_case-next {
    width: 0.4rem;
    height: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .i_case-prev,
  .i_case-next {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  /* .i_case {
    display: none;
  } */
}






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

.aboutCE_list a{display: block;}

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

.aboutCE_list p{text-align: center; margin-top: 0.14rem; font-size: 16px; color: #333; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

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

.aboutCE-navigation{display:flex; flex-wrap:wrap; justify-content: center; gap: 0 .4rem;}
.aboutCE-navigation>div{width:.5rem; height:.5rem; background: #EEE; border-radius:50%; z-index:3; cursor:pointer; outline:none; user-select:none; position: relative;}
.aboutCE-prev iconify-icon,.aboutCE-next iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.26rem; color:var(--i_color);}
.aboutCE_list .swiper-button-disabled{cursor:not-allowed}
.aboutCE-navigation>div:hover{background: var(--i_color);}
.aboutCE-navigation>div:hover iconify-icon{color: #FFF;}

.aboutCE-pagination{display: none;}

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

	.aboutCE-pagination{display:block; margin-top:0.3rem; text-align:center}
	.aboutCE-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#C4C4C4; 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 p{font-size: 14px;}
}







.i_about {
  /* padding-top: 1.5rem; */
  background: url(static/images/home-about-bg.webp)
    no-repeat center;
  background-size: cover;
}
.i_about .wrap {
  display: -webkit-flex;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.i_ab_t {
  width: 47%;
}
.i_ab_t article {
  font-size: 0.16rem;
  color: #222;
  line-height: 0.32rem;
  overflow-y: auto;
  padding-right: 3%;
  font-weight: 100;
}
.i_ab_t article * {
  line-height: 150%;
}
.i_ab_t article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}
.i_ab_t article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}
.i_ab_t article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}
.i_ab_num {
  width: 42%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.i_ab_num li {
  color: #333;
  width: 45%;
  margin-bottom: 0.6rem;
}

.i_ab_num h6 {
  font-size: 0.4rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_ab_num span {
  font-size: 0.5rem;
}
.i_ab_num p {
  font-size: 0.16rem;
  color: #333;
  margin-top: 0.1rem;
}
.i_ab_num li:hover h6 {
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .i_about {
    padding-top: 1.2rem;
  }
  .i_ab_t article {
    font-size: 0.18rem;
    line-height: 0.24rem;
  }
  .i_ab_num span {
    font-size: 0.4rem;
  }
  .i_ab_num h6 {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_about {
    padding-top: 0.8rem;
  }
  .i_ab_t {
    width: 100%;
  }
  .i_ab_num {
    width: 100%;
    margin-top: 0.3rem;
  }
  .i_ab_t article {
    font-size: 16px;
    line-height: 26px;
  }
  .i_ab_num span {
    font-size: 0.3rem;
  }
}
.ia_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ia_list a {
  width: 100%;
  height: 100%;
  display: block;
  color: #666;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ia_list li {
  width: 50%;
  -webkit-border-radius: 0.5rem 0.5rem 0 0;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.5rem 0;
  text-align: center;
  background-color: rgb(0 0 0 / 5%);
  backdrop-filter: blur(5px);
  overflow: hidden;
}
.ia_list li::after {
  content: "";
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--i_color), transparent);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0.5;
  z-index: -1;
}
.ia_list h6 {
  font-size: 0.24rem;
  font-weight: bold;
  margin-top: 0.15rem;
}
.ia_list iconify-icon {
  font-size: 0.6rem;
}
.ia_list li:last-child::after,
.ia_list li:hover::after {
  height: 100%;
}
.ia_list li:last-child a,
.ia_list li:hover a {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .ia_list h6 {
    font-size: 0.2rem;
  }
  .ia_list iconify-icon {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .ia_list li {
    padding: 0.3rem 0;
  }
  .ia_list h6 {
    font-size: 0.18rem;
    font-weight: normal;
  }
  .ia_list iconify-icon {
    font-size: 0.4rem;
  }
}
/* eject videos */
.vd_box {
  display: none;
  position: fixed;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2014;
  width: 60%;
  max-height: 90%;
}
.vd_box::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.close_v {
  position: absolute;
  top: -0.2rem;
  right: -0.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: -0.15rem;
    right: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .close_v::before {
    font-size: 0.3rem;
  }
}

.i_news_cont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hn_swiper {
  width: 45%;
  position: relative;
}
.hn {
  width: 100%;
  overflow: hidden;
}
.hn .swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.hn .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.hn .swiper-slide {
  height: 0;
  padding-bottom: 52.83%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.hn .swiper-slide > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hn-button-prev,
.hn-button-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background: rgb(0 0 0 / 40%);
  z-index: 999;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-border-radius: 0.05rem;
  border-radius: 0.05rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hn-button-prev {
  left: 0;
}
.hn-button-next {
  right: 0;
}
.hn-button-prev:hover,
.hn-button-next:hover {
  background-color: var(--i_color);
}
.hn-pagination {
  position: absolute;
  top: 103%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.hn-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 10px;
  background: #999;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.hn-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
  border: transparent;
}
@media screen and (max-width: 1200px) {
  .hn-button-prev,
  .hn-button-next {
    display: none;
  }
}
.i_n_list {
  width: 50%;
}
.i_n_list li {
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}
.i_n_list a {
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  display: flex;
  flex-wrap: nowrap;
  padding: 0.25rem 0;
}
.i_n_list .txt {
  width: 80%;
  position: relative;
}
.n_date {
  color: #666;
  font-size: 0.14rem;
}
.n_date b {
  display: block;
  font-size: 0.48rem;
}
.i_n_list h6 {
  font-size: 0.24rem;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.i_n_list iconify-icon {
  font-size: 0.4rem;
  color: #999;
}
.i_n_list::after,
.i_n_list h6,
.i_n_list b {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_n_list :hover .txt::after {
  background-color: var(--i_color);
}
.i_n_list :hover h6,
.i_n_list :hover b {
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .i_n_list a {
    padding: 0.1rem 0;
  }
  .n_date b {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .hn_swiper {
    width: 60%;
    margin: 0.3rem auto;
  }
  .i_n_list {
    width: 100%;
  }
  .i_n_list h6 {
    font-size: 0.2rem;
  }
  .n_date b {
    font-size: 0.3rem;
  }
  .i_n_list iconify-icon {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .hn_swiper {
    width: 100%;
    margin: 0.3rem auto;
  }
  .i_n_list .txt {
    width: 50%;
  }
}


.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_list{display: block;}
	.homeNews_list::before{display: none;}
	.homeNews_list .date{display: none !important;}

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


/* quote */
.f_quote_box {
  position: relative;
  background: url(static/images/bc_iform_.webp)
    no-repeat bottom;
  background-size: cover;
}
.f_quote_box::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 145, 59, 0.8), var(--i_color));
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
/* ---------------------------内页------------------------------- */
.in_banner {
  width: 100%;
  position: relative;
}
.in_banner .img {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.in_banner .img::after {
  content: "";
  display: block;
  padding-bottom: 29.6875%;
}
.in_banner .img::before {
  content: "";
  width: 100%;
  height: 80%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.in_banner .img img {
  width: 101%;
  height: 101%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_b_text {
  position: absolute;
  top: 45%;
  transform: translate(0, -50%);
  width: 100%;
  z-index: 5;
  text-align: center;
}
.in_b_text h2 {
  margin-bottom: 0.1rem;
  font-size: 0.4rem;
  color: #fff;
  font-weight: bold;
}
.breadcrumbs {
  display: -webkit-flex;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs a {
  font-size: 0.18rem;
  color: #fff;
}
.breadcrumbs a:not(:last-child):after {
  content: ">";
  margin: 0 0.06rem;
}
.breadcrumbs a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 1200px) {
  .in_b_text h2 {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_b_text {
    top: 46%;
  }
  .in_b_text h2 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .in_b_text h2 {
    font-size: 0.26rem;
  }
  .breadcrumbs a {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 560px) {
  .in_b_text h2 {
    font-size: 0.2rem;
  }
  .breadcrumbs a {
    font-size: 0.16rem;
  }
}
/* -----------------------products----------------------- */
.p_txt {
  background-color: var(--bc_color);
}
.p_txt .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.p_txt .i_tit {
  width: 50%;
}
.p_txt ul {
  width: 42%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.p_txt img {
  max-width: 1rem;
  object-fit: contain;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .p_txt .i_tit {
    width: 100%;
  }
  .p_txt ul {
    width: 100%;
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 959px) {
  .p_txt img {
    max-width: 0.7rem;
  }
}
.bc_gradient {
  background: linear-gradient(to bottom, #f7f7f7 40%, var(--i_color));
}
.bc_black {
  background: var(--bc_color);
}
.pc_a .i_tit h6 {
  font-size: 14px;
  width: 80%;
  margin: 0.2rem auto;
}
.pc_a_list {
  position: relative;
  overflow: hidden;
}
.pc_a_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.pc_a_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.pc_a_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pc_a_list .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.pc_a_list .img img {
  position:absolute; top:0; left:0; width:100%; height:100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pc_a_list .txt {
  text-align: center;
  color: #fff;
  font-size: 0.18rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.5s ease;
}
.pc_a_list b {
  position: relative;
  overflow:hidden; white-space:nowrap; text-overflow:ellipsis;
  z-index: 2;
}
.pc_a_list .txt::before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: -10%;
  left: 50%;
  border-radius: 40%;
  transform: translateX(-50%);
  background: var(--i_color);
  transition: 0.5s ease;
}

.pc_a_list .swiper-slide:hover img{transform: scale(1.05, 1.05);}

.pc_a-prev,
.pc_a-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background: rgb(0 0 0 / 60%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.pc_a-prev {
  left: 0;
}
.pc_a-next {
  right: 0;
}
.pc_a-prev i,
.pc_a-next i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.34rem;
  color: #fff;
}
.pc_a_list .swiper-button-disabled {
  cursor: not-allowed;
}
.pc_a-prev:hover,
.pc_a-next:hover {
  background: var(--i_color);
}
.pc_a-pagination {
  margin-top: 0.3rem;
  text-align: center;
}
.pc_a-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.pc_a-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.pc_b {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.p_box {
  width: 40%;
}
.pc_b_img {
  width: 52%;
  display: block;
}
.p_box ul {
  margin-top: 0.8rem;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.p_box li {
  width: 32%;
  position: relative;
  overflow: hidden;
}
.p_box li::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_box li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p_box .p_descrp p {
  text-align: left;
}
.pc_b_img {
  position: relative;
  overflow: hidden;
}
.pc_b_img::before {
  content: "";
  display: block;
  padding-bottom: 83.33%;
}
.pc_b_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .p_box ul {
    margin-top: 0.3rem;
  }
  .p_box {
    width: 100%;
  }
  .pc_b_img {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.p_descrp {
  font-size: 0.14rem;
  color: #333;
  line-height: 170%;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
.p_descrp p {
  font-size: 0.14rem;
  color: #333;
  line-height: 170%;
  text-align: center;
}
.customized {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cus_list {
  width: 50%;
}
.cus_txt {
  width: 45%;
}
.cus_txt article {
  font-size: 0.18rem;
  color: #fff;
  line-height: 170%;
  margin: 0.3rem 0;
}
.cus_txt article,.cus_txt article p {
  font-size: 0.18rem;
  color: #333;
  line-height: 1.7;
}
.cus_list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0.15rem;
  background-color: rgb(255 255 255 / 10%);
  backdrop-filter: blur(5px);
  overflow: hidden;
  padding: 0.3rem 0.2rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
.cus_list .ico {
  width: 0.64rem;
  height: 0.64rem;
  background-color: var(--i_color);
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cus_list img {
  max-width: 0.4rem;
  object-fit: contain;
  -webkit-filter: brightness(100);
  -moz-filter: brightness(100);
  -o-filter: brightness(100);
  -ms-filter: brightness(100);
  filter: brightness(100);
}
.cus_list .txt {
  width: calc(100% - 0.84rem);
}
.cus_list h3 {
  padding: 6px 0.7rem 6px 0;
  font-size: 0.24rem;
  color: #333;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  line-height: 150%;
}
.cus_list h3 i {
  width: 20px;
  height: 20px;
  background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
    center;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cus_list .curr i {
  transform: translateY(-50%) rotate(180deg);
}
.cus_list p {
  display: none;
  margin: 0.1rem 0;
  font-size: 0.16rem;
  color: #666;
  line-height: 160%;
}
@media screen and (max-width: 1024px) {
  .cus_list {
    width: 100%;
  }
  .cus_txt {
    width: 100%;
    margin-top: 0.3rem;
  }
  .cus_list h3 {
    font-size: 0.2rem;
  }
  .cus_list li {
    padding: 0.2rem 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .cus_list h3 {
    font-size: 0.18rem;
  }
  .cus_list .ico {
    width: 0.5rem;
    height: 0.5rem;
  }
  .cus_list .txt {
    width: calc(100% - 0.64rem);
  }
  .cus_list p {
    font-size: 14px;
  }
  .cus_txt article {
    font-size: 16px;
    line-height: 150%;
  }
}
/* -----------------------products_list-------------------------- */
.p_menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border_color);
}
.p_menu li {
  margin: 0.12rem 0.3rem;
}
.p_menu a {
  color: #222;
  font-size: 0.18rem;
  font-weight: bold;
  padding: 0.1rem 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_menu li.curr a,
.p_menu li:hover a {
  color: var(--i_color);
  border-bottom: 1px solid var(--i_color);
}
.p_list {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.p_list li {
  width: calc(100% / 4 - 0.2rem);
  margin-right: 0.26rem;
  margin-bottom: 0.3rem;
  position: relative;
}
.p_list li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .p_list li {
    width: calc(100% / 3 - 0.2rem);
    margin-right: 0.3rem;
  }
  .p_list li:nth-child(4n) {
    margin-right: 0.3rem;
  }
  .p_list li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .p_list {
    justify-content: space-between;
  }
  .p_list li {
    width: 48%;
    margin-right: 0 !important;
  }
}
.p_list a {
  display: block;
  width: 100%;
}
.p_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p_list .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_list .txt {
  text-align: center;
  color: #fff;
  font-size: 0.18rem;
  font-weight: bold;
  -webkit-border-radius: 0.2rem 0.2rem 0 0;
  border-radius: 0.2rem 0.2rem 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0;
  transition: 0.5s ease;
}
.p_list b {
  position: relative;
  z-index: 2;
}
.p_list .txt::before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 100%;
  left: 50%;
  border-radius: 40%;
  transform: translateX(-50%);
  background: var(--i_color);
  transition: 0.5s ease;
  opacity: 0;
}
.p_list li:hover .txt {
  opacity: 1;
}
.p_list li:hover .txt::before {
  top: -10%;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .p_list .txt {
    font-size: 14px;
  }
}





.pList{display:flex; flex-wrap:wrap; gap:.3rem 2%}
.pList li{width: 23.5%;}

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




.pl_box article {
  font-size: 14px;
  color: #fff;
  line-height: 170%;
  margin: 0.4rem auto;
  text-align: center;
}
.pl_box article p {
  font-size: 14px;
  color: #333;
  line-height: 170%;
}
.p_menu_in {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.p_menu_in li {
  margin: 0 0.2rem;
  padding: 3px 16px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_menu_in a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 0.18rem;
}
.p_menu_in li.curr,
.p_menu_in li:hover {
  background-color: var(--i_color);
}
@media screen and (max-width: 960px) {
  .p_menu {
    display: none;
  }
  .p_menu li {
    margin-bottom: 0.2rem;
  }
}
/* --------------------------------detail------------------------------------ */
/* 详情页图集轮播 */
.in_factory_cont {
  --sm_pic_width: 17%;
}
.in_factory_cont {
  position: relative;
  overflow: hidden;
}
.in_factory_cont:before {
  content: "";
  display: block;
  padding-bottom: 80.2%;
}
.in_factory_list_box {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--sm_pic_width);
  height: 100%;
  box-sizing: border-box;
  padding: 40px 0;
}
.in_factory_list {
  height: 100%;
  overflow: hidden;
}
.in_factory_list .swiper-slide {
  cursor: pointer;
}
.in_factory_list .img {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.in_factory_list .img::before {
  content: "";
  display: block;
  padding-bottom: 78%;
}
.in_factory_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_factory_list .swiper-slide-thumb-active .img {
  border: 1px solid var(--i_color);
}
.infactory-button-prev,
.infactory-button-next {
  opacity: 0.7;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 60px;
  height: 30px;
  background: #000;
  z-index: 999;
  outline: none;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.infactory-button-prev {
  top: 4px;
  background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat center;
  background-size: contain;
}
.infactory-button-next {
  bottom: 4px;
  background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
    center;
  background-size: contain;
}
.infactory-button-prev.swiper-button-disabled,
.infactory-button-next.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.in_factory_show_box {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - var(--sm_pic_width) - 20px);
  height: 100%;
  box-sizing: border-box;
  padding: 0 0;
  margin: 0 auto;
}
.in_factory_show {
  background: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.in_factory_show .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.in_factory_show .swiper-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.in_factory_show .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_factory_show .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_factory_show .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.infactory-pagination {
  display: none;
  margin: 16px auto 0;
  text-align: center;
}
.infactory-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  outline: none;
  cursor: pointer;
}
.infactory-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
@media screen and (max-width: 1366px) {
  .in_factory_cont:before {
    padding-bottom: 100%;
  }
}
@media screen and (max-width: 959px) {
  .in_factory_list_box {
    display: none;
  }
  .in_factory_show_box {
    width: 100%;
  }
  .infactory-pagination {
    display: block;
  }
}
.pd_img_box {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pd_box {
  background-color: #fff;
}
.pd_box .left_img {
  width: 45%;
}
.pd_img_box .right_txt {
  width: 50%;
  color: #222;
}
@media screen and (max-width: 769px) {
  .pd_box .left_img {
    width: 100%;
  }
  .pd_img_box .right_txt {
    margin: 0.3rem auto;
    width: 100%;
  }
}
.pd_img_box h1 {
  font-weight: bold;
  font-size: 0.3rem;
  text-transform: capitalize;
  margin-bottom: 0.3rem;
}
.parameters {
  font-size: 0.16rem;
  line-height: 170%;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
}
.parameters p {
  line-height: 170%;
}
@media screen and (max-width: 1366px) {
  .pd_img_box h1 {
    font-size: 0.26rem;
    margin-bottom: 0.2rem;
  }
  .parameters {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .pd_img_box h1 {
    font-size: 0.2rem;
    margin-bottom: 0.12rem;
  }
  .parameters {
    font-size: 0.14rem;
  }
}
/* 标签 */
.tags {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.tags h6 {
  font-size: 0.2rem;
  color: #333;
  white-space: nowrap;
  font-weight: bold;
  margin-bottom: 0.1rem;
  width: 100%;
}
.tags ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.tags a {
  font-size: 0.18rem;
  color: #666;
  line-height: 150%;
  padding-right: 0.1rem;
  margin-bottom: 0.1rem;
  border-right: 1px solid #666;
}
.tags li:last-child a {
  border-right: none;
}
.tags li {
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 1366px) {
  .tags h6 {
    font-size: 0.2rem;
  }
  .tags a {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .tags h6 {
    font-size: 0.17rem;
  }
  .tags a {
    font-size: 0.14rem;
  }
}
.detail_box .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.detail_list {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #323232;
}
.detail_list li {
  margin-right: 0.36rem;
}
.detail_list a {
  font-size: 0.3rem;
  padding: 0.19rem 0;
  border-bottom: 2px solid transparent;
  color: #222;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: bold;
}
.detail_list li:hover a {
  color: var(--i_color);
  border-color: var(--i_color);
}
.detail {
  width: 65%;
  margin-right: auto;
}
.detail article {
  margin-bottom: 0.6rem;
  color: #333;
  font-size: 0.18rem;
}
.detail article * {
  color: #333;
  line-height: 150%;
}
.detail article a {
  color: var(--i_color) !important;
}
.detail article h2 {
  font-size: 0.26rem;
  margin: 0.24rem 0 0.16rem;
}
.detail article summary,
.detail article h3 {
  font-size: 0.22rem;
  margin: 0.24rem 0 0.16rem;
  font-weight: bold;
}
.detail article details p {
  font-size: 0.18rem;
  margin-bottom: 0.1rem;
}
.detail article a *:hover {
  text-decoration: underline;
}
.detail article iframe {
  max-width: 100%;
}
.detail article image {
  max-width: 100%;
}
@media screen and (max-width: 1440px) {
  .detail article {
    margin-bottom: 0.4rem;
    font-size: 0.16rem;
  }
  .detail article details p {
    font-size: 0.16rem;
  }
  .detail article h2 {
    font-size: 0.22rem;
  }
  .detail article summary,
  .detail article h3 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1024px) {
  .detail_list a {
    font-size: 0.2rem;
  }
}
.pd_form {
  width: 30%;
  margin-left: auto;
  padding: 0.3rem 0.2rem;
  background: rgb(0 0 0 / 10%);
  position: relative;
  border-bottom: 2px solid var(--i_color);
}
.pd_form h6 {
  margin-bottom: 0.3rem;
  font-size: 0.24rem;
  color: var(--i_color);
  font-weight: bold;
}
@media screen and (max-width: 1440px) {
  .pd_form h6 {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 959px) {
  .pd_form h6 {
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 560px) {
  .pd_form h6 {
    font-size: 18px;
  }
}

#wpforms-89{
    --wpforms_input_height:42px;
    --wpforms_textarea_height:120px;
    --wpforms_input_font_size: 15px;
}
#wpforms-89{margin:0; padding:0;}
#wpforms-form-89{width:100%; position:relative;}

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

#wpforms-89-field_4-container .choices{width: 100%; max-width: 100% !important;}
#wpforms-89-field_4-container .choices__inner{border: none !important; height: var(--wpforms_input_height);}
#wpforms-89-field_4-container .choices__list--single{font-size: var(--wpforms_input_font_size);}
#wpforms-89-field_4-container .choices__list--dropdown .choices__item{font-size: var(--wpforms_input_font_size)}


#wpforms-89 .wpforms-field-container .wpforms-field>input:hover,
#wpforms-89 .wpforms-field-container textarea:hover,
#wpforms-89 .wpforms-field-container .wpforms-field>input:focus,
#wpforms-89 .wpforms-field-container textarea:focus{border-color: #F60;}

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

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

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

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

@media screen and (max-width: 1024px) {
  .detail {
    width: 100%;
  }
  .pd_form {
    width: 100%;
  }
  .detail_list li {
    margin-bottom: 0.2rem;
  }
  .detail_list a {
    padding: 0.1rem 0;
  }
}
/* Related Product轮播 */
.r_p {
  position: relative;
  background: url(static/images/bc_releate.webp) no-repeat center;
  background-size: cover;
}
.r_p_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.r_p_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.r_p_list .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.rp-button-prev,
.rp-button-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.68rem;
  height: 0.8rem;
  background-color: var(--i_color);
  z-index: 99;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rp-button-prev {
  left: 0;
}
.rp-button-next {
  right: 0%;
}
.rp-pagination {
  display: none;
}
@media screen and (max-width: 1024px) {
  .rp-pagination {
    display: block;
    text-align: center;
    margin-top: 0.3rem;
  }
}
.rp-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  outline: none;
  cursor: pointer;
}
.rp-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
/* ---------------------about-------------------------- */
.mao_box {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}
.in_nav {
  width: 100%;
  display: flex;
  display: -webkit-flex;
}
.menu_list {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  box-sizing: border-box;
  justify-content: center;
  position: relative;
}
.menu_list > li {
  margin: 0 2%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.35rem;
}
.menu_list > li a {
  position: relative;
  height: 100%;
  display: inline-flex;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  line-height: 120%;
  font-size: 0.18rem;
  color: #222;
  transition: all 0.5s ease;
  padding: 0.2rem 0;
}
.menu_list > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.menu_list > li > a::after {
  width: 0%;
  height: 2px;
  background-color: var(--i_color);
  bottom: -1px;
}
/* 锚点激活样式 */
.menu_list > li:hover a,
.menu_list .list.active a {
  color: var(--i_color);
  /* font-weight: bold; */
}
.menu_list .list.active a {
  font-weight: bold;
}
.menu_list li.active > a::after,
.menu_list > li:hover > a::after {
  width: 100%;
}
.in_nav_tit {
  display: none;
}
.mao_box .navFix {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto 0;
  top: var(--header_height);
  z-index: 2014;
  width: 100%;
  border-bottom: 1px solid var(--border_color);
  background-color: var(--bc_color);
}
.in_nav_tit {
  width: 100%;
  background-color: var(--i_color);
  position: relative;
}
.in_nav_tit h6 {
  font-size: 0.24rem;
  line-height: 0.5rem;
  color: white;
  text-align: center;
}
.in_nav_tit i {
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background: url(static/images/public/arrow_down_hollow_bai.svg) no-repeat
    center;
  background-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_nav_tit.on i {
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 1366px) {
  .menu_list > li a {
    font-size: 0.14rem;
  }
  .menu_list > li {
    margin: 0 1%;
  }
}
@media screen and (max-width: 960px) {
  .in_nav_tit h6 {
    font-size: 0.18rem;
  }
  .in_nav_tit {
    display: block;
  }
  .menu_list {
    display: none;
  }
  .menu_list > li {
    width: 100%;
  }
  .in_nav {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
  }
  .menu_list li {
    width: 100%;
  }
  .menu_list li:hover {
    background-color: var(--i_color);
    box-shadow: 0 0 0.2rem rgba(1, 158, 230, 0.3);
  }
  .menu_list li:hover a {
    color: white;
  }
}
@media screen and (max-width: 560px) {
  .menu_list {
    padding: 0.2rem 0;
  }
}
@media screen and (max-width: 425px) {
}
.a_company .wrap_l {
  display: -webkit-flex;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.a_company .img {
  margin-left: auto;
  width: 52%;
  position: relative;
}
.a_company .img::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.a_company .img iframe{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.a_company .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .a_company .img {
    width: 100%;
  }
}
.i_v_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: rgb(0 0 0 / 10%);
  backdrop-filter: blur(1px);
  z-index: 6;
}
.i_v_btn i {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  display: block;
  width: 0px;
  height: 0px;
  border-left: 0.26rem solid #fff;
  border-top: 0.14rem solid transparent;
  border-right: 0.14rem solid transparent;
  border-bottom: 0.14rem solid transparent;
}
.i_v_btn svg {
  transform-origin: center;
  animation: rotate4 2s linear infinite;
}
.i_v_btn circle {
  fill: none;
  stroke: hsl(0, 0%, 100%);
  stroke-width: 1;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}
@keyframes rotate4 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -125px;
  }
}
@media screen and (max-width: 1024px) {
  .i_v_btn {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.a_company .i_ab_num {
  width: 100%;
}
.a_company .i_ab_num li {
  width: 20%;
  margin-bottom: 0;
  border: none;
}
@media screen and (max-width: 1024px) {
  .a_company .i_ab_num li {
    width: 45%;
    margin-bottom: 0.2rem;
  }
}
.a_certy {
  background: url(static/images/honor-bg.webp)
    no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}

/* Factory Overview */
.in_ew {
  position: relative;
}
.ew_list {
  position: relative;
  overflow: hidden;
}
.ew_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.ew_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transform: scale(0.85, 0.85);
  transform: scale(0.85, 0.85);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ew_list .swiper-slide-active {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.ew_list .img {
  width: 100%;
  height: 100%;
  /* background: #000; */
  position: relative;
  overflow: hidden;
}
.ew_list .img::before {
  content: "";
  display: block;
  padding-bottom: 56%;
}
.ew_list .img img {
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ew_list li:nth-child(1) .img::before,
.ew_list li:nth-child(2) .img::before {
  padding-bottom: 46%;
}
.ew_list .swiper-slide-active .img img {
  opacity: 1;
}
.ew_list button {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translate(-50%, 0%);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ew_list .swiper-slide-active button {
  display: none;
  bottom: 2%;
  opacity: 1;
}
.ew_list .swiper-slide-active:hover img {
  width: 110%;
  height: 110%;
}
.ew-prev,
.ew-next {
  opacity: 0.5;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background: rgb(0 0 0 / 60%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.ew-prev {
  left: 2%;
  background: url("static/images/public/arrow_left_hollow_bai2.svg") no-repeat
    center;
  background-size: 22px;
}
.ew-next {
  right: 2%;
  background: url("static/images/public/arrow_right_hollow_bai2.svg") no-repeat
    center;
  background-size: 22px;
}
.ew_list .swiper-button-disabled {
  cursor: not-allowed;
}
.ew-pagination {
  display: block;
  margin-top: 0.3rem;
  text-align: center;
}
.ew-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #999;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.ew-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .ew-prev,
  .ew-next {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .ew-pagination {
    margin-top: 0.22rem;
  }
}
/* ----------------------------news---------------------------- */
.in_n_list {
}
.in_n_list li {
  border-bottom: 1px solid var(--border_color);
  border-top: 1px solid var(--border_color);
  margin-bottom: 0.3rem;
}
.in_n_list a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.in_n_list .img {
  width: 18%;
}
.in_n_list .txt {
  width: 76%;
  padding: 0 3%;
}
.in_n_list .n_more {
  width: 6%;
  color: #fff;
}
.in_n_list .n_more {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.3rem;
  color: #333;
}
.in_n_list .img {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid transparent;
}
.in_n_list .img::before {
  content: "";
  display: block;
  padding-bottom: 90%;
}
.in_n_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_n_list h5 {
  font-size: 0.24rem;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 0.2rem;
}
.in_n_list h6 {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  color: #999;
  line-height: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.in_n_list span {
  font-size: 0.18rem;
  color: #333;
}
.in_n_list img,
.in_n_list li {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_n_list li:hover img {
  width: 105%;
  height: 105%;
}
.in_n_list li:hover {
  border-color: var(--i_color);
  background: #fff;
}
.in_n_list li:hover h5,
.in_n_list li:hover .n_more {
  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) {
  .in_n_list .txt {
    width: 72%;
    padding: 0 2%;
  }
  .in_n_list .n_more {
    width: 10%;
  }
  .in_n_list li {
    padding: 0.26rem 0;
  }
  .in_n_list .txt {
    margin-left: 0.4rem;
  }
  .in_n_list h5 {
    font-size: 0.2rem;
  }
  .in_n_list h6 {
    margin: 0.2rem 0;
    font-size: 0.15rem;
    line-height: 0.24rem;
  }
  .in_n_list span {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 768px) {
  .in_n_list li {
    padding: 0.2rem 0;
  }
  .in_n_list .img {
    width: 1.3rem;
  }
  .in_n_list .txt {
    margin-left: 0.15rem;
  }
  .in_n_list h5 {
    font-size: 0.17rem;
    -webkit-line-clamp: 3;
  }
  .in_n_list h6 {
    margin: 0.1rem 0;
    line-height: 0.18rem;
    -webkit-line-clamp: 1;
  }
  .in_n_list h6,
  .in_n_list span {
    font-size: 0.14rem;
    color: #777;
  }
}
@media screen and (max-width: 560px) {
  .in_n_list a {
    flex-wrap: wrap;
  }
  .in_n_list .img {
    width: 100%;
  }
  .in_n_list .txt {
    width: 100%;
    border: none;
    margin-top: 0.2rem;
  }
  .in_n_list .n_more {
    display: none;
  }
  .in_n_list h5 {
    font-size: 0.16rem;
  }
}
/* Number of pages */
.in_page_box {
  padding: 0.3rem 0;
  text-align: center;
  overflow: hidden;
}
.in_page {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.in_page li {
  min-width: 0.32rem;
  margin: 0 0.04rem;
}
.in_page a,
.in_page span {
  display: block;
  padding: 0 0.12rem;
  line-height: 0.32rem;
  font-size: 0.14rem;
  color: #333;
  border: 1px solid var(--border_color);
  overflow: hidden;
}
.in_page > i {
  margin-top: 0.14rem;
  width: 100%;
  font-size: 0.13rem;
  color: #888;
}
.in_page a:hover,
.in_page .active_page a,
.in_page .active_page span {
  border-color: var(--i_color) !important;
  background: var(--i_color);
  color: #fff !important;
}
@media screen and (max-width: 1024px) {
  .in_page_box {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .in_page li {
    min-width: 0.28rem;
  }
  .in_page a,
  .in_page span {
    line-height: 0.28rem;
    padding: 0 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .in_page_box {
    margin-top: 0.3rem;
  }
}
/* -----------------------why------------------------ */
.why_list li {
  padding: 1.2rem 0;
}
.why_list .wrap {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.why_list li:nth-child(odd) {
  background-color: #fff;
}
.why_list li:nth-child(even) {
  background-color: var(--bc_color);
}
.why_list li:nth-child(even) .wrap {
  flex-direction: row-reverse;
}
.why_list .txt {
  width: 46%;
}
.why_list .img {
  width: 50%;
}
.why_list .img {
  position: relative;
  overflow: hidden;
}
.why_list .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.why_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.why_list article {
  margin: 0.3rem 0 0.8rem;
  font-size: 0.17rem;
  color: #222;
  line-height: 0.32rem;
  max-height: calc(0.32rem * 10);
  overflow-y: auto;
  padding-right: 3%;
}
.why_list article p {
  line-height: 150%;
}
.why_list article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}
.why_list article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}
.why_list article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .why_list li {
    padding: 1rem 0;
  }
  .why_list article {
    font-size: 0.18rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }
}
@media screen and (max-width: 1024px) {
  .why_list li {
    padding: 0.6rem 0;
  }
  .why_list article {
    margin: 0.1rem 0 0.4rem;
    font-size: 16px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
}
.why_ico {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.why_ico dt {
  margin-right: 0.4rem;
  margin-bottom: 0.1rem;
}
.why_ico dt img {
  max-width: 0.4rem;
  object-fit: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.why_ico dt:nth-child(odd):hover img {
  transform: rotateX(360deg);
}
.why_ico dt:nth-child(even):hover img {
  transform: rotateY(360deg);
}
.why_ico p {
  font-size: 0.18rem;
  color: #222;
  font-weight: bold;
  margin-top: 0.2rem;
}
.why_ad_box::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--i_color), var(--bc_color));
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.why_ad {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.why_ad h6 {
  width: 46%;
  font-size: 0.36rem;
  color: #fff;
  font-weight: bold;
  line-height: 180%;
}
.why_ad span {
  color: #0a723d;
}
.why_ad .txt {
  width: 50%;
  font-size: 0.18rem;
  color: rgb(255 255 255 / 70%);
}
.why_ad .txt p {
  line-height: 150%;
}
.why_list .i_tit h2 {
  font-size: 0.3rem;
  text-transform: capitalize;
}
.why_list .i_tit h2 p {
  color: var(--i_color) !important;
  -webkit-text-fill-color: initial !important;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  font-weight: bold;
}
.why_ad .txt .i_more{background: #0a723d;}
@media screen and (max-width: 1440px) {
  .why_list .i_tit h2 {
    font-size: 0.24rem;
  }
  .why_ad h6 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .why_list .txt {
    width: 100%;
  }
  .why_list .img {
    width: 100%;
    margin: 0.3rem 0;
  }
  .why_ad h6 {
    font-size: 0.24rem;
    width: 100%;
  }
  .why_ad .txt {
    width: 100%;
    margin-top: 0.2rem;
  }
  .why_ico p {
    font-size: 0.16rem;
  }
  .why_ico dt {
    margin-right: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .why_ico dt img {
    max-width: 0.3rem;
  }
  .why_ico p {
    font-size: 14px;
  }
  .why_ico {
    justify-content: space-between;
  }
  .why_ico dt {
    margin-right: 0;
  }
}
/* -----------------PARTNER RECRUITMENT  　--------------- */
.opp .txt {
  width: 40%;
}
.opp h6 {
  font-size: 0.36rem;
  color: #fff;
  font-weight: bold;
  line-height: 160%;
}
.opp span {
  color: var(--i_color);
  text-transform: uppercase;
  font-weight: bold;
}
.opp article {
  font-size: 0.18rem;
  color: #222;
  margin-top: 0.6rem;
  line-height: 150%;
}
.opp .img {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.opp .img::before {
  content: "";
  display: block;
  padding-bottom: 72.18%;
}
.opp .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1440px) {
  .opp h6 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .opp h6 {
    font-size: 0.2rem;
  }
  .opp .txt {
    width: 100%;
    padding: 0.2rem 0;
  }
  .opp article {
    margin-top: 0.2rem;
    font-size: 16px;
  }
  .opp .img {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.reason .i_tit h4 {
  font-size: 0.4rem;
  line-height: 150%;
}
.reason .wrap {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-start;
}
.reason .img_box {
  width: 48%;
}
.reason .img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.reason .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.reason .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.reason .img_box > div:not(:first-child) {
  display: none;
}
.rea_list {
  width: 45%;
  margin-left: auto;
}
.rea_list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border_color);
}
.rea_list li:first-child {
  border-top: 1px solid var(--border_color);
}
.rea_tit {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
}
.rea_tit p {
  font-size: 20px;
  color: #222;
  padding-left: 5px;
  text-transform: capitalize;
}
.a_ad_txt {
  display: none;
  padding: 0.2rem 0;
  padding-left: 0.5rem;
  font-size: 16px;
  line-height: 150%;
  text-align: left;
  color: #666;
}
.rea_list img {
  max-width: 0.45rem;
  object-fit: contain;
  margin-right: 0.1rem;
}
@media screen and (max-width: 1440px) {
  .reason .i_tit h4 {
    font-size: 0.32rem;
  }
  .rea_list li {
    padding: 0.4rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .reason .i_tit h4 {
    font-size: 0.22rem;
  }
  .rea_list li {
    padding: 0.3rem 0;
  }
  .reason .img_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
  }
  .rea_list {
    width: 100%;
    position: relative;
    z-index: 2;
  }
}
.c_form_box {
  background: linear-gradient(var(--i_color), #fff);
}
.c_form_box .txt {
  margin: 0.12rem 0 0.9rem;
}
.c_form_box .txt p {
  font-size: 0.2rem;
  color: rgb(255 255 255 / 75%);
  line-height: 170%;
  text-align: center;
}
.c_form_box .txt a {
  color: var(--i_color);
  text-decoration: underline;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .c_form_box .txt p {
    font-size: 0.18rem;
  }
}


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

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

#wpforms-94-field_4-container .choices{width: 100%; max-width: 100% !important;}
#wpforms-94-field_4-container .choices__inner{border: none !important; height: var(--wpforms_input_height); background: rgb(255 255 255 / 70%) !important;}
#wpforms-94-field_4-container .choices__list--single{font-size: var(--wpforms_input_font_size);}
#wpforms-94-field_4-container .choices__item{opacity: 1 !important; color:#666 !important;}
#wpforms-94-field_4-container .choices__list--dropdown .choices__item{font-size: var(--wpforms_input_font_size)}


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

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

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

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

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


.c_box .wrap_l {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.c_info {
  width: 48%;
}
.map {
  width: 50%;
}
.c_info h5 {
  font-size: 0.4rem;
  font-weight: bold;
  margin-bottom: 0.6rem;
  color: #222;
}
.c_info li {
  margin-bottom: 0.4rem;
  color: #222;
}
.c_info .img {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 0.16rem;
  margin-bottom: 0.16rem;
  border-bottom: 1px solid var(--border_color);
  position: relative;
}
.c_info .img::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  bottom: -1px;
  right: 0;
}
.c_info img {
  max-width: 0.35rem;
  margin-right: 0.2rem;
  object-fit: contain;
}
.c_info h6 {
  font-size: 0.24rem;
  font-weight: bold;
}
.c_info p {
  font-size: 0.18rem;
  margin-bottom: 0.1rem;
  line-height: 150%;
}
.c_info a {
  font-size: 0.18rem;
  color: #222;
  line-height: 150%;
}
.c_info li,
.c_info img,
.c_info .img::after,
.c_info h6 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.c_info li:hover h6 {
  color: var(--i_color);
}
.c_info li:hover .img::after {
  width: 100%;
  left: 0;
  right: initial;
}
.c_info li:hover img {
  transform: rotateY(180deg);
}
.c_info a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .c_info h5 {
    font-size: 0.32rem;
    margin-bottom: 0.4rem;
  }
  .c_info h6 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .c_info h5 {
    font-size: 0.2rem;
  }
  .c_info .img {
    padding-bottom: 0.1rem;
    margin-bottom: 0.1rem;
  }
  .c_info p {
    font-size: 0.16rem;
  }
  .c_info a {
    font-size: 0.16rem;
  }
  .c_info {
    width: 100%;
    padding: 0.2rem 0;
  }
  .map {
    width: 100%;
  }
}
.how_to h5 {
  font-size: 0.4rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.2rem;
}
.how_list li {
  padding: 0.2rem 0;
  color: #222;
  font-size: 0.18rem;
  border-bottom: 1px solid var(--border_color);
  cursor: pointer;
}
.how_list li:first-child {
  border-top: 1px solid var(--border_color);
}
.how_list .how_txt {
  display: flex;
  display: -webkit-flex;
  line-height: 170%;
  display: none;
}
.how_list span {
  margin-right: 6px;
}
.how_list h6 {
  padding: 0.1rem 0;
  font-size: 0.18rem;
}
.how_list p {
  line-height: 170%;
}
.how_list .txt {
  margin-top: 0.1rem;
  width: 100%;
  display: flex;
  display: -webkit-flex;
}
.how_list img {
  max-width: 2rem;
  object-fit: contain;
  margin-left: 5%;
}
@media screen and (max-width: 1440px) {
  .how_to h5 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .how_to h5 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .how_list .txt {
    flex-wrap: wrap;
  }
  .how_list img {
    max-width: 100%;
    margin: 0.2rem 0;
  }
}
/* 默认表格 */
table {
  border-top: 2px solid var(--i_color);
  margin-bottom: 20px;
  width: 100% !important;
  max-width: 100% !important;
  background: var(--bc_color);
  border-collapse: collapse !important;
  border-spacing: 0 !important;
}
tbody {
  width: 100% !important;
  max-width: 100% !important;
}
/* table tr,
table td {
	width: auto !important;
	max-width: 100% !important
} */
table tr,
table td,
table tr p,
table td p {
  margin: 0;
  padding: 0;
}
table td {
  box-sizing: border-box;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
}
table tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.03);
}
.vr_box {
  display: block;
  width: 100%;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  height: 4.6rem;
  background-color: #f4f4f4;
  overflow: hidden;
}
.vr iframe {
  width: 100%;
  height: 100%;
  min-height: 9rem;
  object-fit: contain;
}
body .iti,
div.wpforms-container .wpforms-form .iti,
div.wpforms-container-full .wpforms-form .iti,
#wpforms-conversational-form-page .iti {
  width: 100%;
}

.add_text {
  position: relative;
  overflow: hidden;
}
.add_text .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.add_text .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.add-prev,
.add-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background: rgb(0 0 0 / 60%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.add-prev {
  left: 2%;
  background: url("static/images/public/arrow_left_hollow_bai2.svg") no-repeat
    center;
  background-size: 22px;
}
.add-next {
  right: 2%;
  background: url("static/images/public/arrow_right_hollow_bai2.svg") no-repeat
    center;
  background-size: 22px;
}
.add_text .swiper-button-disabled {
  cursor: not-allowed;
}

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

.add_text li {
  color: #222;
  font-size: 0.18rem;
  line-height: 170%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-direction: column;
}
.add_text .txt {
  -webkit-border-radius: 0.2rem;
  border-radius: 0.2rem;
  background-color: #fff;
  padding: 0.3rem 0.2rem;
  margin: 0.2rem 0;
}
.add_text p {
  line-height: 180%;
  margin-bottom: 0.2rem;
}
.add_text h5 {
  color: var(--i_color);
  margin-bottom: 0.1rem;
  font-size: 0.2rem;
  font-weight: bold;
}
.add_text h6 {
  font-size: 0.16rem;
  line-height: 170%;
  font-weight: normal;
}

@media screen and (max-width: 1366px) {
  .add_text .txt {
    padding: 0.2rem 0.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .add-prev,
  .add-next {
    display: none;
  }
  .add_text h5 {
    font-size: 0.2rem;
  }
  .add_text h6 {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .add-pagination {
    display: block;
    margin-top: 0.22rem;
  }
  .add_text h5 {
    font-size: 0.18rem;
  }
  .add_text h6 {
    font-size: 0.14rem;
  }
}

.welcome .i_tit h6 {
  width: 80%;
  margin: 0.2rem auto;
}
.welcome_text {
  position: relative;
  overflow: hidden;
}
.welcome_text .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.welcome_text .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.wel-prev,
.wel-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background: rgb(0 0 0 / 60%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.wel-prev {
  left: 2%;
  background: url("static/images/public/arrow_left_hollow_bai2.svg") no-repeat
    center;
  background-size: 22px;
}
.wel-next {
  right: 2%;
  background: url("static/images/public/arrow_right_hollow_bai2.svg") no-repeat
    center;
  background-size: 22px;
}
.welcome_text .swiper-button-disabled {
  cursor: not-allowed;
}

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

.welcome_text li {
  color: #333;
  background-color: #fff;
  padding: 0.3rem 0.2rem;
  -webkit-border-radius: 0.3rem;
  border-radius: 0.3rem;
  border: 1px solid transparent;
}

.welcome_text h5 {
  margin-bottom: 0.1rem;
  font-size: 0.18rem;
  font-weight: bold;
}
.welcome_text h6 {
  font-size: 0.14rem;
  line-height: 170%;
}

.welcome_text li:hover,
.welcome_text li.swiper-slide-active {
  border-color: var(--i_color);
}
.welcome_text li:hover h5,
.welcome_text li.swiper-slide-active h5 {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .wel-prev,
  .wel-next {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .wel-pagination {
    display: block;
    margin-top: 0.22rem;
  }
}

.overtxt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.n_share {
  display: none;
}
.n_tit_time > p::before {
  display: none;
}
.n_tit_time > p {
  margin-right: 0;
  padding-right: 0;
}
