/*
Theme Name: GuangDe
Version: 1.0
Description: 安徽领聚数字作为Google中国区核心合作伙伴,拥有安徽省唯一的一家Google出海体验中心,为安徽本土化外贸企业出海提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：安徽领聚
*/
@charset "utf-8";

.wrap {
	width: 78%;
	margin-left: auto;
	margin-right: auto;
}

.wrap_top {
	width: 92%;
	margin: 0 auto
}

@media screen and (max-width:1600px) {
	.wrap {
		width: 88%
	}
}
@media screen and (max-width:1440px) {
	.wrap {
		width: 90%
	}
}
@media screen and (max-width:1366px) {
	.wrap_top {
		width: 96%;
	}
}
@media screen and (max-width:1024px) {
	.wrap {
		width: 94%
	}
	.wrap_top {
		position: initial;
	}
}


:root {
	--i_color: #BA71BE;
	/* 全局颜色 */
	--i_color2: #8985DE;
	/* 副颜色 */
	--i_color3: #E97597;
	--header_height: 1rem;
	/* 头部高度 */
	--border_color: rgba(0, 0, 0, .1);
	/* 默认边框颜色 */
	--f_menu_height: 50px;
	/* 移动端底部菜单 */
}

@media screen and (max-width:1024px) {
	:root,
	header {
		--header_height: .6rem;
	}
}
@media screen and (max-width:768px) {
	:root {
		--border_color: rgba(0, 0, 0, .06)
	}
}

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

.top_cont {
	position: relative;
	background: #FFF;
	z-index: 2013;
}
.top {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}
/* .TopHeader .top_cont {
	background: #222;
} */

@media screen and (max-width:1024px) {
	header {
		top: 0;
		top: 0;
		width: 100%;
		box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
	}
	/* .top_cont {
		background: #333 !important;
	} */
}



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

@media screen and (max-width:1440px) {
	.logo a {
		height: 60%;
	}
}
@media screen and (max-width:1024px) {
	.logo a {
		height: 70%;
	}
}





/* 导航 */
@media screen and (min-width:1025px) {
	.i_nav {
		margin-left: auto;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		z-index: 2014;
	}

	.i_nav>li {
		position: relative;
		margin: 0 .26rem;
	}

	.i_nav>li>a {
		display: block;
		font-size: .16rem;
		color: #333;
		line-height: var(--header_height);
		white-space: nowrap;
		-webkit-border-radius: .08rem;
		border-radius: .08rem;
		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,
	.i_nav>li:hover>a,
	.i_nav .curr>a {
		color: var(--i_color) !important;
	}

	.i_nav .sub-menu {
		display: none;
		position: absolute;
		border-top: 2px solid var(--i_color);
		background: rgb(255 255 255 / 100%);
		min-width: 1.6rem;
		overflow: hidden;
	}
	.i_nav .sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu li::before,
	.i_nav .sub-menu li::after {
		content: '';
		position: absolute;
		bottom: 0;
		height: 1px;
	}
	.i_nav .sub-menu li::before {
		left: 0;
		width: 100%;
		background: rgb(0 0 0 / 8%);
	}
	.i_nav .sub-menu li::after {
		right: 0;
		width: 0;
		background: var(--i_color);
	}

	.i_nav .sub-menu a {
		display: block;
		padding: 0 .8rem 0 .2rem;
		font-size: 0.15rem;
		color: #444;
		line-height: 0.44rem;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: relative;
		left: 0;
	}
	.i_nav .sub-menu a::before {
		content: "\f324";
		font-family: "Font Awesome 5 Pro";
		font-weight: 300;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
		left: -.16rem;
		font-size: 0.14rem;
		color: var(--i_color);
	}
	.i_nav .sub-menu li:hover::after {
		right: initial;
		left: 0;
		width: 100%;
	}
	.i_nav .sub-menu li:hover a {
		left: .16rem;
	}
	.i_nav .sub-menu li:hover a {
		color: var(--i_color);
	}
	.i_nav .sub-menu li:hover a::before {
		left: 0;
	}
	.i_nav .sub-menu li,
	.i_nav .sub-menu li::after,
	.i_nav .sub-menu a,
	.i_nav .sub-menu a::before {
		-webkit-transition: all .5s ease;
		transition: all .5s ease
	}

}

@media screen and (max-width:1440px) {
	.i_nav>li {
		margin: 0 .2rem;
	}
}
@media screen and (max-width:1366px) {
	.i_nav>li {
		margin: 0 .16rem;
	}
	.i_nav>li>a {
		font-size: 0.15rem;
	}
}
@media screen and (max-width:1200px) {
	.i_nav>li {
		margin: 0 .14rem;
	}
	.i_nav>li>a {
		font-size: 0.14rem;
	}
}
@media screen and (max-width:1024px) {
	.i_nav {
		display: none;
		position: fixed;
		top: var(--header_height);
		left: 0;
		width: 100%;
		width: 100vw;
		max-height: calc(100vh - var(--header_height));
		background: #FFF;
		overflow-y: auto;
		z-index: 2
	}
	/*滚动条*/
	.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 i {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: .44rem;
		height: .44rem;
		background: #F1F1F1;
	}
	.i_nav>.menu-item-has-children i::before {
		content: '\f107';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 0.26rem;
		color: #222;
	}

	.i_nav>.menu-item-has-children i.on::before {
		content: '\f106';
	}

	.i_nav>li>a {
		padding: 0 .2rem;
		font-size: .15rem;
		color: #222;
		line-height: .44rem;
		text-transform: uppercase;
	}

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

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

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

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

	.i_nav a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis
	}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}






/* 移动端导航按钮 */
.nav_menu {
	/* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
	position: relative;
	width: 22px;
	height: 16px;
	display: none;
	cursor: pointer
}
.nav_menu i {
	display: block;
	width: 100%;
	height: 3px;
	position: absolute;
	top: 50%;
	margin-top: -2px;
	background: #222;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 3px;
	background: #222;
	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
	}

}


.top_r {
	--size: .22rem
}
.top_r {
	margin-left: 0.3rem;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: var(--header_height)
}

.top_search_ico {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: var(--header_height);
	margin-right: 0.3rem;
	position: relative;
}
.top_search_ico::after{
	content: '';
	position: absolute;
	top: 50%;
	right: -0.15rem;
	transform: translate(0,-50%);
	width: 0.01rem;
	height: 0.2rem;
	background-color: #222;
}
.top_search_ico i {
	font-size: var(--size);
	cursor: pointer;
}
.top_search_ico.on i {
	color: var(--i_color);
}


.top_language {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: var(--header_height);
	position: relative;
}
.top_language>i {
	font-size: var(--size);
	cursor: pointer;
}
.top_language.on>i {
	color: var(--i_color);
}


.top_language_list {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(var(--header_height) - .2rem);
	right: 0;
	z-index: 2;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}
.top_language_list.on {
	visibility: visible;
	opacity: 1;
	top: var(--header_height);
	box-shadow: .04rem .06rem .1rem rgb(0 0 0 / 10%);
}

.top_language_list ul {
	overflow: hidden;
}

.top_language_list li {
	background: #FFF;
}
.top_language_list a>span {
	display: block;
	padding: 0 14px;
	min-width: 100px;
	overflow: hidden
}
.top_language_list img,
.top_language_list .trp-ls-language-name {
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
	font-size: .12rem;
	color: #666;
	line-height: .3rem
}

.top_language_list li:hover {
	background: var(--i_color)
}
.top_language_list li:hover .trp-ls-language-name {
	color: #FFF;
}
.top_language,
.top_language>i {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}
@media screen and (max-width:1024px) {
	.top_language {
		margin-left:  .2rem;
	}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}



header,
.top_cont,
.logo,
.logo img,
.i_nav>li,
.i_nav>li>a,
.top_r {
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	-ms-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease
}






/* search main */
.top_search {
	--search_height: .38rem
}
.top_search {
	position: fixed;
	top: -1rem;
	left: 0;
	width: 100%;
	padding: .16rem 0;
	background: #FFF;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 6;
}
.top_search.on {
	top: var(--header_height);
	box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
}
.top_search form {
	width: 80%;
	margin: 0 auto;
	max-width: 5rem;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	overflow: hidden;
}
.top_search_ipt {
	width: calc(100% - var(--search_height));
	height: var(--search_height);
	box-sizing: border-box;
	padding: 0 0 0 .12rem;
}
.top_search_btn {
	font-size: 0;
	width: calc(var(--search_height));
	height: var(--search_height);
	background: var(--i_color) url(static/imgs/search.svg) no-repeat center;
	background-size: .2rem;
	cursor: pointer;
}

@media screen and (max-width:1366px) {
	.top_r {
		margin-left: 0.5rem;
	}
	.top_search_ico {
		margin-right: 0.3rem;
	}
}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.top_r {
		margin-left: auto;
	}
	.top_search_ico {
		margin-right: 0;
	}
}
@media screen and (max-width:768px) {
	.top_search {
		--search_height: .34rem
	}
	.top_search {
		padding: .12rem 0;
	}
}
@media screen and (max-width:560px) {
	.top_search form {
		width: 94%;
	}
	.top_search_btn {}
}


/* 头部 contact按钮 */

.top_contact{
    margin-left: 0.5rem;
}





/* -------------------波浪按钮------------- */
.wave_button{

}
.wave_button a{
	display: block;

}
.wave_button .c-button {
    font-size: 0.18rem;
	color: #fff;
    text-decoration: none;
    cursor: pointer;
    display:block;
    vertical-align: middle;
    position: relative;
	width: 1.5rem;
	height: 0.6rem;
	background: linear-gradient(270deg, #E97597 0%, #8885DE 100%);
	border-radius: 0.5rem;
	overflow: hidden;
    z-index: 1;
}

.wave_button  .c-button--gooey {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    transition: all 700ms ease;
}

.wave_button   .c-button--gooey .c-button__blobs {
    height: 100%;
    filter: url(#goo);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    bottom: -3px;
    right: -1px;
    z-index: -1;
   }

.wave_button   .c-button--gooey .c-button__blobs div {
    background-color:var(--i_color2);
    width: 34%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    transform: scale(1.4) translateY(125%) translateZ(0);
    transition: all 700ms ease;
   }

.wave_button   .c-button--gooey .c-button__blobs div:nth-child(1) {
    left: -5%;
   }

.wave_button  .c-button--gooey .c-button__blobs div:nth-child(2) {
    left: 30%;
    transition-delay: 60ms;
   }

.wave_button  .c-button--gooey .c-button__blobs div:nth-child(3) {
    left: 66%;
    transition-delay: 25ms;
   }

.wave_button   .c-button--gooey:hover {
    color: #fff;
   }

.wave_button  .c-button--gooey:hover .c-button__blobs div {
    transform: scale(1.4) translateY(0) translateZ(0);
}


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

	.top_search_ico::after{display: none;}
	.top_contact{
		margin: 0 0.2rem;
	}
	.wave_button .c-button {height: 0.5rem;}
}
@media screen and (max-width:768px) {

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

}




/* 导航下拉 */
/* products */

@media screen and (min-width:1025px) {
    .drop{
		display: none;
		width: 100%;
		position: fixed;
		top: var(--header_height);
		left: 0;
		background-color: #f5f8fa;
		box-sizing: border-box;
		padding: 0.4rem 0;
		z-index: 99999999;
		border-radius:  0  0 0.4rem 0.4rem;
	}
	.drop_div{
		box-sizing: border-box;
		padding-bottom: 0.2rem;
	}
	.drop_ul{
        display: flex;
		display: -webkit-flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		padding: 0 3% 0.4rem 3%;
		/* overflow: auto; */
		justify-content: center;
	}
    /*滚动条*/
	.drop_ul::-webkit-scrollbar {
		width: 3px;
		height: 3px;
		cursor: pointer;
	}
	.drop_ul::-webkit-scrollbar-thumb {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		background: var(--i_color);
		cursor: pointer;
	}
	.drop_ul::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		border-radius: 0;
		background: #F1F1F1;
		cursor: pointer;
	}
	.drop_ul::-webkit-scrollbar:hover{
		height: 4px;
	}
	.drop_ul li{
		width: 2.25rem;
		min-width:2.25rem;
		margin-right: 3%;
	}
	.drop_ul li:last-child{
		margin-right: 0;
	}
	.drop_ul li a{
		display: block;
		width: 100%;

	}
	.drop_img{
		width: 100%;
		position: relative;
		overflow: hidden;
		border-radius: 0.2rem;
	}
	.drop_img::after{
		content: '';
		display: block;
		padding-bottom: 100%;
	}
	.drop_img::before{
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.2);
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: 2;
		opacity: 0;
		transition: all 0.3s ease;
	}
	.drop_img img{
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		height: 100%;
		transform: translate(-50%,-50%);
		object-fit: cover;
		transition: all 0.3s ease;
	}
	.drop_ul h2{
		display: inline-block;
		font-size: 0.15rem;
		color: #222222;
		text-transform: uppercase;
		text-align: center;
		position: relative;
		padding: 0.2rem 0 0.1rem 0;
		margin:  0 auto;
	}
	.drop_ul h2::after{
		content: " ";
		width: 0%;
		height: 0.01rem;
		background: var(--i_color2);
		position: absolute;
		transition: all 0.4s ease-in-out;
		right: 0;
		bottom: 0;
	}
	.drop_ul li:hover h2::after{
		right: auto;
		left: 0;
		width: 100%;
	}
	.drop_text{
		display: flex;
		display: -webkit-flex;
		justify-content: center;
	}
    .drop_ul li:hover img{
        width: 110%;
		height: 110%;
	}
	.drop_ul li:hover .drop_img::before{
		opacity: 1;
	}
	/* 3个点 */
    .post-image-mask {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		text-align: center;
		font-size: 0;
		transition: 0.6s all;
		z-index: 3;
	}
	.post-image-mask span, .post-image-mask:after, .post-image-mask:before {
		display: inline-block;
		margin-right: 7px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background-color: #FFF;
		vertical-align: middle;
		opacity: 0;
		transition: opacity .2s ease;
		-webkit-animation: wd-fadeOutRight .3s ease;
		animation: wd-fadeOutRight .3s ease;
	}
	.post-image-mask:before {
		content: '';
		transition-delay: .15s;
		-webkit-animation-delay: .15s;
		animation-delay: .15s;
	}
	.drop_ul li:hover .post-image-mask span, .drop_ul li:hover .post-image-mask:after, .drop_ul li:hover .post-image-mask:before {
		opacity: 1;
		-webkit-animation: wd-fadeInLeft .3s ease;
		animation: wd-fadeInLeft .3s ease;
	}
	.drop_ul li:hover .post-image-mask:before {
		transition-delay: .2s;
		-webkit-animation-delay: .2s;
		animation-delay: .2s;
	}
	.drop_ul li:hover .post-image-mask span {
		transition-delay: .1s;
		-webkit-animation-delay: .1s;
		animation-delay: .1s;
	}
	.post-image-mask:after {
		content: '';
		margin-right: 0;
	}
    @-webkit-keyframes wd-fadeOutRight{from{-webkit-transform:none;transform:none}to{-webkit-transform:translate3d(50px,0,0);transform:translate3d(50px,0,0)}}@keyframes wd-fadeOutRight{from{-webkit-transform:none;transform:none}to{-webkit-transform:translate3d(50px,0,0);transform:translate3d(50px,0,0)}}
	@-webkit-keyframes wd-fadeOutLeft{from{-webkit-transform:none;transform:none}to{-webkit-transform:translate3d(-50px,0,0);transform:translate3d(-50px,0,0)}}@keyframes wd-fadeOutLeft{from{-webkit-transform:none;transform:none}to{-webkit-transform:translate3d(-50px,0,0);transform:translate3d(-50px,0,0)}}
	@-webkit-keyframes wd-fadeInLeft{from{-webkit-transform:translate3d(-50px,0,0);transform:translate3d(-50px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes wd-fadeInLeft{from{-webkit-transform:translate3d(-50px,0,0);transform:translate3d(-50px,0,0)}to{-webkit-transform:none;transform:none}}

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

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

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

	}
	@media screen and (max-width:1200px) {
		.drop_ul li{margin-right: 2%;}
	}

}

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







/* banner */
.banner {
	position: fixed;
	top: var(--header_height);
	left: 0;
	width: 100%;
	height: calc(100vh - var(--header_height));
	-webkit-border-radius: 0 0 1rem 1rem;
	border-radius: 0 0 1rem 1rem;
	overflow: hidden;
}
.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 {
	height: 0;
	padding-bottom: calc(100vh - var(--header_height));
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-shrink: 0;
	position: relative;
	overflow: hidden
}
.banner .swiper-slide>img,.banner .swiper-slide video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}


.banner-button-prev,
.banner-button-next {
	position: absolute;
	top: 48%;
	transform: translate(0, -50%);
	width: .5rem;
	height: .5rem;
	background: rgb(0 0 0 / 30%);
	z-index: 999;
	outline: none;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	-webkit-border-radius: .05rem;
	border-radius: .05rem;
	overflow: hidden;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}
.banner-button-prev {
	left: -.6rem;
}
.banner-button-next {
	right: -.6rem;
}
.banner-button-prev i,
.banner-button-next i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.24rem;
	color: #FFF;
}
.banner:hover .banner-button-prev {
	left: .3rem
}
.banner:hover .banner-button-next {
	right: .3rem
}
.banner-button-prev:hover,
.banner-button-next:hover {
	background-color: var(--i_color2)
}


.banner-pagination {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: .4rem;
	width: auto;
	cursor: pointer;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	z-index: 3;
}

.banner-pagination .swiper-pagination-bullet {
	display: block;
	width: .5rem;
	height: 2px;
	margin: 0 .08rem;
	background: rgb(255 255 255 / 50%);
	position: relative;
	outline: none
}
.banner-pagination .swiper-pagination-bullet-active::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--i_color);
}
.banner-pagination .swiper-pagination-bullet-active::before {
	-webkit-animation: w100 8000ms 1;
	animation: w100 8000ms 1;
}
@keyframes w100 {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

@media screen and (max-width:1024px) {
	.banner {
		margin-top: var(--header_height);
		position: relative;
		top: initial;
		height: auto;
		-webkit-border-radius: 0 0;
		border-radius: 0 0;
	}
	.banner .swiper-slide {
		padding-bottom: 43.23%
	}

	.banner-button-prev,
	.banner-button-next {
		display: none
	}
	.banner-pagination .swiper-pagination-bullet {
		width: 0.4rem;
	}
}
@media screen and (max-width:768px) {
	/* .banner .swiper-slide {
		padding-bottom: 64%
	} */
	.banner-pagination {
		bottom: 0.3rem;
	}
}
@media screen and (max-width:560px) {
	.banner-pagination {
		bottom: 0.2rem;
	}
	.banner-pagination .swiper-pagination-bullet {
		width: 0.3rem;
		margin: 0 .05rem;
	}
}






.fullMask {
	width: 100%;
	height: 100vh;
}
.fullMask_about{
	width: 100%;
	height: 86.6vh;
}
@media screen and (max-width:1024px) {
	.fullMask,.fullMask_about{
		display: none;
	}
}

/* banner 文字 */
.banner1_text{
    position: absolute;
	top: 43%;
    left: 50%;
	transform: translate(-50%,-50%);

}
.banner1_text_box{
	width: 68%;

}
.banner1_text_box h3{
   font-size: 0.46rem;
   color: #fff;
   font-weight: bold;
   text-transform: capitalize;
   position: relative;
   z-index: 2;
   box-sizing: border-box;
   padding-bottom: 0.7rem;
   line-height: 150%;
   margin-bottom: 0.7rem;
}
.banner1_text_box h3::after{
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 1.4rem;
   height: 0.03rem;
   background-color: #fff;
}
.banner1_text_box h3::before{
   content: '';
   position: absolute;
   top: -0.58rem;
   left: -0.58rem;
   width: 2.83rem;
   height: 2.38rem;
   background: url('static/imgs/banner1_s.png') center no-repeat;
   background-size: contain;
   z-index: -1;

}
.banner1_text_box h4{
   font-size: 0.28rem;
   color: #fff;
   margin-bottom: 0.3rem;

}
.banner1_text_ul{
   display: flex;
   flex-direction: column;
   gap: 0.2rem;
   align-items: flex-start;
}
.banner1_text_ul li{
   display: inline-block;
   box-sizing: border-box;
   padding: 0.1rem 0.2rem 0.1rem 0.3rem;
   font-size: 0.24rem;
   color: #fff;
   background: linear-gradient(270deg, #E97597 0%, #8885DE 100%);
   border-radius: 1.2rem;
   position: relative;
}
.banner1_text_ul li::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 0.15rem;
	transform: translateY(-50%);
	width: 0.08rem;
	height: 0.08rem;
	background-color: #fff;
	border-radius: 50%;
}

.banner2_text{
	position: absolute;
	top: 40%;
    left: 50%;
	transform: translate(-50%,-50%);
}
.banner2_text_box{

}
.banner2_text_box h3{
   font-size: 0.46rem;
   color: #333;
   font-weight: bold;
   text-transform: uppercase;
}
.banner2_text_box h4{
	font-size: 0.46rem;
	color: #333;
	font-weight: bold;
	text-transform: capitalize;
	margin: 0.3rem 0 0.5rem 0;
}
.banner2_text_box h5{
   font-size: 0.28rem;
   line-height: 140%;
   color: #333;
}
.banner2_text_box h6{
	font-size: 0.28rem;
	line-height: 140%;
	color: #333;
	margin-top: 0.2rem;
}

.banner3_text{
	position: absolute;
	top: 47%;
    left: 50%;
	transform: translate(-50%,-50%);
}
.banner3_text_box{
   display: flex;
   flex-direction: column;
   align-items: center;
}
.banner3_text_box h3{
   font-size: 0.46rem;
   color: #fff;
   text-transform: uppercase;
   font-weight: bold;
}
.banner3_text_txt{
   box-sizing: border-box;
   padding: 0.2rem;
   background: linear-gradient(270deg, rgba(136, 133, 222, 0) 0%, #8885DE 50%, rgba(136, 133, 222, 0) 100%);
   width: 100%;
   margin: 0.3rem 0 0.6rem 0;
}
.banner3_text_txt h4{
	font-size: 0.46rem;
	color: #fff;
	text-transform: capitalize;
	font-weight: bold;
	text-align: center;
}
.banner3_text_txt h5{
    font-size: 0.28rem;
	color: #fff;
	text-align: center;

}
.banner3_text_ul{
    display: flex;
	gap: 0.7rem;

}
.banner3_text_ul li{

}
.banner3_text_ul li img{
    width: 4.13rem;
}





@media screen and (max-width:1440px){
	.banner1_text_box h3 {
		font-size: 0.4rem;
		padding-bottom: 0.6rem;
		margin-bottom: 0.6rem;
	}
	.banner2_text_box h3,
	.banner2_text_box h4{
		font-size: 0.4rem;
	}
	.banner2_text_box h5,
	.banner2_text_box h6{
		font-size: 0.25rem;
	}
	.banner2_text_box h4 {
		margin: 0.2rem 0 0.4rem 0;
	}
	.banner2_text_box h6{
		margin-top: 0.15rem;
	}
	.banner3_text_box h3,
	.banner3_text_txt h4{
		font-size: 0.4rem;
	}
	.banner3_text_txt h5{
		font-size: 0.25rem;
	}
	.banner3_text_ul {
		gap: 0.5rem;
	}
	.banner3_text_ul li img {
		width: 3.5rem;
	}
}
@media screen and (max-width:1200px){
	.banner1_text_box h3 {
		font-size: 0.3rem;
		padding-bottom: 0.4rem;
		margin-bottom: 0.4rem;
	}
	.banner1_text_box h3::before {
		top: -0.5rem;
		left: -0.4rem;
		width: 2.53rem;
		height: 2.08rem;
	}
	.banner2_text_box h3,
	.banner2_text_box h4{
		font-size: 0.35rem;
	}
	.banner2_text_box h5,
	.banner2_text_box h6{
		font-size: 0.22rem;
	}
	.banner3_text_box h3,
	.banner3_text_txt h4{
		font-size: 0.35rem;
	}
	.banner3_text_txt h5{
		font-size: 0.22rem;
	}
	.banner3_text_ul {
		gap: 0.2rem;
	}
	.banner3_text_ul li img {
		width: 3rem;
	}
	.banner3_text_txt {
		margin: 0.2rem 0 0.4rem 0;
	}
}
@media screen and (max-width:1024px){
	.banner1_text_ul{
		display: none;
	}
	.banner1_text_box h4 {
		font-size: 0.2rem;
		margin-bottom: 0rem;
	}
	.banner2_text_box h3,
	.banner2_text_box h4{
		font-size: 0.3rem;
	}
	.banner2_text_box h5,
	.banner2_text_box h6{
		font-size: 0.2rem;
	}
	.banner3_text_box h3,
	.banner3_text_txt h4{
		font-size: 0.3rem;
	}
	.banner3_text_txt h5{
		font-size: 0.2rem;
	}
}
@media screen and (max-width:767px){
	.banner1_text_box h3 {
		font-size: 0.25rem;
		line-height: 120%;
		padding-bottom: 0.2rem;
		margin-bottom: 0.2rem;
	}
	.banner1_text_box h3::before {
		top: -0.5rem;
		left: -0.4rem;
		width: 2rem;
		height: 1.5rem;
	}
	.banner2_text_box h3,
	.banner2_text_box h4{
		font-size: 0.25rem;
	}
	.banner2_text_box h5,
	.banner2_text_box h6{
		font-size: 0.18rem;
	}
	.banner2_text_box h4 {
		margin: 0.2rem 0;
	}
	.banner2_text_box h6{
		margin-top: 0.1rem;
	}
	.banner3_text_box h3,
	.banner3_text_txt h4{
		font-size: 0.25rem;
		text-align: center;
	}
	.banner3_text_txt h5{
		font-size: 0.18rem;
	}
	.banner3_text_ul li img {
		width: 2rem;
		margin-top: 0.2rem;
	}
	.banner3_text_txt {
		display: none;
	}
}
@media screen and (max-width:560px){
	.banner1_text_box h3 {
		font-size: 0.2rem;
	}
	.banner2_text_box h3,
	.banner2_text_box h4{
		font-size: 0.2rem;
	}
	.banner2_text_box h5,
	.banner2_text_box h6{
		display: none;
	}
	.banner3_text_ul li img {
		width: 1rem;
	}
	.banner3_text_box h3,
	.banner3_text_txt h4{
		font-size: 0.2rem;
	}
}
@media screen and (max-width:425px){

}




/* main */
main {
	position: relative;
	padding-bottom: 1rem;
	background: #FFF;
	z-index: 5;
	max-width: 100%;

}

/* --------------------home ------------------------------*/


/* home_product */
.home_product_area{
    box-sizing: border-box;
	padding: 0.7rem 0;
}


/* 标题 */
.title{
   display: flex;
   display: -webkit-flex;
   flex-direction: column;
   align-items: center;
}
.title p{
   font-size: 0.38rem;
   font-weight: bold;
   color: #222;
   text-transform: uppercase;
   box-sizing: border-box;
   padding-bottom: 0.1rem;
   text-align: center;
   position: relative;
}
.title p::after{
	content: '';
	position: absolute;
	width: 0.8rem;
	height: 0.04rem;
	background: linear-gradient(270deg, #E97597 0%, #8885DE 100%);
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 3;
}

.title_img img{
	display: block;
	width: 0.48rem;
	height: 0.39rem;
	margin-top: -0.05rem;
	position: relative;
	z-index: 2;
}
.title_img{
	position: relative;
}
.title_img::after{
	content: '';
	position: absolute;
    top: 0px;
	left: 50%;
	transform: translate(-50%,0);
    width: 1.4rem;
    height: 1rem;
    clip-path: polygon(50% 0%, 25% 100%, 75% 100%);
    background: transparent;

	z-index: 1;
}
.service .title_img img{
	background-color: #F4F4F4;
}
.hot_products_area .title_img img{
	background-color: #F4F4F4;
}


.home_product_area:hover .title .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.home_grid_area:hover .title .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.home_news:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.home_partner:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.about_us:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.about_advantage_area:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.about_certifcate:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.about_environment:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.contact_us:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.download:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.news_area:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.service:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.hot_products_area:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}
.our_advantage:hover .title_img::after{
	animation: light 1.4s ease-in-out forwards;
}



@keyframes light{
	0%{
		background: linear-gradient(180deg, #5BC1F2 0%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%);
	}
	20%{
		background: transparent;
	}
	30%{
		background: linear-gradient(180deg, #5BC1F2 0%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%);
	}
	38%{
		background: transparent;
	}
	45%{
		background: linear-gradient(180deg, #5BC1F2 0%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%);
	}
	50%{
		background: transparent;
	}
	53%{
		background: linear-gradient(180deg, #5BC1F2 0%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%);
	}
	65%{
		background: transparent;
	}
	100%{
		background: linear-gradient(180deg, #5BC1F2 0%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%);
	}
}

.home_product{
	margin-top: 0.6rem;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	gap: 0.38rem 0;
}
.home_product_ul{
    display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.home_product_ul2{
	flex-direction: row-reverse;
}
.home_product_ul li{
	width: 23.05%;
}
.home_product_ul li:nth-child(1){
    width:48.65%;

}

.home_product_ul li a{
	display: block;
	width: 100%;
	position: relative;
	border-radius: 25px;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid #E2E2E2;
}
.home_product_ul li a::after{
	content: '';
	display: block;
	padding-bottom: 103.2%;
}
.home_product_ul li:nth-child(1) a::after{
    content: '';
	display: block;
	padding-bottom: 49%;
}
.home_product_ul li a img{
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100.5%;
	height: 100.5%;
	object-fit: cover;
}
.home_product_ul .home_product_text1{
    position: absolute;
	top: 40%;
    left: 9%;
	width: 40%;
}
.home_product_text1 h2{
    font-size: 0.24rem;
	font-weight: bold;
	color: var(--i_color);
	box-sizing: border-box;
	padding-top: 0.2rem;
	position: relative;
	text-transform: uppercase;
}
.home_product_text1 h2::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0.74rem;
	height: 0.04rem;
	background: linear-gradient(270deg, #E97597 0%, #8885DE 100%);
	border-radius: 0.25rem;
}
.home_product_text1 h3{
	font-size: 0.16rem;
	color: #474747;
	margin: 0.2rem 0 0.3rem 0;
}
.home_product_text1 i{
	display: block;
	width: 0.34rem;
	height: 0.34rem;
	background: url('static/imgs/right_black.png') center no-repeat;
	background-size: cover;
}

.home_product_text2{
    position: absolute;
	top: 12%;
	left: 50%;
	transform: translate(-50%,0);
	width: 94%;
}
.home_product_text2 h2{
    font-size: 0.24rem;
	color: var(--i_color);
	text-transform: uppercase;
	text-align: center;

}
.home_product_text2 i{
    display: block;
	width: 0.34rem;
	height: 0.34rem;
	background: url('static/imgs/right_black.png') center no-repeat;
	background-size: cover;
	margin: 0 auto;
	margin-top: 0.2rem;
}

.home_product_text3{
    top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	align-items: center;
}
.home_product_text3 h3{
    width: 0.7rem;
	height: 0.7rem;
	background: url('static/imgs/man.png') center no-repeat;
	background-size: contain;
}
.home_product_text3 h2{
	color: white;
	margin-top: 0.2rem;
}
.home_product_text3 i{
	background: url('static/imgs/right_white.png') center no-repeat;
	background-size: cover;
}
.home_product_ul li:hover .home_product_text3 i{
	background: url('static/imgs/right_white.png') center no-repeat ;
	background-size: cover;
}


.home_product_ul i::before {
    content: '';
    position: absolute;
	left: 50%;
    top: 50%;
	transform: translate(-50%,-50%);
    border: 1px solid var(--i_color);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
}
.home_product_ul i{
	position: relative;
}
.home_product_ul i::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-50%,-50%);
    border: 1px solid var(--i_color);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
}



.home_product_ul li:hover i::before {
    animation: serv_one_border .9s 0s ease infinite;
}
.footer_ul li:hover i::after {
    animation: serv_one_border 1.5s 0s ease infinite;
}


@keyframes serv_one_border{
	0% {
		opacity: 0
	}
	5% {
		opacity: 1
	}
	80% {
		opacity: 0
	}
	100% {
		opacity: 0;
		transform:translate(-50%,-50%) scale(1.6);
	}
}


.home_product_one h2,
.home_product_one h3{
	color: #FFF;
}

.home_product_one .home_product_text1 h2::after{
	background: #fff !important;
}
.home_product_text1 i{
	filter: brightness(0) invert(1);
}





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

}
@media screen and (max-width:1440px) {
	.home_product_ul .home_product_text1 {top: 35%;}
	main {
		padding-bottom: 0.8rem;
	}
}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {
	.home_product_ul .home_product_text1 {top: 25%;}
	main {
		padding-bottom: 0.6rem;
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {
	.home_product_ul .home_product_text1 {top: 13%;}
	.home_product_text1 h3 {margin: 0.1rem 0 0.2rem 0;}
	.home_product_ul .home_product_text1 {left: 5%;width: 90%;}
}
@media screen and (max-width:767px) {
	.home_product_ul li:nth-child(1) {width: 100%;}
	.home_product_ul li {width: 49%;margin-top: 0.2rem;}
	.home_product_ul li:nth-child(1){margin-top: 0;}
	.home_product {gap: 0.2rem 0;}
}
@media screen and (max-width:560px) {

}
@media screen and (max-width:425px) {
	.home_product_text1 h3 br{display: none;}
}




/* home_about */
.home_about_area{
	background: url('static/imgs/home_about.webp') center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	box-sizing: border-box;
	padding: 0.9rem 0 1.2rem 0;

}
.home_about{
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	align-items: center;
}
.home_about h2{
    font-size: 0.4rem;
	color: white;
	text-align: center;
	font-weight: bold;
}
.home_about h3{
	font-size: 0.24rem;
	color: white;
	text-transform: uppercase;
	text-align: center;
	margin: 0.2rem 0 0.4rem 0;
}
.home_about i{
	display: block;
    width: 0.5rem;
    height: 0.5rem;
    background: url(static/imgs/video.png) center no-repeat;
    background-size: 100% 100%;
    position: relative;
	cursor: pointer;
}
.home_about i::before {
    content: '';
    position: absolute;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    background-color: rgba(255, 255, 255, 0.2);
    animation: yuans 1.8s ease-in-out infinite;
}

.home_about i::after {
    content: '';
    position: absolute;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    background-color: rgba(255, 255, 255, 0.3);
    animation: yuan 1s ease-in-out infinite;
}
@keyframes yuan{
	0%{
		width: 110%;
		height: 110%;
	}
	50%{
		width: 120%;
		height: 120%;
	}
	100%{
		width: 110%;
		height: 110%;
	}
}
@keyframes yuans{
	0%{
		width: 130%;
		height: 130%;
	}
	50%{
		width: 150%;
		height: 150%;
	}
	100%{
		width: 130%;
		height: 130%;
	}
}


.home_about_text{
   display: flex;
   display: -webkit-flex;
   flex-wrap: wrap;
   margin-top: 0.7rem;
}
.home_about_left{
   width: 55%;
   box-sizing: border-box;
   padding: 0.66rem 4%;
   position: relative;
   border: 1px solid rgba(255, 255, 255, 0.2);
}

.home_about_right{
   width: 45%;
}
.home_about_left h4{
   font-size: 0.36rem;
   color: white;
   font-weight: bold;
   text-transform: uppercase;
   box-sizing: border-box;
   padding-bottom: 0.1rem;
   position: relative;
   margin-bottom: 0.25rem;
}
.home_about_left h4::after{
	content: '';
	width: 0.8rem;
	height: 0.04rem;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(270deg, #E97597 0%, #8885DE 100%);
}
.home_about_left h5{
   font-size: 0.16rem;
   line-height: 0.24rem;
   color: white;
   margin-bottom: 0.3rem;
}
.home_btn{

}
.home_btn a{
	display: inline-block;
	font-size: 0.16rem;
	color: white;
	box-sizing: border-box;
	padding: 0.12rem 0.52rem;
	border-radius: 0.5rem;
	border: 1px solid var(--i_color);
	transition: all 0.3s ease;
}
.home_btn a:hover{
	background-color: var(--i_color2);
	border: 1px solid var(--i_color2);
}
.home_about_right{
    display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	gap: 0.2rem 0;
}
.home_about_right li{
    width:calc((100% - 0.4rem) / 2);
	background-color: rgba(255, 255, 255, 0.3);
	box-sizing: border-box;
	height: calc((100% - 0.2rem) / 2);
	margin-left: 0.2rem;
	padding: 0 0.4rem;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	justify-content: center;
	transition: all 0.3s ease;
}
.home_about_right h6{
    font-size: 0.18rem;
	color: white;
	margin-bottom: 0.1rem;
}
.home_about_p{
    display: flex;
	display: -webkit-flex;
    align-items: center;
}
.home_about_p p{
    font-size: 0.64rem;
	font-weight: bold;
	color: white;
}
.home_about_p span{
	font-size: 0.64rem;
	font-weight: bold;
	color: white;
}
.home_about_right li:hover{
	backdrop-filter: blur(3px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


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

}
@media screen and (max-width:1440px) {
	.home_about_right li {padding: 0 5%;}
	.home_about_p p,.home_about_p span {font-size: 0.6rem;}
}
@media screen and (max-width:1366px) {

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

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

}
@media screen and (max-width:960px) {
	.home_about_left {width: 100%;}
	.home_about_right{
		width: 100%;
		margin-top: 0.2rem;

	}
	.home_about_right li {
		padding: 0.4rem 5%;
		margin-left: 0rem;
		width: calc((100% - 0.2rem) / 2);
	}
	.home_about_right {
		justify-content: space-between;
	}
}
@media screen and (max-width:767px) {

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

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

}




/* home_grid */
.home_grid_area{
	box-sizing: border-box;
	padding: 0.8rem 0;
	background-color: #EEEEEE;
}
.home_grid .title_img img{
    background-color:#EEEEEE ;
}
.home_grid_all{

}
.home_btn_buld{

}
.home_btn_center{
	display: flex;
	display: -webkit-flex;
	justify-content: center;
}
.home_btn_buld a{
    background-color: var(--i_color);
	color: white;
	transition: all 0.3s ease;
}
.home_btn_buld a:hover{
	background-color: var(--i_color2);
	border: 1px solid var(--i_color2);
}
/* 合作伙伴 */
.grid_partner_box{
	box-sizing: border-box;
	padding: 1rem 0 0.5rem 0;
	max-width: 100%;
	overflow: hidden;
}

.grid_partner{position:relative}
.grid_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.grid_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.grid_partner_list .swiper-slide{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	opacity: 0.5;
	transition: 0.4s cubic-bezier(0.5, 0, .25, 1);
}
.grid_partner_list .swiper-slide a{
	display: block;
	width: 100%;
}
.grid_partner_list .img{width:100%;box-sizing:border-box; border-radius: 0.25rem; position:relative; overflow:hidden;transition: 0.4s cubic-bezier(0.5, 0, .25, 1);}
.grid_partner_list .img:before{content:""; display:block; padding-bottom:100%}
.grid_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover;}

.grid_partner_list .swiper-slide-active{
	opacity: 1;
}
.grid_partner_list .swiper-slide-prev,.grid_partner_list .swiper-slide-next{
	opacity: 1;
}


.grid_partner_list .swiper-slide-active .img{
	border-radius: 50%;
}
.grid_partner_list .swiper-slide-active .img img{
	width: 105%;
	height: 105%;
	transition-delay: 0.5s;
}
.grid_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}
.grid_partner_list h2{
	font-size: 0.2rem;
	color: #222;
	box-sizing: border-box;
	padding: 0.2rem 2%;
	text-align: center;
	overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}









/* 指示器 */
.grid_partner .pt-pagination{display:none; text-align:center; margin:20px auto 0}
.grid_partner .pt-pagination .swiper-pagination-bullet{width:0.12rem; height:0.12rem; display:inline-block; margin:0 5px; background:#BBB; -webkit-border-radius:50%; -moz-border-radius:50%; -o-border-radius:50%; border-radius:50%; outline:none}
.grid_partner .pt-pagination .swiper-pagination-bullet-active{position:relative; background:var(--i_color)}

/* 左右箭头 */
.grid_partner .pt-button-prev, .grid_partner .pt-button-next{position:absolute; top:50%; transform:translate(0,-50%); width:0.5rem; height:0.5rem;border-radius: 50%; background:rgba(0,0,0,.3); z-index:999; cursor:pointer; outline:none;transition: all 0.3s ease;}
.grid_partner .pt-button-prev:before, .grid_partner .pt-button-next:before{
	position:absolute;
	top:50%;
	left:50%;
	font-size:0.3rem;
	line-height:0.5rem;
	color:#FFF;
	font-family:-apple-system, simsun, system-ui, sans-serif;
	letter-spacing:-2px;
    -ms-transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}
.grid_partner .pt-button-prev{left:-6%}
.grid_partner .pt-button-prev:before{content:"<"}
.grid_partner .pt-button-next{right:-6%}
.grid_partner .pt-button-next:before{content:">"}


.grid_partner .pt-button-prev:hover, .grid_partner .pt-button-next:hover{
	background-color: var(--i_color2);
}

.grid_partner:hover .pt-button-prev{
	left: 6%;
}
.grid_partner:hover .pt-button-next{
	right: 6%;
}


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

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

}
@media screen and (max-width:1200px){
	.grid_partner .pt-button-prev, .grid_partner .pt-button-next{display:none}
	.grid_partner .pt-pagination{display:block}
	.grid_partner_box {padding: 0.8rem 0 0.5rem 0;}
}
@media screen and (max-width:959px){
	.grid_partner_box {padding: 0.6rem 0 0.5rem 0;}
}
@media screen and (max-width:767px){
	.grid_partner_box {padding: 0.4rem 0;}
}
@media screen and (max-width:560px){
	.pt-pagination{margin:14px auto 0}
	.pt-pagination .swiper-pagination-bullet{width:10px; height:10px}
}


/* home_news */
.home_news{
    box-sizing: border-box;
	padding: 1rem 0 1rem 11%;
	position: relative;
}
.home_news_light{
	position: absolute;
	top: 0;
	left: 11%;

}
.home_news_title{
    display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	padding-right: 11%;
	margin-bottom: 0.7rem;
}
.home_news_title h2{
    font-size: 0.38rem;
	color: #222;
	font-weight: bold;
	box-sizing: border-box;
	padding-bottom: 0.2rem;
	position: relative;
}
.home_news_title h2::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0.8rem;
	height: 0.04rem;
	background-color: var(--i_color2);
}
.home_btn_news a{
	color: var(--i_color);
}
.home_btn_news a:hover{
	color: white;
}

.home_news .title_img img{
	margin-top: 0;
}




/* 合作伙伴 */
.news_partner_box{}

.news_partner{position:relative}
.news_partner_list{width:100%; padding:10px !important;box-sizing: border-box; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.news_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.news_partner_list .swiper-slide{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
}
.news_partner_list .swiper-slide a{
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding:0.6rem 9.5% ;
	background-color: #FEF0FF;
	border-radius: 0.25rem;
	overflow: hidden;
	transition: all 0.3s ease;
}
.news_partner_list .swiper-slide:hover a{

}


.news_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden}
.news_partner_list .img:before{content:""; display:block; padding-bottom:50%}
.news_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}


.news_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}

.news_partner_list h3{
    font-size: 0.18rem;
	color: #474747;
}
.news_partner_list h4{
	font-size: 0.22rem;
	font-weight: bold;
	color: #222;
	line-height: 0.3rem;
	overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 3;
   height: 0.9rem;
   margin: 0.2rem 0;
   transition: all 0.3s ease;
}
.news_partner_list h5{
	font-size: 0.18rem;
	color: white;
	width: 1.4rem;
	height: 0.45rem;
	background-color: var(--i_color);
	border-radius: 0.4rem;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
}
.news_partner_list .swiper-slide:hover h4{
	color: var(--i_color);
}
.news_partner_list .swiper-slide:hover h5{
	background-color: var(--i_color2);
}

/* 指示器 */
.news_partner .pt-pagination{display:none; text-align:center; margin:20px auto 0}
.news_partner .pt-pagination .swiper-pagination-bullet{width:0.12rem; height:0.12rem; display:inline-block; margin:0 5px; background:#BBB; -webkit-border-radius:50%; -moz-border-radius:50%; -o-border-radius:50%; border-radius:50%; outline:none}
.news_partner .pt-pagination .swiper-pagination-bullet-active{position:relative; background:var(--i_color)}

/* 左右箭头 */
.news_partner .pt-button-prev, .news_partner .pt-button-next{position:absolute; top:50%; transform:translate(0,-50%); width:40px; height:50px; background:rgba(0,0,0,.3); z-index:999; cursor:pointer; outline:none}
.news_partner .pt-button-prev:before, .news_partner .pt-button-next:before{
	position:absolute;
	top:50%;
	left:50%;
	font-size:30px;
	line-height:30px;
	color:#FFF;
	font-family:-apple-system, simsun, system-ui, sans-serif;
	letter-spacing:-2px;
    -ms-transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}
.news_partner .pt-button-prev{left:1px}
.news_partner .pt-button-prev:before{content:"<"}
.news_partner .pt-button-next{right:1px}
.news_partner .pt-button-next:before{content:">"}


@media screen and (max-width:1600px){
	.home_news {padding: 1rem 0 1rem 6%;}
	.home_news_light {left: 6%;}
	.home_news_title {padding-right: 6%;margin-bottom: 0.6rem;}
}
@media screen and (max-width:1440px){
	.home_news {padding: 0.8rem 0 0.8rem 5%;}
	.home_news_light {left: 5%;}
	.home_news_title {padding-right: 5%;}
	.news_partner_list .swiper-slide a {padding: 0.5rem 7%;}
	.news_partner_list h5 {font-size: 0.16rem;height: 0.4rem;margin-bottom: 0.4rem;}
}
@media screen and (max-width:1366px){

}
@media screen and (max-width:1200px){
	.news_partner .pt-button-prev, .news_partner .pt-button-next{display:none}
	.news_partner .pt-pagination{display:block}
}
@media screen and (max-width:1024px){
	.home_news {padding: 0.6rem 3% 0.6rem 3%;}
	.home_news_light {left: 3%;}
	.home_news_title {padding-right: 0%;margin-bottom: 0.4rem;}
	.news_partner_list {padding: 0px !important;}
}
@media screen and (max-width:959px){

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

}
@media screen and (max-width:560px){
	.pt-pagination{margin:14px auto 0}
	.pt-pagination .swiper-pagination-bullet{width:10px; height:10px}
}


/* home_partner */
.home_partner{
	box-sizing: border-box;
}
.home_partner_all{
	box-sizing: border-box;
	padding-top: 0.7rem;
}


/* 合作伙伴 */
.par_partner_box{}

.par_partner{position:relative}
.par_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.par_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.par_partner_list .swiper-slide{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
}

.par_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden;border-radius: 0.25rem;}
.par_partner_list .img:before{content:""; display:block; padding-bottom:50%}
.par_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}


.par_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}

/* 指示器 */
.par_partner .pt-pagination{display:block; text-align:center; margin:0.35rem auto 0;cursor: pointer;}
.par_partner .pt-pagination .swiper-pagination-bullet{width:0.12rem; height:0.12rem; display:inline-block; margin:0 5px; background:#BBB; -webkit-border-radius:50%; -moz-border-radius:50%; -o-border-radius:50%; border-radius:50%; outline:none}
.par_partner .pt-pagination .swiper-pagination-bullet-active{position:relative; background:var(--i_color)}

/* 左右箭头 */
.par_partner .pt-button-prev, .par_partner .pt-button-next{position:absolute; top:50%; transform:translate(0,-50%); width:40px; height:50px; background:rgba(0,0,0,.3); z-index:999; cursor:pointer; outline:none}
.par_partner .pt-button-prev:before, .par_partner .pt-button-next:before{
	position:absolute;
	top:50%;
	left:50%;
	font-size:30px;
	line-height:30px;
	color:#FFF;
	font-family:-apple-system, simsun, system-ui, sans-serif;
	letter-spacing:-2px;
    -ms-transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}
.par_partner .pt-button-prev{left:1px}
.par_partner .pt-button-prev:before{content:"<"}
.par_partner .pt-button-next{right:1px}
.par_partner .pt-button-next:before{content:">"}

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

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

}
@media screen and (max-width:1200px){
	.par_partner .pt-button-prev, .par_partner .pt-button-next{display:none}
	.home_partner_all {padding-top: 0.6rem;}
}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){
	.home_partner_all {padding-top: 0.4rem;}
}
@media screen and (max-width:560px){
	.pt-pagination{margin:14px auto 0}
	.pt-pagination .swiper-pagination-bullet{width:10px; height:10px}
}

/* ------------------------------------footer----------------------------- */
:root {
	--purple: rgb(92,194,241);
	--violet: rgb(13,101,181);
	--pink: rgb(32,12,93);
  }

  @keyframes background-pan {
	from {
	  background-position: 0% center;
	}

	to {
	  background-position: -200% center;
	}
  }

  @keyframes scale {
	from, to {
	  transform: scale(0);
	}

	50% {
	  transform: scale(1);
	}
  }

  @keyframes rotate {
	from {
	  transform: rotate(0deg);
	}

	to {
	  transform: rotate(180deg);
	}
  }





  .magic {
	display: inline-block;
	position: relative;
  }

  .magic > .magic-star {
	--size: clamp(0.2rem, 1.5vw, 0.2rem);

	animation: scale 700ms ease forwards;
	display: block;
	height: var(--size);
	left: var(--star-left);
	position: absolute;
	top: var(--star-top);
	width: var(--size);
  }

  .magic > .magic-star > svg {
	animation: rotate 1000ms linear infinite;
	display: block;
	opacity: 0.7;
  }

  .magic > .magic-star > svg > path {
	fill: var(--pink);
  }

  .magic > .magic-text {
	animation: background-pan 3s linear infinite;
	background: linear-gradient(270deg, #E97597 0%, #8885DE 100%);
	background-size: 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	white-space: nowrap;
  }











footer{
	z-index: 5;
    max-width: 100%;
    overflow: hidden;
	position: relative;
	background-color: white;
}
.footer_form{
	box-sizing: border-box;
	border-radius: 1rem  1rem 0 0;
	background-color: #EEEEEE;
	padding: 0.6rem 0 ;
}
.footer_form h2{
	font-size: 0.36rem;
	font-weight: bold;
	color: #222;
	text-align: center;
}
.footer_form h2 ion-icon{
	color: var(--i_color);
	font-size: 0.3rem;
}
.footer_form h3{
	font-size: 0.24rem;
	line-height: 0.3rem;
	color: #474747;
	text-align: center;
	margin: 0.4rem 0 0.5rem 0;
}


#wpforms-43 {

	--input_font_size: 13px;

	--input_height: .46rem;
	margin-bottom: 0;

}

#wpforms-form-43 {

	width: 100%;

	display: -webkit-flex;

	display: flex;

	flex-wrap: nowrap;

	position: relative;

	overflow: hidden

}



#wpforms-43 input,

#wpforms-43 button {

	margin: 0;

	padding: 0;

	border: none;

	background: none

}

#wpforms-43 .wpforms-field {

	padding: 0;

	margin: 0

}

#wpforms-43 .wpforms-field-label {

	font-size: 0;

}

#wpforms-43 .wpforms-required-label {

	position: absolute;

	top: .16rem;

	left: .05rem;

	font-size: .16rem;

	color: #F00

}

#wpforms-43 .wpforms-field {

	width: 100%;

	background: transparent;

	padding-bottom: .18rem;

	position: relative;

	overflow: hidden

}



#wpforms-43 .wpforms-field-container input,

#wpforms-43 textarea {

	width: 100%;

	max-width: 100% !important;

	min-width: 100%;

	font-size: var(--input_font_size);

	color: #333;

	height: var(--input_height);

	box-sizing: border-box;

	background: #FFF;

	padding: 0 .16rem;

	-webkit-border-radius: .25rem;

	border-radius: .25rem;

	overflow: hidden;

	-webkit-transition: all .5s ease;

	transition: all .5s ease

}

#wpforms-43 input {

	line-height: var(--input_height)

}

#wpforms-43 textarea {

	line-height: .22rem;

	min-height: 1rem;

	padding: .06rem .16rem

}



#wpforms-43-field_2-container {

	margin: 0 .2rem !important;

}



#wpforms-43 input::-webkit-input-placeholder,

#wpforms-43 textarea::-webkit-input-placeholder {

	color: rgb(0 0 0 / 40%);

	font-size: var(--input_font_size)

}

#wpforms-43 input::-moz-placeholder,

#wpforms-43 textarea::-moz-placeholder {

	color: rgb(0 0 0 / 40%);

	font-size: var(--input_font_size)

}

#wpforms-43 input::-ms-input-placeholder,

#wpforms-43 textarea::-ms-input-placeholder {

	color: rgb(0 0 0 / 40%);

	font-size: var(--input_font_size)

}

.wp-dark-mode-active #wpforms-43 input::-webkit-input-placeholder,

.wp-dark-mode-active #wpforms-43 textarea::-webkit-input-placeholder {

	color: #BBB;

}

.wp-dark-mode-active #wpforms-43 input::-moz-placeholder,

.wp-dark-mode-active #wpforms-43 textarea::-moz-placeholder {

	color: #BBB;

}

.wp-dark-mode-active #wpforms-43 input::-ms-input-placeholder,

.wp-dark-mode-active #wpforms-43 textarea::-ms-input-placeholder {

	color: #BBB;

}



#wpforms-43-field_1-error,

#wpforms-43-field_2-error,

#wpforms-43-field_3-error,

#wpforms-43-field_4-error,

#wpforms-43-field_5-error,

#wpforms-43-field_6-error {

	position: absolute;

	font-size: 12px;

	color: #A90909;

}



#wpforms-43 .wpforms-field-container {

	width: 100%;

	margin-right: 0.3rem;

	display: -webkit-flex;

	display: flex;

	flex-wrap: nowrap;

	justify-content: space-between;

	overflow: hidden

}

#wpforms-43 .wpforms-submit-container {

	width: 1.8rem;

	height: 100%;

	flex-shrink: 0;

	text-align: center;

	padding: 0;

	overflow: hidden;

	-webkit-border-radius: 2rem;

	border-radius: 2rem;

	position: relative;

}

#wpforms-43 .wpforms-submit-container button {

	width: 100%;

	height: .46rem;

	font-size: .14rem;

	color: #FFF;

	font-weight: bold;

	line-height: .46rem;

	background: var(--i_color);

	cursor: pointer;

	position: relative;

	z-index: 2;
	transition: all 0.3s ease;

}

#wpforms-43 .wpforms-submit-container button:hover {

	background: var(--i_color2)

}

#wpforms-43 .wpforms-submit-container img {

	position: absolute;

	top: 50%;

	transform: translate(0, -50%);

	right: 4px;

	z-index: 2

}



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

	.f_form {

		padding: 0.3rem 0.2rem;

	}



	#wpforms-form-106 {

		flex-wrap: wrap;

	}

	#wpforms-43 .wpforms-field-container {

		margin-right: 0;

		flex-wrap: wrap;

		justify-content: space-between;

	}

	#wpforms-43-field_1-container,

	#wpforms-43-field_2-container {

		width: 49% !important;

		margin: 0 0 !important;

	}

	#wpforms-43 .wpforms-submit-container {

		margin: 0 auto;

	}
	#wpforms-form-43 {

		flex-wrap: wrap;

	}

}

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

	#wpforms-43 {

		--input_font_size: 13px;

		--input_height: .4rem

	}

}

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

	.f_form {

		-webkit-border-radius: .2rem;

		border-radius: .2rem;

	}

	.f_form .i_tit {

		margin-bottom: 0.24rem;

	}

	#wpforms-43-field_1-container,

	#wpforms-43-field_2-container {

		width: 100% !important;

	}

	#wpforms-43 .wpforms-submit-container button {

		height: 0.42rem;

		line-height: 0.42rem;

	}
	.footer_form h3 {
		font-size: 0.2rem;
		margin: 0.3rem 0;
	}
	.footer_form h2 {font-size: 0.3rem;}
	.footer_form{
		border-radius: 0.5rem  0.5rem 0 0;
		padding: 0.4rem 0;
	}
}

.footer_area{
	background: linear-gradient(270deg, #E97597 0%, #8885DE 100%);
	box-sizing: border-box;
	padding-top: 0.6rem;
}
.footer{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding-bottom: 0.3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_left{
	width: 50.3%;
	box-sizing: border-box;
	padding-right: 14%;
}
.footer_left>img{
	width: 2.29rem;
	margin-bottom: 0.1rem;
}
.footer_left_ul{

}
.footer_left_ul li{
    display: flex;
	display: -webkit-flex;
}
.footer_left_ul li img{
    width: 0.24rem;
	min-width: 0.24rem;
	height: 0.24rem;
	object-fit: contain;
	margin-top: 0.05rem;
	margin-right: 0.1rem;
}
.footer_left_ul li a{
	font-size: 0.16rem;
	line-height: 0.36rem;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}
.footer_left_ul li a:hover{
	color: white;
}
.footer_center{
    width: 20.8%;
}
.footer_center h2{
    font-size: 0.26rem;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0.2rem;
}
.footer_center_ul{

}
.footer_center_ul ul{
	display: none !important;
}
.footer_center_ul li{
    margin-bottom: 0.05rem;
	box-sizing: border-box;
	padding-right: 2%;
}
.footer_center_ul li a{
	font-size: 0.16rem;
	line-height: 0.36rem;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}
.footer_center_ul li a:hover{
	color: white;
	border-bottom: 1px solid white;
}
.footer_right{
	width: 28.9%;
}


.footer_right{

}
.footer_right h2{
	font-size: 0.26rem;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0.2rem;
}
.footer_right_ul{
    display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	gap: 0.2rem 0;
}
.footer_right_ul li{
    width: 50%;
	margin-bottom: 0.05rem;
	box-sizing: border-box;
	padding-right: 2%;
}
.footer_right_ul li a{
	font-size: 0.16rem;
	line-height: 140%;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}
.footer_right_ul li a:hover{
	color: white;
	border-bottom: 1px solid white;
}
.footer_right_dl{
    display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	margin-top: 0.8rem;
}
.footer_right_dl dt{
    margin-left: 0.4rem;
}
.footer_right_dl dt a{
    display: block;
}
.footer_right_dl dt a ion-icon{
    font-size: 0.3rem;
	color: rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease;
}
.footer_right_dl dt a ion-icon:hover{
	color: white;
	transform: translateY(-5px);
}

.footer_max{
    display: flex;
	display: -webkit-flex;
	box-sizing: border-box;
	padding: 0.3rem 0;
}
.footer_max p{
    font-size: 0.16rem;
	color: white;
}
.footer_max a{
    font-size: 0.16rem;
	color: white;
}



@media screen and (max-width:1600px) {
	.footer_left {padding-right: 10%;}
}
@media screen and (max-width:1440px) {
	.footer_left {padding-right: 8%;}
}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {
	.footer_left {padding-right: 6%;}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {
	.footer_center{display: none;}
	.footer_right {width: 49.7%;}
	.footer_right_dl {margin-top: 0.6rem;}
}
@media screen and (max-width:767px) {
	.footer_left {width: 100%;padding-right: 0%;}
	.footer_right {width: 100%;margin-top: 0.3rem;}
	.footer_left>img {width: 2rem;}
    .footer_left_ul li{margin-bottom: 0.1rem;}
	.footer_right_dl {margin-top: 0.4rem;}
	.footer_max{
		padding: 0.25rem 0 0.75rem 0;
	}
	.footer_area {
		padding-top: 0.4rem;
	}
}
@media screen and (max-width:560px) {
	.footer_max {
		flex-direction: column;
	}
	.footer_max p{text-align: center;}
	.footer_max a{text-align: center;}
	.footer_right{display: none;}
}
@media screen and (max-width:425px) {

}








/* --------------------------------------about -------------------------------------*/
.about_banner{
	overflow: hidden;
	background-color: white;
	position: fixed;
    top: var(--header_height);
    left: 0;
    width: 100%;
    height: calc(86.6vh - var(--header_height));
    -webkit-border-radius: 0 0 1rem 1rem;
    border-radius: 0 0 1rem 1rem;
    overflow: hidden;
}

.about_banner img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: transform 8s cubic-bezier(0.1,0.2,.7,1);
    transition: transform 8s cubic-bezier(0.1,0.2,.7,1);
}


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

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

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

}
@media screen and (max-width:1024px) {
	.about_banner{
		margin-top: var(--header_height);
		position: relative;
		top: initial;
		height: auto;
	}
	.about_banner::after{
		content: '';
		display: block;
		padding-bottom: 45.5%;
	}
}
@media screen and (max-width:960px) {
	.about_banner{border-radius: 0 0 0.8rem 0.8rem;}
}
@media screen and (max-width:768px) {
	.about_banner{border-radius: 0 0 0.4rem 0.4rem;}

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

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

}






/* 当前位置 */
.in_position{padding:14px 0; background:#fff}
.in_position a{display:block; float:left; font-size:14px; color:#4C4C4C; position:relative; line-height:20px; text-transform:uppercase}
.in_position a:first-child{padding-left:24px; background:url(static/imgs/home_b.svg) no-repeat left center; background-size:16px}
.in_position a:not(:last-child):after{content:">"; margin:0 4px; color:#4C4C4C}
.in_position a:last-child{color:var(--i_color)!important}
.in_position a:hover{color:var(--i_color)}
@media screen and (max-width:959px){
	.in_position a{font-size:15px}
}
@media screen and (max-width:767px){
	.in_position a{font-size:14px}
}
@media screen and (max-width:560px){
	.in_position a{font-size:12px}
}



/* about_us */
.about_us{
	box-sizing: border-box;
	padding: 0.6rem 0 0.9rem 0;
}
.about_us_area{
    margin-top: 0.6rem;
}
.about_us_area h2{
    font-size: 0.36rem;
	font-weight: bold;
	text-transform: uppercase;
	background: url(static/imgs/about_us.webp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: maskedAnimation 12s infinite linear;
    -webkit-background-size: 200% 100%;
}
.about_us_area p{
    font-size: 0.16rem;
	line-height: 0.24rem;
	color: #4C4C4C;
	margin-top: 0.2rem;
}
@keyframes maskedAnimation{
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: -100% 0;
	}
}
.about_us_ul{
    margin-top: 0.6rem;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.about_us_ul li{
    display: inline-block;
	box-sizing: border-box;
	padding: 0.25rem 2%;
	background-color: transparent;
	transition: all 0.3s ease;
	border-radius: 0.18rem;
}
.about_us_ul li:hover{
	background-color: #EAF8FF;
}
.about_us_ul h3{
    font-size: 0.18rem;
	color: #474747;
}
.about_us_div{
    display: flex;
	display: -webkit-flex;
    align-items: flex-end;
}
.about_us_div h4{
    font-size: 0.64rem;
	color: #222;
	font-weight: bold;
	transition: all 0.3s ease;
}
.about_us_div h5{
	font-size: 0.2rem;
	color: #222;
	font-weight: bold;
	transition: all 0.3s ease;

}
.about_us_ul li:hover h4,.about_us_ul li:hover h5{
	color: var(--i_color);
	background: url(static/imgs/about_us.webp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about_us_active h4,.about_us_active h5{
	color: var(--i_color) !important;
	background: url(static/imgs/about_us.webp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about_us_active{
	background-color:rgba(186, 113, 190,0.15) !important ;
}


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

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

}
@media screen and (max-width:1200px) {
	.about_us_ul{margin-top: 0.4rem;}
	.about_us_div h4 {font-size: 0.5rem;}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {
	.about_us_div h4 {font-size: 0.4rem;}
}
@media screen and (max-width:767px) {

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

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

}

/* about_advantage */
.about_advantage_area{
	background-color: #FEF0FF;
	box-sizing: border-box;
	padding: 1rem 0 0.9rem 0;
}
.about_advantage{

}
.about_advantage .title_img img{
	background-color: #EAF8FF;
}
.about_advantage_all{
    display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding-top: 1rem;
}

.about_advantage_left{
    width: 46.5%;
}
.about_advantage_right{
    width: 53.5%;
}

.about_advantage_tp{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.about_advantage_tp>div{
	width: 49%;
}
.about_advantage_img{
    position: relative;
	overflow: hidden;
	border-radius: 0.25rem;
}
.about_advantage_img::after{
	content: '';
	display: block;
	padding-bottom: 171%;
}
.about_advantage_img img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.about_advantage_right{
	box-sizing: border-box;
	padding-left: 4%;
}
.about_advantage_right li{
    box-sizing: border-box;
	padding: 0.4rem 3%;
	border-radius: 0.3rem;
	overflow: hidden;
	cursor: pointer;
}
.about_advantage_right li h2{
    font-size: 0.26rem;
	font-weight: bold;
	color: var(--i_color);
	text-transform: uppercase;
	margin-bottom: 0.05rem;
}
.about_advantage_right li h3{
    font-size: 0.18rem;
	line-height: 0.22rem;
	color: #474747;
}


.about_advantage_right .current{
	background: linear-gradient(270deg, #E97597 0%, #8885DE 100%);
}
.about_advantage_right .current h2,.about_advantage_right .current h3{
	color: white;
}


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

}
@media screen and (max-width:1440px) {
	.about_advantage_right li h2 {font-size: 0.22rem;}
	.about_advantage_right li {padding: 0.35rem 3%}
}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {
	.about_advantage_all {padding-top: 0.8rem;}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {
	.about_advantage_left {width: 60%;margin: 0 auto; margin-bottom: 0.2rem;}
	.about_advantage_right {width: 100%;padding-left: 0%;}
	.about_advantage_all {padding-top: 0.6rem;}
}
@media screen and (max-width:767px) {
	.about_advantage_left {width: 80%;}
}
@media screen and (max-width:560px) {
	.about_advantage_left {width: 100%;}
}
@media screen and (max-width:425px) {

}



/* about_certifcate */
.about_certifcate{
	box-sizing: border-box;
	padding:1rem  0;
}
.about_certifcate_area{

}


/* 合作伙伴 */
.certifcate_partner_box{
	box-sizing: border-box;
	padding-top: 0.6rem;
}

.certifcate_partner{position:relative}
.certifcate_partner_list{width:100%; padding:0.6rem 0 !important;box-sizing: border-box; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.certifcate_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.certifcate_partner_list .swiper-slide{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	border-radius: 0.1rem;
	overflow: hidden;
	border: 1px solid #D6D6D6;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

.certifcate_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden}
.certifcate_partner_list .img:before{content:""; display:block; padding-bottom:126%}
.certifcate_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:contain}


.certifcate_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}

.certifcate_partner_list .swiper-slide-active{
	transform: scaleY(1.2);
}









/* 指示器 */
.certifcate_partner .pt-pagination{display:none; text-align:center; margin:20px auto 0}
.certifcate_partner .pt-pagination .swiper-pagination-bullet{width:0.12rem; height:0.12rem; display:inline-block; margin:0 5px; background:#BBB; -webkit-border-radius:50%; -moz-border-radius:50%; -o-border-radius:50%; border-radius:50%; outline:none}
.certifcate_partner .pt-pagination .swiper-pagination-bullet-active{position:relative; background:var(--i_color)}







@media screen and (max-width:1440px){
	.certifcate_partner_box{padding-top: 0.4rem;}
	.about_certifcate {padding: 0.8rem 0;}
}
@media screen and (max-width:1366px){

}
@media screen and (max-width:1200px){
	.certifcate_partner .pt-button-prev, .certifcate_partner .pt-button-next{display:none}
	.certifcate_partner .pt-pagination{display:block}
	.certifcate_partner_box{padding-top: 0.2rem;}
	.about_certifcate {padding: 0.6rem 0;}
}
@media screen and (max-width:959px){

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

}
@media screen and (max-width:560px){
	.pt-pagination{margin:14px auto 0}
	.pt-pagination .swiper-pagination-bullet{width:10px; height:10px}
}


/* about_environment */
.about_environment{

}
.about_environment_area{
	box-sizing: border-box;
	padding-top: 0.8rem;
}



/* 工厂滚动  */
.ggg_partner_box{}

.ggg_partner{position:relative}
.ggg_partner_list{width:100%; padding:0.1rem !important;box-sizing: border-box; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.ggg_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.ggg_partner_list .swiper-slide{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	border-radius: 0.25rem;
	box-sizing: border-box;
}

.ggg_partner_list .img{width:100%;transition: all 0.3s ease; box-sizing:border-box;  position:relative; overflow:hidden;border-radius: 0.25rem;}
.ggg_partner_list .img:before{content:""; display:block; padding-bottom:100.5%}
.ggg_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}


.ggg_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}

.ggg_partner_list .swiper-slide:hover .img{
	box-shadow:  0 0 10px rgba(0, 97, 174, 0.5);

}
.ggg_partner_list .swiper-slide:hover img{
	width: 105%;
	height: 105%;
}


/* 指示器 */
.ggg_partner .pt-pagination{display: block;margin-top: 0.9rem;}
.ggg_partner .pt-pagination{
	background-color: #d7d7d7;
	height: 1px;
	position: relative;
}
.ggg_partner .swiper-pagination-progressbar-fill{
	display: block;
	width: 100%;
	height: 0.03rem;
	background-color: var(--i_color);
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: left top;
}


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

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

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

	.pt-pagination{display:block}
	.about_environment_area {padding-top: 0.6rem;}
}
@media screen and (max-width:959px){
	.ggg_partner .pt-pagination{margin-top: 0.8rem;}
}
@media screen and (max-width:767px){
	.team{padding-bottom: 0.6rem;}
	.ggg_partner .pt-pagination{margin-top: 0.6rem;}
}
@media screen and (max-width:560px){
	.pt-pagination{margin:14px auto 0}
	.pt-pagination .swiper-pagination-bullet{width:10px; height:10px}
}


/* ----------------------contact------------------ */





/* ------------------------------图片分裂---------------------- */
.contact_banner{
	position: relative;
    overflow: hidden;
    width: 100%;
}
.wrapper {
	position: fixed;
    top: var(--header_height);
    left: 0;
    width: 100%;
    width: 100vw;
    object-fit: cover;
	background-color: #222;
	border-radius: 0 0 1rem 1rem;
    overflow: hidden;
}
.box {
	--box-width: 19.2rem;
	--box-height: 7.2rem;
	--frag-width: calc(var(--box-width) / var(--col));
	--frag-height: calc(var(--box-height) / var(--row));
	--img-url: url("static/imgs/contact_banner.jpg");
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: var(--box-width);
	height: var(--box-height);
	position: relative;
}
.box.hide::after {
    opacity: 0;
}
.box.hide:hover::after {
    opacity: 0;
}
.box:hover::after {
	background-image: initial;
	font-size: 0.18rem;
}
.fragment {
	--x-offset: calc(var(--x) * var(--frag-width) * -1);
	--y-offset: calc(var(--y) * var(--frag-height) * -1);
	--rotateX: rotateX(0);
	--rotateY: rotateY(0);
	width: var(--frag-width);
	height: var(--frag-height);
	background: var(--img-url) var(--x-offset) var(--y-offset) / var(--box-width)
		var(--box-height) no-repeat;
	backface-visibility: hidden;
	will-change: transform;
	transform: var(--rotateX) var(--rotateY) scale(0.8);
	animation: flip var(--duration) linear var(--delay) forwards;
	opacity: 0;
}
@keyframes flip {
	0% {
		transform: var(--rotateX) var(--rotateY) scale(0.8);
		opacity: 0;
	}
	15% {
		transform: var(--rotateX) var(--rotateY) scale(0.8);
		opacity: 0;
	}
	70% {
		transform: rotateX(0) rotateY(0) scale(0.8);
		opacity: 1;
	}
	100% {
		transform: rotateX(0) rotateY(0) scale(1);
		opacity: 1;
	}
}






@media screen and (max-width:1600px){
	.box {--box-height: 5rem;}
}
@media screen and (max-width:1440px){

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

}
@media screen and (max-width:1200px){
	.box {--box-height: 4rem;}
}
@media screen and (max-width:1025px){

}
@media screen and (max-width:959px){
	.box {--box-height: 3.5rem;}
}
@media screen and (max-width:767px){

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

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

}





.contact_us{
	box-sizing: border-box;
	padding: 0.5rem 0 0.7rem 0;
}
.contact_us_area{

}
.contact_us_ul{
    display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding:0.8rem 0;
	border-bottom: 1px solid #D8D8D8;
	position: relative;
}
.contact_us_ul li{
    width: 25%;
	display: flex;
	display: -webkit-flex;
}
.contact_us_ul li img{
    width: 0.6rem;
	height: 0.6rem;
	object-fit: cover;
	transition: all 0.3s ease;
}
.contact_us_ul li:hover img{
	transform: rotate(180deg);
}
.contact_us_text{
    width: calc(100% - 0.6rem);
	box-sizing: border-box;
	padding: 0 4%;
}
.contact_us_text p{
    font-size: 0.18rem;
	line-height: 0.3rem;
	color: #222;
	text-transform: uppercase;
}
.contact_us_text a{
	font-size: 0.18rem;
	line-height: 0.3rem;
    color: #474747;
	transition: all 0.3s ease;
}
.contact_us_text a:hover{
	color: var(--i_color);
}
.contact_list{
	width: 25%;
	height: 2px;
	background-color: var(--i_color);
	position: absolute;
	bottom: -1px;
	left: 0;
	transition: all 0.5s linear;
}
.contact_us_ul li:nth-child(1).hover ~ .contact_list {
	left: 0;
}
.contact_us_ul li:nth-child(2):hover ~ .contact_list{
	left: 25%;
}
.contact_us_ul li:nth-child(3):hover ~ .contact_list{
	left: 50%;
}
.contact_us_ul li:nth-child(4):hover ~ .contact_list{
	left: 75%;
}



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

}
@media screen and (max-width:1440px) {
	.contact_us_ul {padding: 0.6rem 0;}
}
@media screen and (max-width:1366px) {

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

}
@media screen and (max-width:1024px) {
	.contact_us_ul li {width: 50%;}
	.contact_us_ul{gap: 0.2rem 0;}
	.contact_us_ul {padding: 0.6rem 0 0.4rem 0;}
}
@media screen and (max-width:960px) {

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

}
@media screen and (max-width:560px) {
	.contact_us_ul li {width: 100%;}
}
@media screen and (max-width:425px) {

}






/* contact_form */
.contact_form{
	background: url('https://lingjuimg.com/wp-content/uploads/guangde/2026/03/74821545.webp') center no-repeat;
	background-size: cover;
	box-sizing: border-box;
	padding: 0.65rem 0;
	border-radius: 0.25rem;
	background-attachment: fixed;
	margin-bottom: 0.9rem;
}
.contact_form h2{
    font-size: 0.36rem;
	font-weight: bold;
	color: white;
	text-align: center;
}
.contact_form h3{
    font-size: 0.18rem;
	color: white;
	text-align: center;
	margin: 0.15rem 0 0.3rem 0;
	box-sizing: border-box;
	padding: 0 3%;
}
.contact_form_area{
	box-sizing: border-box;
	padding: 0 9%;
}

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

}
@media screen and (max-width:1440px) {
	.contact_form h2{font-size: 0.3rem;}
	.contact_form{margin-bottom: 0.8rem;}
}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {
	.contact_form{margin-bottom: 0.6rem;}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {
	.contact_form{margin-bottom: 0.4rem;}
}
@media screen and (max-width:767px) {

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

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

}

/* contact 表单 */

#wpforms-52{--input_font_size:0.14rem; --input_height:0.48rem}
#wpforms-52{width:100%; margin:0 auto; padding:0}
#wpforms-form-52{width:100%;}

#wpforms-52 input, #wpforms-52 button{margin:0; padding:0; border:none; background:none}
#wpforms-52 .wpforms-field{padding:0; margin:0}
#wpforms-52 .wpforms-error-container{line-height:0.14rem}

#wpforms-52 .wpforms-field-container{width:100%; display:-webkit-flex; display:flex; flex-wrap:wrap; overflow:hidden}
#wpforms-52 .wpforms-submit-container{
	padding:0!important;
	position:relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
}

#wpforms-52 .wpforms-field{width:100%; margin-bottom:0px; padding-bottom:20px; background:transparent; overflow:hidden}
#wpforms-52 .wpforms-field:nth-child(1){margin-right:20px}
#wpforms-52 .wpforms-field:nth-child(1), #wpforms-52 .wpforms-field:nth-child(2){width:calc(50% - 10px)}

#wpforms-52 input{height:var(--input_height)}
#wpforms-52 textarea{min-height:1.3rem}
#wpforms-52 input, #wpforms-52 textarea{width:100%;border-radius: 0.25rem; max-width:100%!important; font-size:var(--input_font_size); color:#222; box-sizing:border-box;background-color: white; line-height:var(--input_height); padding:0 0.2rem}
#wpforms-52 textarea{
	line-height: 0.2rem;
	padding: 0.1rem 0.2rem;
}
#wpforms-52 input::-webkit-input-placeholder{color:#9E9E9E; font-size:var(--input_font_size)}
#wpforms-52 input::-moz-placeholder{color:#9E9E9E; font-size:var(--input_font_size)}
#wpforms-52 input::-moz-placeholder{color:#9E9E9E; font-size:var(--input_font_size)}
#wpforms-52 input::-ms-input-placeholder{color:#9E9E9E; font-size:var(--input_font_size)}
#wpforms-52 textarea::-webkit-input-placeholder{color:#9E9E9E; font-size:var(--input_font_size)}
#wpforms-52 textarea::-moz-placeholder{color:#9E9E9E; font-size:var(--input_font_size)}
#wpforms-52 textarea::-moz-placeholder{color:#9E9E9E; font-size:var(--input_font_size)}
#wpforms-52 textarea::-ms-input-placeholder{color:#9E9E9E; font-size:var(--input_font_size)}

#wpforms-52 #wpforms-52-field_1-error, #wpforms-52 #wpforms-52-field_2-error, #wpforms-52 #wpforms-52-field_3-error, #wpforms-52 #wpforms-52-field_4-error{position:absolute; font-size:14px}

#wpforms-52 .wpforms-submit-container button{
	width:1.8rem;
	background:var(--i_color);
	height:50px;
	font-size:14px;
	font-weight: bold;
	color:white;
	line-height:50px;
	cursor:pointer;
	text-transform:uppercase;
	position:relative;
	z-index:2;
	transition: all 0.3s ease;
	border-radius: 0.3rem;
}

#wpforms-52 .wpforms-submit-container button:hover{
	background-color: var(--i_color2);
}


#wpforms-52 .wpforms-submit-container img{position:absolute; top:50%; transform:translate(0,-50%); right:4px}


#wpforms-52 .wpforms-field{position: relative;}
#wpforms-52 .wpforms-field-label{font-size: 0;}
#wpforms-52 .wpforms-required-label{
	color: red;
	font-size: 0.14rem;
	font-weight: bold;
	position: absolute;
	top: 15%;
	left: 0.1rem;
	transform: translate(0,-50%);
}
#wpforms-52-field_3-container .wpforms-required-label{
	top: 37%;
    left: 0.1rem;
}





@media screen and (max-width:1440px){
	#wpforms-52 .wpforms-submit-container button{height:46px; line-height:46px; }
	#wpforms-52 .wpforms-submit-container button::after {border-top: 23px solid transparent;border-bottom: 23px solid transparent;}
	.contact_form_area {padding: 0 8%;}
}
@media screen and (max-width:1366px){

}
@media screen and (max-width:1200px){
	#wpforms-52 .wpforms-submit-container button{height:42px; line-height:42px; }
	#wpforms-52 .wpforms-submit-container button::after {border-top: 21px solid transparent;border-bottom: 21px solid transparent;}
	.contact_form_area {padding: 0 6%;}
}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){
	.contact_form_area {padding: 0 3%;}
}
@media screen and (max-width:560px){
	#wpforms-52 .wpforms-submit-container button{height:32px; line-height:32px; font-size: 12px;}
	#wpforms-52 .wpforms-submit-container button::after {border-top: 16px solid transparent;border-bottom: 16px solid transparent;}
}


/* contact_map */
.contact_map{
    background: var(--i_color);
	height: 7.17rem;
}

.contact_map #simpleMap,
.contact_map .fluid-width-video-wrapper,
.contact_map iframe {
        width: 100%;
        height: 100% !important;
}



/* ----------------------------------news -------------------------------*/
.news_banner_text{
	position: absolute;
	top: 40%;
	right: 18%;
}
.news_banner_text h2{
    font-size: 0.48rem;
	font-weight: bold;
	color: #222;
	margin-bottom: 0.1rem;
}
.news_banner_text h3{
    font-size: 0.24rem;
	color: #474747;
}


@media screen and (max-width:1600px) {
	.news_banner_text{right: 16%;}
}
@media screen and (max-width:1440px) {
	.news_banner_text{right: 14%;}
	.news_banner_text h2 {font-size: 0.45rem;}
}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {
	.news_banner_text{right: 10%;}
	.news_banner_text h2 {font-size: 0.4rem;}
}
@media screen and (max-width:1024px) {
	.news_banner_text{right: 8%;}
}
@media screen and (max-width:960px) {
	.news_banner_text{right: 6%;}
	.news_banner_text h2 {font-size: 0.35rem;}
}
@media screen and (max-width:767px) {
	.news_banner_text{right: 3%;}
	.news_banner_text h2 {font-size: 0.3rem;}
}
@media screen and (max-width:560px) {

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


/* news_list */
.news_list{
    display: flex;
	display: -webkit-flex;
	justify-content: center;
	box-sizing: border-box;
	padding: 0.2rem 0 0.7rem 0;
}
.news_list li{
    margin: 0 0.45rem;
}
.news_list li a{
	font-size: 0.2rem;
	color: #222;
	display: inline-block;
	box-sizing: border-box;
	border-radius: 0.2rem;
	padding: 0.12rem 0.4rem;
	border: 1px solid var(--i_color);
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.news_list_active a{
    background-color: var(--i_color);
	color: white !important;
	box-shadow: 0 0 10px rgba(3,114,188,0.3);

}
.news_list li:hover a{
	background-color: var(--i_color);
	color: white !important;
	animation: a 0.5s 1 linear;
    animation-delay: 0.01s;
	box-shadow: 0 0 10px rgba(3,114,188,0.3);
}


@keyframes a{
	0% {
		transform: scale(0.98, 1.02);
	}
	25% {
		transform: scale(1.02, 0.98);
	}
	50% {
		transform: scale(0.98, 1.02);
	}
	75% {
		transform: scale(1.02, 0.98);
	}
	100% {
		transform: scale(1, 1);
	}
}



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

}
@media screen and (max-width:1440px) {
	.news_list li {margin: 0 0.4rem;}
	.news_list {padding: 0.2rem 0 0.6rem 0;}
}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {
	.news_list li {margin: 0 0.35rem;}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {
	.news_list li {margin: 0 0.3rem;}
	.news_list {padding: 0.2rem 0 0.4rem 0;}
}
@media screen and (max-width:767px) {
	.news_list li {margin: 0 0.2rem;}
}
@media screen and (max-width:560px) {

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

}



.news_area{

}
.news_all{
    box-sizing: border-box;
	padding-top: 0.6rem;
}
.news_all_ul{
    display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.4rem;
}
.news_all_ul li{
    width: calc((100% - 0.8rem) / 3);
	box-sizing: border-box;
	padding: 0.5rem;
	box-sizing: border-box;
	box-shadow: 0 0 10px #FEF0FF;
	border-radius: 0.25rem;
	transition: all 0.3s ease;
}
.news_all_ul li a{
    display: block;
	width: 100%;
}
.news_all_img{
	position: relative;
	width: 100%;
}
.news_all_img::after{
	content: '';
	display: block;
	padding-bottom: 65%;
}
.news_all_img img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news_all_ul h2{
    font-size: 0.22rem;
	color: #222;
	line-height: 0.24rem;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 0.48rem;
    margin: 0.2rem 0 0.1rem 0;
	transition: all 0.3s ease;
}
.news_all_ul h3{
	font-size: 0.18rem;
	color: #474747;
}
.news_all_ul h4{
	font-size: 0.16rem;
	color: #474747;
	line-height: 0.24rem;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 0.48rem;
	margin: 0.2rem 0;
}
.news_all_ul h5{
	width: 1.37rem;
	height: 0.45rem;
	border-radius: 0.25rem;
	background-color: var(--i_color);
	color: white;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	font-size: 0.18rem;
	transition: all 0.3s ease;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
}
.news_all_ul li:hover{
	background-color: #FEF0FF;
}
.news_all_ul li:hover h2{
	color: var(--i_color);
}
.news_all_ul li:hover h5{
	background-color: transparent;
	color: var(--i_color);
}

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

}
@media screen and (max-width:1440px) {
	.news_all_ul li {padding: 0.4rem;}
}
@media screen and (max-width:1366px) {

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

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

}
@media screen and (max-width:960px) {
	.news_all_ul li {width: calc((100% - 0.4rem) / 2);}
	.news_all_ul li {padding: 0.3rem;}
}
@media screen and (max-width:767px) {
	.news_all_ul {gap: 0.2rem 0.2rem;}
	.news_all_ul li {width: calc((100% - 0.2rem) / 2);}
	.news_all_ul li {padding: 0.25rem;}
}
@media screen and (max-width:560px) {
	.news_all_ul h5 {width: 1rem;height: 0.4rem;font-size: 0.16rem;}
}
@media screen and (max-width:425px) {

}



/* Number of pages */
.in_page_box {
	text-align: center;
	overflow: hidden;
	padding-top: 0.7rem;
	box-sizing: border-box;
}
.in_page {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.in_page_right .in_page{
	justify-content: flex-end;
}
.in_page_left .in_page {
    justify-content: flex-start;
}
.in_page li {
	min-width: .32rem;
	margin: 0 .04rem;
}
.in_page a,
.in_page span {
	display: block;
	padding: 0 .12rem;
	line-height: .32rem;
	font-size: .14rem;
	color: #666;
	background: #FFF;
	-webkit-border-radius: .05rem;
	border-radius: .05rem;
	border: 1px solid var(--border_color);
	overflow: hidden;
	transition: all 0.3s ease;
}
.in_page>i {
	margin-top: 0.14rem;
	width: 100%;
	font-size: 0.13rem;
	color: #888;
	display: none;
}

.in_page a:hover,
.in_page .curr_page a,
.in_page .curr_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.6rem;}
}
@media screen and (max-width:768px) {
	.in_page li {
		min-width: .28rem;
	}
	.in_page a,
	.in_page span {
		line-height: 0.28rem;
		padding: 0 .1rem;
	}
}
@media screen and (max-width:560px) {

}


/* ---------------------------download----------------------------- */
.download{
    box-sizing: border-box;
	padding-top: 0.6rem;
}
.download_ul{
    margin-top: 0.6rem;
}
.download_ul li{
    width: 100%;
	border-bottom: 1px solid #D8D8D8;
	transition: all 0.3s linear;
}
.download_ul li a{
	display: flex;
	display: -webkit-flex;
	width: 100%;
	align-items: center;
	box-sizing: border-box;
	padding: 0.18rem 0.22rem;
	border-radius: 0.25rem;
	position: relative;
	overflow: hidden;
}
.download_ul li a::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 0;
	left: 0;
	background-color: #f6f6f6;
	bottom: 0;
	z-index: -1;
	transition: all 0.3s linear;
}
.download_ul li:hover{
	border-bottom: 1px solid transparent;
}
.download_ul li:hover a::after{
	height: 100%;
	bottom: auto;
	top: 0;
}


.download_img{
    width: 0.6rem;
	height: 0.6rem;
	background-color: var(--i_color);
	border-radius: 50%;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	transition: all 0.3s ease;
}
.download_img img{
	width: 0.27rem;
	height: 0.3rem;
	object-fit: contain;
	filter: brightness(100000000) grayscale(100%);
	-webkit-filter: brightness(100000000) grayscale(100%);
	margin-left: 2px;
}

.download_ul h2{
    font-size: 0.2rem;
	font-weight: bold;
    width: calc(100% - 0.96rem);
	box-sizing: border-box;
	padding: 0 2%;
	transition: all 0.3s ease;
	overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}
.download_ul i{
    display: block;
	width: 0.36rem;
	height: 0.36rem;
	background: url('static/imgs/download3.png') center no-repeat;
	background-size: contain;
}
.download_ul li:hover .download_img{
	background-color: transparent;
}
.download_ul li:hover img{
	filter: unset;
}
.download_ul li:hover h2{
	color: var(--i_color);
}
.download_ul li:hover i{
	background: url('static/imgs/download2.png') center no-repeat;
	background-size: contain;
}


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

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

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

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

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

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

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

}
@media screen and (max-width:560px) {
	.download_ul {
		margin-top: 0.4rem;
	}
	.download{
		box-sizing: border-box;
		padding-top: 0.4rem;
	}
}
@media screen and (max-width:425px) {

}



/*----------------------------- service ------------------------- */
.fullMask_service{
	background-color: #F4F4F4;
}
.service_position{
	background-color: #F4F4F4;
}
.service_banner_text{
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.service_banner_text h2{
	font-size: 0.48rem;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
}

@media screen and (max-width:1200px) {
	.service_banner_text h2{font-size: 0.4rem;}
}
@media screen and (max-width:1024px) {

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

}
@media screen and (max-width:767px) {
	.service_banner_text h2{font-size: 0.35rem;}
}
@media screen and (max-width:560px) {
	.service_banner_text h2{font-size: 0.3rem;}
}
@media screen and (max-width:425px) {
	.service_banner_text h2{display: none;}
}


.service{
	background-color: #F4F4F4;
	box-sizing: border-box;
	padding-top: 0.6rem;
}

.service_area{
	box-sizing: border-box;
	padding: 0.6rem 0;
}
.service_area_ul li{
    display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.service_area_ul li:nth-child(2){
	flex-direction: row-reverse;
}
.service_area_ul li>div{
	width: 50%;
}
.service_img{
    position: relative;
	overflow: hidden;

}
.service_img::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
    background: -webkit-linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
}
.service_area_ul li:hover .service_img::before {
    animation: fol 1.4s;
    animation-delay: 0s;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.18, 0.96);
}
@keyframes fol {
	0% {
		right: 100%;
		opacity: 1;
	}
	100% {
		right: 0;
		opacity: 0;
	}
}

.service_img::after{
    content: '';
	display: block;
	padding-bottom: 51.3%;
}
.service_img img{
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.service_text{
    box-sizing: border-box;
	padding: 0 5%;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	justify-content: center;
}
.service_text img{
	width: 0.6rem;
	height: 0.6rem;
	object-fit: contain;
	margin-bottom: 0.4rem;
}
.service_text h2{
    font-size: 0.36rem;
	color: var(--i_color);
	font-weight: bold;
	text-transform: uppercase;
}
.service_text h3{
	font-size: 0.18rem;
	color: #474747;
	line-height: 0.26rem;
	margin: 0.2rem 0;
}
.service_text h4{
	font-size: 0.2rem;
	color: #222;
}

@media screen and (max-width:960px) {
	.service_img::after{padding-bottom: 70%;}
	.service_text {padding: 0 3%;}
}
@media screen and (max-width:767px) {
	.service_area_ul li>div {width: 100%;}
	.service_img::after {padding-bottom: 51.3%;}
	.service_text {padding: 0.6rem 3%;}

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

	.service_text h2 {font-size: 0.3rem;}
}
@media screen and (max-width:425px) {

}

/* service_let */
.service_let_bac{
	background: url('static/imgs/service_bac.jpg') center no-repeat;
	background-size: cover;
	box-sizing: border-box;
	padding: 1.5rem 0;
	background-attachment: fixed;
}
.service_let{
    display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.service_let_text{

}
.service_let_text h2{
    font-size: 0.36rem;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
}
.service_let_text h3{
    font-size: 0.18rem;
	color: white;
	line-height: 0.26rem;
	margin: 0.1rem 0;
}
.service_let_email{
    display: inline-block;
	background-color: white;
	box-sizing: border-box;
	padding: 0.14rem 0.37rem;
	border-radius: 0.25rem;
	display: flex;
	display: -webkit-flex;
	align-items: center;
}
.service_let_email i{
    display: block;
	width: 0.42rem;
	height: 0.3rem;
	background: url('static/imgs/email.png') center no-repeat;
	background-size: cover;
	transition: all 0.3s ease;
}
.service_let_email p{
    font-size: 0.18rem;
	color: #222;
	margin-left: 0.15rem;
    transition: all 0.3s ease;
}

.service_let_email:hover p{
    color: var(--i_color);
}
@media screen and (max-width:1600px) {

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

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

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

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

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

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

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

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

}










/* service_form */
.service_form{
    margin-top: 1rem;
}
.service_form h2{
   font-size: 0.4rem;
   color: #222;
   font-weight: bold;
   text-align: center;
   text-transform: uppercase;
}
.service_form h6{
   font-size: 0.14rem;
   text-align: center;
   margin: 0.2rem 0 0.4rem 0;
}




.oem_form {

	padding: .5rem 0;

	background: url(static/imgs/oem_form_bg.webp) no-repeat center;

	background-size: cover;

	-webkit-border-radius: .3rem;

	border-radius: .3rem;

	overflow: hidden;

	position: relative;

}

.oem_form::before {

	content: '';

	position: absolute;

	top: 50%;

	left: 50%;

	transform: translate(-50%, -50%);

	width: calc(100% - 10px);

	height: calc(100% - 10px);

	background: #FFF;

	-webkit-border-radius: .3rem;

	border-radius: .3rem;

}



.oem_form .i_tit {

	position: relative;

}

.oem_form .i_tit h6 {

	max-width: 50%;

	margin-left: auto;

	margin-right: auto;

	color: #999;

}



#wpforms-55 {

	--input_font_size: 15px;

	--input_height: .44rem
}

#wpforms-55 {

	width: 90%;

	margin: 0 auto;

}

#wpforms-form-55 {

	width: 100%;

	position: relative;

	overflow: hidden
}



#wpforms-55 input,

#wpforms-55 button {

	margin: 0;

	padding: 0;

	border: none;

	background: none
}

#wpforms-55 .wpforms-field {

	padding: 0;

	margin: 0
}

#wpforms-55 .wpforms-field-label {

	font-size: 0;

}

#wpforms-55 .wpforms-required-label {

	position: absolute;

	top: .1rem;

	left: .05rem;

	font-size: .16rem;

	color: #F00
}

#wpforms-55 .wpforms-field {

	width: 100%;

	background: transparent;

	padding-bottom: .26rem;

	position: relative;

	overflow: hidden
}



#wpforms-55 .wpforms-field-container input,

#wpforms-55 textarea {

	width: 100%;

	max-width: 100% !important;

	min-width: 100%;

	font-size: var(--input_font_size);

	color: #333;

	height: var(--input_height);

	box-sizing: border-box;

	border: none;

	border-bottom: 1px solid #CCC;

	background: none;

	padding: 0 .16rem;

	overflow: hidden;

	-webkit-transition: all .5s ease;

	transition: all .5s ease
}

#wpforms-55 .wpforms-field-container input:hover,

#wpforms-55 textarea:hover {

	border-color: var(--i_color);

}

#wpforms-55 input {

	line-height: var(--input_height)
}

#wpforms-55 textarea {

	line-height: .22rem;

	min-height: 1rem;

	padding: .06rem .16rem
}



#wpforms-55-field_1-container,

#wpforms-55-field_2-container {

	width: 49% !important;

}



#wpforms-55 input::-webkit-input-placeholder,

#wpforms-55 textarea::-webkit-input-placeholder {

	color: rgb(0 0 0 / 40%);

	font-size: var(--input_font_size)
}

#wpforms-55 input::-moz-placeholder,

#wpforms-55 textarea::-moz-placeholder {

	color: rgb(0 0 0 / 40%);

	font-size: var(--input_font_size)
}

#wpforms-55 input::-ms-input-placeholder,

#wpforms-55 textarea::-ms-input-placeholder {

	color: rgb(0 0 0 / 40%);

	font-size: var(--input_font_size)
}



#wpforms-55-field_1-error,

#wpforms-55-field_2-error,

#wpforms-55-field_3-error,

#wpforms-55-field_4-error,

#wpforms-55-field_5-error,

#wpforms-55-field_6-error {

	position: absolute;

	font-size: 12px;

	color: #A90909;

}



#wpforms-55 .wpforms-field-container {

	width: 100%;

	display: -webkit-flex;

	display: flex;

	flex-wrap: wrap;

	justify-content: space-between;

	overflow: hidden
}

#wpforms-55 .wpforms-submit-container {

	margin-top: .2rem;

	text-align: center;

}

#wpforms-55 .wpforms-submit-container button {

	margin: 0 auto;

	width: 3rem;

	height: .42rem;

	font-size: .18rem;

	color: #FFF;

	background: var(--i_color);

	line-height: .42rem;

	cursor: pointer;

	-webkit-border-radius: .2rem;

	border-radius: .2rem;

	position: relative;

	-webkit-transition: all .5s ease;

	transition: all .5s ease;

	z-index: 2
}

#wpforms-55 .wpforms-submit-container button:hover {

	width: 3.3rem;

}

#wpforms-55 .wpforms-submit-container img {

	position: absolute;

	top: 50%;

	transform: translate(0, -50%);

	right: 4px
}



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

	.oem_form .i_tit h6 {

		max-width: 80%;

	}

	#wpforms-55 {

		width: 90%;

	}

}

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

	.oem_form .i_tit h6 {

		max-width: 90%;

	}

	#wpforms-55-field_1-container,

	#wpforms-55-field_2-container {

		width: 100% !important;

	}

}

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



/*-------------------------------------- products----------------------- */
.products_list{
    display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding-top: 1rem;
}
.products_list_left{
    width: 3.4rem;
}
.products_list_left h2{
	font-size: 0.24rem;
	color: #222;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0.2rem;
	display: flex;
	display: -webkit-flex;
	align-items: center;
}
.products_list_left h2 ion-icon{
	font-size: 0.24rem;
	color: #222;
	font-weight: bold;
	margin-left: 0.1rem;
	display: none;
}
.products_list_ul{
    border-top: 1px solid #D8D8D8;
}
.products_list_ul li{
    position: relative;
	box-sizing: border-box;
	padding: 0.2rem 0;
    border-bottom: 1px solid #D8D8D8;
}
.products_list_ul li>a{
    font-size: 0.18rem;
	color: #222;
	display: inline-block;
	box-sizing: border-box;
	padding-right: 0.3rem;
	transition: all 0.3s ease;
	display: block;
}
.products_list_ul li>a:hover{
	color: var(--i_color);
}
.products_list_ul li i{
    display: block;
	width: 0.2rem;
	height: 0.2rem;
	background: url('static/imgs/products_i.png') center no-repeat;
	background-size: contain;
	position: absolute;
	top: 20px;
	right: 0px;
	cursor: pointer;
	transition: all 0.3s linear;
}
.products_list_ul dl{
    display: none;
}
.products_list_ul dl dt{

}
.products_list_ul dl dt a{
	display: block;
    font-size: 0.16rem;
	color: #474747;
	box-sizing: border-box;
	padding: 0.2rem 0 0 0.3rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s linear;
}
.products_list_ul dl dt a::after{
	content: '';
	width: 0.13rem;
	height: 0.12rem;
	background: url('static/imgs/products_left.png') center no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 3px;
	left: 2%;
	transition: all 0.3s linear;
	opacity: 0;
}
.products_list_ul dl dt a:hover{
	color: var(--i_color);
}
.products_list_ul dl dt a:hover::after{
	left: 2%;
	opacity: 1;
}
.products_dl_active a{
	color: var(--i_color) !important;
}
.products_dl_active a::after{
	opacity: 1 !important;
}
.products_ul_active>a{
	color: var(--i_color) !important;
}
.products_ul_active i{
	transform: rotate(180deg);
}


.products_list_ul li.on i{
	transform: rotate(180deg);
}


.products_list_right{
	width: calc(100% - 3.4rem);
	box-sizing: border-box;
	padding-left: 4%;
}
.products_right_ul{
    display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.products_right_ul li{
    width: calc((100% - 0.8rem) / 3);
	border-radius: 0.25rem;
	border: 1px solid #CECECE;
	overflow: hidden;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
.products_right_ul li a{
    display: block;
	width: 100%;
}
.products_right_img{
    position: relative;
	overflow: hidden;
}
.products_right_img::after{
    content: '';
	display: block;
	padding-bottom: 100%;
}
.products_right_img img{
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
}
.products_right_text{
	box-sizing: border-box;
	padding: 0.2rem 2% 0.3rem 2%;
	border-top: 1px solid #CECECE;
	transition: all 0.3s ease;
}
.products_right_ul h2{
    font-size: 0.16rem;
	color: #474747;
	overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
	text-align: center;
	margin-bottom: 0.1rem;
	transition: all 0.3s ease;
}
.products_right_ul h3{
	font-size: 0.18rem;
	color: #222;
	overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
	text-align: center;
	transition: all 0.3s ease;
}
.products_right_ul li:hover{
	border: 1px solid #FEF0FF;
	box-shadow: 0 0 10px #FEF0FF;
}
.products_right_ul li:hover .products_right_text h2,.products_right_ul li:hover .products_right_text h3{
	color: white;
}
.products_right_ul li:hover .products_right_text{
	background-color: var(--i_color);
}




@media screen and (max-width:1600px) {
	.products_list_right {padding-left: 4%;}
}
@media screen and (max-width:1440px) {
	.products_right_ul {gap: 0.3rem;}
	.products_right_ul li {width: calc((100% - 0.6rem) / 3);}
}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {
	.products_list_right {padding-left: 3%;}
	.products_right_ul {gap: 0.2rem;}
	.products_right_ul li {width: calc((100% - 0.4rem) / 3);}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {
	.products_right_ul li {width: calc((100% - 0.2rem) / 2);}
}
@media screen and (max-width:767px) {
	.products_list_left {width: 100%;}
	.products_list_right {padding-left: 0%;width: 100%;margin-top: 0.4rem;}
	.products_list_left h2 ion-icon{display: block;}
}
@media screen and (max-width:560px) {

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

}

/* ------------------single_grid----------------------- */
.single_top{
	margin-top: var(--header_height);
}
.single_position{
	background-color: #EEEEEE;
}


.single_grid{
    margin-top: 0.5rem;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.single_grid_left{
	width: 45%;
}


/* 产品图集 */
.u_partner_box{}

.u_partner{position:relative}
.u_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.u_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.u_partner_list .swiper-slide{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
}

.u_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden;border-radius: 0.25rem;}
.u_partner_list .img:before{content:""; display:block; padding-bottom:100%}
.u_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%;  object-fit:cover}


.u_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}

/* 指示器 */
.single_grid_left .pt-pagination{display:block; text-align:center; margin:35px auto 0;cursor: pointer;}
.pt-pagination .swiper-pagination-bullet{width:12px; height:12px; display:inline-block; margin:0 5px; background:#BBB; -webkit-border-radius:50%; -moz-border-radius:50%; -o-border-radius:50%; border-radius:50%; outline:none}
.pt-pagination .swiper-pagination-bullet-active{position:relative; background:var(--i_color)}


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

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

}
@media screen and (max-width:1200px){
	.u_partner .pt-button-prev, .u_partner .pt-button-next{display:none}
	.pt-pagination{display:block}
}
@media screen and (max-width:959px){

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

}
@media screen and (max-width:560px){
	.pt-pagination{margin:14px auto 0}
	.pt-pagination .swiper-pagination-bullet{width:10px; height:10px}
}



.single_grid_right{
	width: 55%;
	box-sizing: border-box;
	padding-left: 6%;
}
.single_right_text{

}
.single_right_text>h2{
    font-size: 0.3rem;
	color: #222;
	text-transform: capitalize;
	margin-top: 0.2rem;
}
.single_right_text>h1{
	font-size: 0.3rem;
	color: #222;
	font-weight: bold;
}
.single_right_text>h3{
	font-size: 0.16rem;
	color: #4C4C4C;
	box-sizing: border-box;
	padding: 0.1rem 0;
	border-bottom: 1px solid var(--i_color);
}
.single_right_text>h4{
	font-size: 0.18rem;
	color: #222;
	display: inline-block;
	box-sizing: border-box;
	padding: 15px 20px;
	border-radius: 0.25rem;
	background-color: #FEF0FF;
	margin: 0.2rem 0;
}
.single_right_text>h5{
	font-size: 0.16rem;
	color: #474747;
	line-height: 0.22rem;
	box-sizing: border-box;
	padding-bottom: 0.2rem;
	border-bottom: 1px solid var(--i_color);
}
.single_right_btn{
    margin: 0.3rem 0;
}
.single_right_btn a{
	display: inline-block;
	font-size: 0.18rem;
	color: #222;
	box-sizing: border-box;
	padding: 0.135rem 0.45rem;
	border-radius: 0.4rem;
	border: 1px solid var(--i_color);
	margin-right: 0.3rem;
	transition: all 0.3s ease;
}
.single_right_btn a:hover{
	background-color: var(--i_color);
	color: white;
}
.single_right_tag{
    display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	margin-bottom: 0.2rem;
}
.single_right_tag p{
    font-size: 0.18rem;
	color: #222;
}
.single_right_tag a{
    font-size: 0.18rem;
	color: #666666;
	margin-left: 0.15rem;
	text-transform: capitalize;
	transition: all 0.3s ease;
}
.single_right_tag a:hover{
	color: var(--i_color);
}


.single_grid_share{
   display: flex;
   align-items: center;
   box-sizing: border-box;
   justify-content: flex-end;
}
.single_grid_share p{
   font-size: 0.18rem;
   color: #333;
   font-weight: bold;
   margin-right: 0.15rem;
}
.single_grid_dl{
   display: flex;
   gap: 0.2rem;
}
.single_grid_dl dt{

}
.single_grid_dl dt a{

}
.single_grid_dl dt a iconify-icon{
   font-size: 0.3rem;
   color: #999;
   transition: all 0.3s ease;
}
.single_grid_dl dt a iconify-icon:hover{
	color: var(--i_color);
	transform: translateY(-5px);
}






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

}
@media screen and (max-width:1440px) {
	.single_grid_right {padding-left: 4%;}
}
@media screen and (max-width:1366px) {

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

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

}
@media screen and (max-width:960px) {
	.single_grid_right {width: 100%;padding-left: 0%;}
	.single_grid {justify-content: center;}
	.single_grid_left {width: 50%;}
}
@media screen and (max-width:767px) {
	.single_grid_left {width: 80%;}
}
@media screen and (max-width:560px) {
	.single_right_btn a {margin-right: 0.2rem;}
	.single_grid_left {width: 100%;}
}
@media screen and (max-width:425px) {

}

.single_bac{
	background: url('static/imgs/single.webp') center no-repeat;
	background-size: cover;
	box-sizing: border-box;
	padding: 0.6rem 0;
	background-attachment: fixed;
	margin: 0.5rem 0;
}
.single_bac h2{
	font-size: 0.35rem;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
}
.single_bac_div{
    display: flex;
	display: -webkit-flex;

}
.single_bac_div h3{
    font-size: 0.35rem;
	color: var(--i_color);
	font-weight: bold;
	text-transform: uppercase;
}
.single_bac_div img{
    width: 0.4rem;

}
.single_bac_position{
	margin-left: 66%;
}

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

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

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

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

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

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

}
@media screen and (max-width:767px) {
	.single_bac_position{
		margin-left: 56%;
	}
}
@media screen and (max-width:560px) {
	.single_bac_position{
		margin-left: 46%;
	}
}
@media screen and (max-width:425px) {
	.single_bac_position{
		margin-left: 40%;
	}
}







/* -----编辑器----- */
.editor{
	box-sizing: border-box;
	padding: 0.7rem 0;
}






/* hot_products */
.hot_products_area{
	background-color: #F6F6F6;
	box-sizing: border-box;
	padding: 0.7rem 0 1rem 0;
}
.hot_products_all{
	margin-top: 0.6rem;
}



/* 工厂滚动  */
.hot_partner_box{}

.hot_partner{position:relative}
.hot_partner_list{width:100%; padding:0.1rem !important;box-sizing: border-box; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.hot_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.hot_partner_list .swiper-slide{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	border-radius: 0.25rem;
	overflow: hidden;
	border: 1px solid #D8D8D8;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
.hot_partner_list .swiper-slide a{
	display: block;
	width: 100%;
	background-color: white;
}
.hot_partner_list .img{width:100%;transition: all 0.3s ease; box-sizing:border-box;  position:relative; overflow:hidden;}
.hot_partner_list .img:before{content:""; display:block; padding-bottom:100.5%}
.hot_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}


.hot_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}


/* .hot_partner_list .swiper-slide:hover img{
	width: 105%;
	height: 105%;
} */
.hot_partner_text{
    box-sizing: border-box;
	padding: 0.2rem 2% 0.3rem 2%;
	border-top: 1px solid #D8D8D8;
	transition: all 0.3s ease;
}
.hot_partner_text h2{
    font-size: 0.16rem;
	color: #474747;
	text-align: center;
	overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.hot_partner_text h3{
    font-size: 0.18rem;
	color: #222222;
	text-align: center;
	text-transform: capitalize;
	margin-top: 0.1rem;
	overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
	transition: all 0.3s ease;
}
.hot_partner_list .swiper-slide:hover{
	box-shadow:  0 0 0.1rem #FEF0FF;
	border: 1px solid #FEF0FF;
}
.hot_partner_list .swiper-slide:hover .hot_partner_text{
	background-color: var(--i_color);
}

.hot_partner_list .swiper-slide:hover .hot_partner_text h2,.hot_partner_list .swiper-slide:hover .hot_partner_text h3{
   color: white;
}




/* 指示器 */
.hot_partner .pt-pagination{display: block;margin-top: 0.9rem;}
.hot_partner .pt-pagination{
	background-color: #d7d7d7;
	height: 1px;
	position: relative;
}
.hot_partner .swiper-pagination-progressbar-fill{
	display: block;
	width: 100%;
	height: 0.03rem;
	background-color: var(--i_color);
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: left top;
}


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

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

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

	.pt-pagination{display:block}

}
@media screen and (max-width:959px){
	.hot_partner .pt-pagination{margin-top: 0.8rem;}
}
@media screen and (max-width:767px){

	.hot_partner .pt-pagination{margin-top: 0.6rem;}
}
@media screen and (max-width:560px){
	.pt-pagination{margin:14px auto 0}
	.pt-pagination .swiper-pagination-bullet{width:10px; height:10px}
}


/* our_advantage */
.our_advantage{
	box-sizing: border-box;
	padding: 0.9rem 0 0 0;
}
.our_advantage_ul{
	box-sizing: border-box;
	padding-top: 0.7rem;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	gap:0.4rem 0.7rem ;
}
.our_advantage_ul li{
    width: calc(50% - 0.35rem);
	background-color: #FEF0FF;
	border-radius: 0.25rem;
	box-sizing: border-box;
	padding: 0.45rem 4% 0.35rem 4%;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}
.our_advantage_ul li::after{
	content: '';
	position: absolute;
	top: 50%;
	left: -0.01rem;
	width: 0.03rem;
	height: 80%;
	background-color: var(--i_color);
	transform: translate(0,-50%);
	transition: all 0.3s ease;
}
.our_advantage_ul h2{
    font-size: 0.26rem;
	font-weight: bold;
	color: var(--i_color);
	text-transform: uppercase;
	margin-bottom: 0.1rem;
	transition: all 0.3s ease;
}
.our_advantage_ul h3{
    font-size: 0.18rem;
	color: #474747;
	line-height: 0.22rem;
	min-height: 0.44rem;
	transition: all 0.3s ease;
}
.our_advantage_active{
    background: linear-gradient(270deg, #E97597 0%, #8885DE 100%) !important;
}
.our_advantage_active::after{
	height: 0 !important;
}
.our_advantage_active h2{
    color: white;
}
.our_advantage_active h3{
    color: white;
}



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

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

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

}
@media screen and (max-width:1200px) {
	.our_advantage_ul{padding-top: 0.6rem;gap:0.4rem;}
	.our_advantage_ul li{width: calc(50% - 0.2rem);}
}
@media screen and (max-width:1024px) {

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

}
@media screen and (max-width:767px) {
	.our_advantage_ul li{width: 100%;}
	.our_advantage_ul{gap:0.2rem;}
}
@media screen and (max-width:560px) {

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

}





/* 隐私政策 */
.privacy{margin-bottom: 100px;padding-top: 70px;}
#header{background-color: rgb(0 0 0 / 57%) !important;}
.privacy_cont{}
.privacy_cont .tit{margin-bottom:30px}
.privacy_cont .tit h2{font-size:24px; text-align:center; font-weight:bold}
.privacy_cont article, .privacy_cont article *{font-size:14px; color:#666; line-height:24px}
.foot {top: 130px;}
.privacy ol {padding: 0px;}
@media screen and (max-width:1200px){
	.privacy{margin-bottom: 50px;}
}
@media screen and (max-width:959px){
	.privacy{margin-bottom: 30px;}
}




/* 感谢页面 */
.thanks{padding-top: 100px; margin:0px auto 100px; text-align:center; }
.thanks h2{margin-bottom:20px; font-size:30px; color:#222; font-weight:bold}
.thanks a{z-index: 2; display: flex;display: -webkit-flex;justify-content: center; position: relative; transition: all 1s ease;}



.btns {
	height: 4em;
	width: 12em;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0px solid black;
	cursor: pointer;
  }
  .btns:hover p{
	  color: var(--i_color);
  }
  .wrapperss {
	height: 2em;
	width: 8em;
	position: relative;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
  }

.thanks  .text {
	font-size: 17px;
	z-index: 1;
	color: #000;
	padding: 4px 12px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.7);
	transition: all 0.5s ease;
  }

  .flower {
	display: grid;
	grid-template-columns: 1em 1em;
	position: absolute;
	transition: grid-template-columns 0.8s ease;
  }

  .flower1 {
	top: -12px;
	left: -13px;
	transform: rotate(5deg);
  }

  .flower2 {
	bottom: -5px;
	left: 8px;
	transform: rotate(35deg);
  }

  .flower3 {
	bottom: -15px;
	transform: rotate(0deg);
  }

  .flower4 {
	top: -14px;
	transform: rotate(15deg);
  }

  .flower5 {
	right: 11px;
	top: -3px;
	transform: rotate(25deg);
  }

  .flower6 {
	right: -15px;
	bottom: -15px;
	transform: rotate(30deg);
  }

  .petal {
	height: 1em;
	width: 1em;
	border-radius: 40% 70% / 7% 90%;

	background: linear-gradient(#E870A5, #FFEFF6);
	border: 0.5px solid #FFEFF6;
	z-index: 0;
	transition: width 0.8s ease, height 0.8s ease;
  }

  .two {
	transform: rotate(90deg);
  }

  .three {
	transform: rotate(270deg);
  }

  .four {
	transform: rotate(180deg);
  }

  .btns:hover .petal {
	background: linear-gradient(#FFE760, #ebf6d5);
	border: 0.5px solid #ebf6d5;

  }

  .btns:hover .flower {
	grid-template-columns: 1.5em 1.5em;
  }

  .btns:hover .flower .petal {
	width: 1.5em;
	height: 1.5em;
  }

  .btns:hover .text {
	background: rgba(255, 255, 255, 0.4);
  }

  .btns:hover div.flower1 {
	animation: 15s linear 0s normal none infinite running flower1;
  }

  @keyframes flower1 {
	0% {
	  transform: rotate(5deg);
	}

	100% {
	  transform: rotate(365deg);
	}
  }

  .btns:hover div.flower2 {
	animation: 13s linear 1s normal none infinite running flower2;
  }

  @keyframes flower2 {
	0% {
	  transform: rotate(35deg);
	}

	100% {
	  transform: rotate(-325deg);
	}
  }

  .btns:hover div.flower3 {
	animation: 16s linear 1s normal none infinite running flower3;
  }

  @keyframes flower3 {
	0% {
	  transform: rotate(0deg);
	}

	100% {
	  transform: rotate(360deg);
	}
  }

  .btns:hover div.flower4 {
	animation: 17s linear 1s normal none infinite running flower4;
  }

  @keyframes flower4 {
	0% {
	  transform: rotate(15deg);
	}

	100% {
	  transform: rotate(375deg);
	}
  }

  .btns:hover div.flower5 {
	animation: 20s linear 1s normal none infinite running flower5;
  }

  @keyframes flower5 {
	0% {
	  transform: rotate(25deg);
	}

	100% {
	  transform: rotate(-335deg);
	}
  }

  .btns:hover div.flower6 {
	animation: 15s linear 1s normal none infinite running flower6;
  }

  @keyframes flower6 {
	0% {
	  transform: rotate(30deg);
	}

	100% {
	  transform: rotate(390deg);
	}
  }














@media screen and (max-width:1200px){
	.thanks{padding-top: 60px;}

}
@media screen and (max-width:767px){
	.thanks{padding-top: 40px;margin:0px auto 70px}

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

}






/* ---------------------- Aside Form ---------------------- */
.contactMenu{--menuColor:#333}
.contactMenu{position: fixed;right: 0;bottom: 0;width: 340px;box-shadow: -6px -4px 10px rgb(0 0 0 / 10%);z-index: 99999999999999999999;}
.contactMenuBtn{width: 100%;display:-webkit-flex; display:flex; flex-wrap:nowrap;position: relative;z-index: 3;}
.contactMenuBtn dt{width: 100%;text-align: center;cursor: pointer;}
.contactMenuBtn dt a,.contactMenuBtn dt p{display: block; padding: 8px 10px;color: #FFF;}
.contactMenuBtnWA{display: none;background: #0ABA28;}
.contactMenuBtnForms{background: var(--i_color);}

.contactMenu_Forms{
	display: none;
	position: absolute;
	right: 0;
	bottom: calc(100% - 1px);
	width: 100%;
	box-shadow: -6px -4px 10px rgb(0 0 0 / 10%);
	z-index: 999;
}
.contactMenu_FormsTit{padding: 8px 50px; text-align: center;background: var(--i_color); cursor: pointer;position: relative;}
.contactMenu_FormsTit p{color: #FFF;}
.contactMenu_FormsTit iconify-icon{opacity: 0; position:absolute; top:50%; transform:translate(0,-50%);right: -20px;font-size: 24px;color: #FFF;}
.contactMenu_FormsTit.active iconify-icon{opacity: 1; right: 10px; -webkit-transition:all .6s .5s; transition:all .6s .5s;}
.contactMenu_Forms>span{display: block; padding: 24px; background: #FFF;}

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

#wpforms-46 .wpforms-field-container{}
#wpforms-46 .wpforms-field-container>.wpforms-field{
	width: 100%;
	padding: 0 1px 5px;
	margin: 0 0 6px;
	overflow-x:initial !important;
	position: relative;
}

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

#wpforms-46 .wpforms-field-container .wpforms-field>input,
#wpforms-46 .wpforms-field-container textarea{
	border: 1px solid #CCC;
	-webkit-border-radius:4px;
	border-radius:4px;
	box-sizing: border-box;
	padding: 0.05rem 0;
}
#wpforms-46 .wpforms-form label.wpforms-error{position: absolute;left: 0;bottom: 0;font-size: 13px;}

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

#wpforms-46 .wpforms-submit-container{width: 100%; padding: 0;-webkit-border-radius:8px; border-radius:8px;overflow: hidden;}
#wpforms-46 .wpforms-submit-container button{
	width: 100%;
	background: #DDD;
	font-size: 15px;
	color: #333;
	font-weight: bold;
	padding: 0.1rem 0.2rem;
	transition: all 0.3s ease;
	cursor: pointer;
}
#wpforms-46 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-46 .wpforms-submit-container button:hover{background: var(--i_color); color: #FFF;}

@media screen and (max-width:1024px) {
	.contactMenu{width: 100%;}
	.contactMenuBtnWA{display: block;}
	.contactMenuBtnWA a{display: block;}
}





/* aside */
.aside_right {
	position: fixed;
	right: 30px;
	bottom: 16%;
	z-index: 999999
}
.aside_right ul {}
.aside_right li {
	margin: .1rem 0;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	cursor: pointer
}
.aside_right li>a {
	display: block;
	width: .5rem;
	height: .5rem;
	background: rgba(128, 128, 128, .5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
	transition: all .3s ease;
}

.aside_right li:nth-child(1)>a {
	background: #389b0f
}
.aside_right li:nth-child(2)>a {
	background: var(--i_color);
}

.aside_right li img {
	display: block;
	margin: 0 auto;
	width: .22rem;
	height: .22rem;
	object-fit: contain
}

.aside_right li:hover>a {
	background-color: var(--i_color)
}

.side_tel_box,
.side_qr_box {
	position: absolute;
	box-shadow: -1px 2px 6px rgba(0, 0, 0, .2);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -1
}
.side_tel_box {
	top: 0;
	right: -300px;
	width: 180px;
	min-height: 100%;
	background: #FFF
}
.side_qr_box {
	top: 50%;
	transform: translate(0, -50%);
	right: -180px;
	width: 120px;
	height: 120px;
	background: #FFF
}

.side_tel_box h6 {
	padding: 8px 0;
	font-size: 14px;
	color: #666
}
.side_tel_box h6 a {
	line-height: 20px
}
.side_tel_box a:hover {
	color: var(--i_color)
}
.side_qr_box img {
	width: 90%;
	height: 90%
}

.aside_right li:hover .side_tel_box,
.aside_right li:hover .side_qr_box {
	right: 48px
}

.side_tel_box,
.side_qr_box {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.aside_close {
	position: absolute;
	top: .3rem;
	right: .3rem;
	display: block;
	width: .3rem;
	height: .3rem;
	background: url(static/imgs/close_1_hei.svg) no-repeat center;
	background-size: 30px;
	cursor: pointer
}
.aside_close:hover {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}
.aside_close {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease
}

#aside_mask_bg {
	display: none;
	position: fixed;
	top: 50%;
	transform: translate(0, -50%);
	left: 0%;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 70%);
	z-index: 9999999999998;
}
#aside_sc_from {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	box-sizing: border-box;
	padding: 30px 30px 40px;
	background: rgb(255 255 255 / 100%);
	z-index: 9999999999999;
	overflow: auto
}
#aside_sc_from .tit {
	margin-bottom: .4rem
}
#aside_sc_from .tit h3 {
	text-align: center;
	font-size: .26rem;
	color: var(--i_color);
	font-weight: bold;
	line-height: .3rem
}

#wpforms-49 {
	--input_font_color: rgb(0 0 0 / 50%);
	--input_font_size: 14px;
	--input_height: 42px
}
#wpforms-49 {
	width: 100%;
	margin: 0 auto;
	padding: 0
}
#wpforms-form-49 {
	width: 100%;
	overflow: hidden
}
#wpforms-49 input,
#wpforms-49 button {
	margin: 0;
	padding: 0;
	border: none;
	background: none
}
#wpforms-49 .wpforms-field {
	padding: 0;
	margin: 0
}
#wpforms-49 .wpforms-error-container {
	line-height: 16px
}
#wpforms-49 .wpforms-field-container {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden
}
#wpforms-49 .wpforms-submit-container {
	padding: 0 !important;
	margin: 0 auto;
	width: 170px;
	height: 38px;
	background: var(--i_color);
	box-sizing: border-box;
	border: 2px solid var(--i_color);
	position: relative
}
#wpforms-49 .wpforms-field-label {
	font-size: 0
}
#wpforms-49 .wpforms-required-label {
	position: absolute;
	top: 16px;
	left: 5px;
	font-size: 16px;
	color: #F00
}
#wpforms-49 .wpforms-field {
	width: 100%;
	margin-bottom: 0;
	padding-bottom: 18px;
	background: transparent;
	position: relative;
	overflow: hidden
}
#wpforms-49 input {
	height: var(--input_height)
}
#wpforms-49 textarea {
	min-height: 100px
}
#wpforms-49 input,
#wpforms-49 textarea {
	width: 100%;
	max-width: 100% !important;
	font-size: var(--input_font_size);
	color: #333;
	box-sizing: border-box;
	border: 1px solid rgb(0 0 0 / 30%);
	line-height: var(--input_height);
	padding: 0 16px
}
#wpforms-49 input::-webkit-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-49 input::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-49 input::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-49 input::-ms-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-49 textarea::-webkit-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-49 textarea::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-49 textarea::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-49 textarea::-ms-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-49 #wpforms-49-field_1-error,
#wpforms-49 #wpforms-49-field_2-error,
#wpforms-49 #wpforms-49-field_3-error,
#wpforms-49 #wpforms-49-field_5-error {
	position: absolute;
	font-size: 13px
}
#wpforms-49 .wpforms-submit-container button {
	width: 100%;
	height: 34px;
	font-size: 14px;
	color: #FFF;
	line-height: 34px;
	cursor: pointer;
	text-transform: uppercase;
	position: relative;
	z-index: 2
}
#wpforms-49 .wpforms-submit-container img {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: 4px
}
#wpforms-49 .wpforms-submit-container:after {
	display: none;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%
}
#wpforms-49 .wpforms-submit-container:hover:after {
	display: block
}
#wpforms-49 .wpforms-submit-container:hover {
	background: #FFF
}
#wpforms-49 .wpforms-submit-container:hover button {
	color: var(--i_color)
}

@media screen and (max-width:1366px) {
	.aside_right li>a {
		width: 0.4rem;
		height: 0.4rem;
	}
}

@media screen and (max-width:1024px) {
	#aside_sc_from {
		width: 94%;
	}
}
@media screen and (max-width:959px) {
	.aside_right {
		right: 22px;
		bottom: 160px;
	}
	.aside_right{
		display: none !important
	}
}
@media screen and (max-width:767px) {
	#aside_sc_from {
		padding: 20px 20px 30px
	}
	#aside_sc_from .tit {
		margin-bottom: 0.3rem;
	}
	#wpforms-49 .wpforms-submit-container {
		height: 34px;
	}
	#wpforms-49 .wpforms-submit-container button {
		height: 30px;
		line-height: 30px;
		font-size: 14px;
	}
}
@media screen and (max-width:560px) {
	#aside_sc_from .tit h3 {
		font-size: 0.24rem;
	}

}





/* eject videos */
.vd_box{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, .5);
	z-index: 999999;
}
.vd_box_area {
	position: absolute;
	top: 52%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2014;
	width: 60%;
	max-height: 90%;

}
.vd_box_area::before {
	content: '';
	display: block;
	padding-bottom: 56.25%;
}
.close_v {
	position: absolute;
	top: -.2rem;
	right: -.2rem;
	width: 0.4rem;
	height: 0.4rem;
	background: var(--i_color);
	z-index: 2;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	cursor: pointer;
}
.close_v::before {
	content: '+';
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 0.44rem;
	color: #FFF;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg)
}
.vd_box iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #000;
	object-fit: contain;
}
@media screen and (max-width:1024px) {
	.vd_box_area {
		width: 80%;
	}
	.close_v::before {
		font-size: 0.4rem;
	}
}
@media screen and (max-width:768px) {
	.vd_box_area {
		width: 88%;
	}
	.close_v {
		top: -.15rem;
		right: -.15rem;
		width: 0.3rem;
		height: 0.3rem;
	}
	.close_v::before {
		font-size: 0.3rem;
	}
}


.form_hide{
	display: none !important;
}


.footer_ewm{

}
.footer_ewm i{
   display: flex;
   justify-content: center;
   align-items: center;
   width: 1.24rem;
   height: 1.24rem;
   box-sizing: border-box;
   padding: 0.06rem;
   border: 1px solid var(--i_color);
   margin-bottom: 0.1rem;
}
.footer_ewm i img{
   width: 100%;
   height: 100%;
   object-fit: contain;
}
.footer_ewm p{
	font-size: 0.16rem;
	color: #fff;

}

/* @media screen and (max-width:1440px){

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

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

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

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

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

} */


