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

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

.wrap_top {
	width: 88%;
	margin: 0 auto
}
.wrap_82{
	width: 82%;
	margin: 0 auto
}
.wrap_left{
	padding-left: 13.5415%;
	box-sizing: border-box;
}
.wrap_right{
	padding-right: 13.5415%;
	box-sizing: border-box;
}
@media screen and (max-width:1600px) {
	.wrap {
		width: 80%
	}
	.wrap_left{padding-left: 10%;}
	.wrap_right{padding-right: 10%;}
	.wrap_82{
		width: 92%;
	}
}
@media screen and (max-width:1440px) {
	.wrap {
		width: 88%
	}
	.wrap_left{padding-left: 6%;}
	.wrap_right{padding-right: 6%;}
	.wrap_82{
		width: 96%;
	}
}
@media screen and (max-width:1366px) {
	.wrap_top {
		width: 96%;
	}
}
@media screen and (max-width:1024px) {
	.wrap {
		width: 94%
	}
	.wrap_left{padding-left: 3%;}
	.wrap_right{padding-right: 3%;}
	.wrap_top {
		position: initial;
	}
}


:root {
	--i_color: #8964AA;
	/* 全局颜色 */
	--i_color2: #D9A52D;
	/* 副颜色 */
	--i_color3: #200C5D;
	--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)
	}
}

@font-face {
	font-family: "Montserrat";
	src: url("https://lingju.global/fonts/Montserrat-Regular.woff2")
		format("woff2");
	font-weight: normal;
}
@font-face {
	font-family: "Montserrat";
	src: url("https://lingju.global/fonts/Montserrat-Bold.woff2") format("woff2");
	font-weight: bold;
}

body{
	font-family: 'Montserrat','Arial',sans-serif;
}

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

.top_cont {
	position: relative;
	z-index: 2013;
}
.top_cont::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.33);
	z-index: -1;
	transition: all 0.3s ease;
}
.top {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	box-sizing: border-box;
	padding-right: 3%;
}
.TopHeader .top_cont{
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}
.TopHeader .top_cont::after{
	background: rgba(255, 255, 255, 1);
}
@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::after{
		background: rgba(255, 255, 255, 1);
	}
	/* .top_cont {
		background: #333 !important;
	} */
}
@media screen and (min-width:1024px){

}


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

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

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


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


}





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

	.i_nav>li {
		position: relative;
		padding: 0 .4rem;
		box-sizing: border-box;
	}
	.i_nav>li:not(:last-child)::after{
		content: '/';
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(50%,-50%);
		color: rgba(51,51,51,0.2);
		font-size: 0.18rem;
	}

	.i_nav>li>a {
		display: block;
		font-size: .18rem;
		font-weight: bold;
		color: #333;
		line-height: var(--header_height);
		white-space: nowrap;
		-webkit-border-radius: .08rem;
		border-radius: .08rem;
		text-transform: capitalize;
		position: relative;
	}
	.i_nav>li>a::after{
		content: '';
        position: absolute;
        top: calc(50% + 0.2rem);
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 100%;
        height: 2px;
        background-color: var(--i_color);
        border-radius: 0.5rem;
        opacity: 0;
        transition: all 0.3s ease;
	}

	.i_nav>.current-menu-item>a,
	.i_nav>.current-category-ancestor>a,
	.i_nav>.current-post-ancestor>a,
	.i_nav>.current-menu-ancestor>a,
	.i_nav>.current-menu-parent>a,
	.i_nav>li:hover>a,
	.i_nav .curr>a {
		color: var(--i_color) !important;
	}

	.i_nav>.current-menu-item>a::after,
	.i_nav>.current-category-ancestor>a::after,
	.i_nav>.current-post-ancestor>a::after,
	.i_nav>.current-menu-ancestor>a::after,
	.i_nav>.current-menu-parent>a::after,
	.i_nav>li:hover>a::after,
	.i_nav .curr>a::after{
		opacity: 1;
        transform: translate(-50%, -50%) scale(1);
	}




	.i_nav .sub-menu {
		display: none;
		position: absolute;
		border-top: 2px solid var(--i_color);
		background: #fff;
		width: 2.8rem;
	}
	.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>li>a {
		display: block;
		padding: 0 .2rem 0 .2rem;
		font-size: 0.15rem;
		color: #333;
		line-height: 0.44rem;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: relative;
		left: 0;
	}
	.i_nav .sub-menu>li>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>li>a,
	.i_nav .sub-menu>li>a::before {
		-webkit-transition: all .5s ease;
		transition: all .5s ease
	}
    .i_nav .sub-menu .sub-menu{
		position: absolute;
		top: -2px;
		right: -2.8rem;
	}

}

@media screen and (max-width:1440px) {
	.i_nav>li {
		padding: 0 .3rem;
	}
}
@media screen and (max-width:1366px) {
	.i_nav>li {
		padding: 0 .25rem;
	}
}
@media screen and (max-width:1200px) {
	.i_nav>li {
		padding: 0 .2rem;
	}
}
@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;
		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: #333;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 3px;
	background: #333;
	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: auto;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: var(--header_height)
}



.top_email{

}
.top_email a{
    display: block;
	margin-right: 0.2rem;
}
.top_email a iconify-icon{
	font-size: var(--size);
	color: var(--i_color);
	transition: all 0.3s ease;
}

.top_email a iconify-icon:hover{
	transform: translateY(-0.05rem);
}





.top_search_ico {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: var(--header_height);
	padding-right: 0.2rem;
	box-sizing: border-box;
	position: relative;
}
.top_search_ico i{
	display: block;
	box-sizing: border-box;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.top_search_ico::after{
	content: '/';
	position: absolute;
	top: 50%;
	right: 0rem;
	font-size: 0.18rem;
	transform: translate(50%,-50%);
	color: rgba(51,51,51,0.2);
}
.top_search_ico iconify-icon {
	font-size: var(--size);
	cursor: pointer;
	color: #333;
	transition: all 0.3s ease;
}
.top_search_ico.on iconify-icon {
	color: var(--i_color);
}


.top_language {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 100%;
}
.top_language_all{
   display: inline-block;
   display: flex;
   display: -webkit-flex;
   align-items: center;
   box-sizing: border-box;
   padding: 0 0.2rem;
   cursor: pointer;
}
.top_language_all p{
   font-size: 0.18rem;
   color: #333;
   margin-right: 0.05rem;
   transition: all 0.3s ease;
   font-family: 'Roboto';
}
.top_language_all iconify-icon{
	font-size: 0.24rem;
	cursor: pointer;
	color: #333;
	line-height: 100%;
	transition: all 0.3s ease;
}
.top_language.on p{
	color: var(--i_color);
}
.top_language.on iconify-icon {
	color: var(--i_color);
}



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

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

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

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

@media screen and (max-width:1600px) {
	.top_language_all p{
		font-size: 0.16rem;
	}
}
@media screen and (max-width:1024px) {

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

}






.top_language,
.top_language>iconify-icon {
	-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_all p {
		font-size: 0.16rem;
	}
}
@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-top: 0.16rem;
	padding-bottom: 0.16rem;
	background: #FFF;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 2000;
	box-sizing: border-box;
	padding-right: 6.4%;

}
.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-left: 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;
	border-radius: 0;
}
.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;
	border-radius: 0;
}

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


}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.top_r {
		margin-left: auto;
	}

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






/* 导航下拉 */
/* products */
@media screen and (min-width:1025px) {
    .xiala{
		position: fixed;
		top: var(--header_height);
		left: 50%;
		transform: translate(-50%,0);
		width: 100%;
		background-color: rgba(255, 255, 255, 1);
		box-sizing: border-box;
		padding:0.4rem 0;
		transition: top 0.3s ease;
		display: none;
		border-top: 1px solid var(--i_color2);
		box-shadow: 0 0.04rem 0.1rem rgba(0, 0, 0, .1);
	}
	.TopHeader .xiala{

	}
    .products_drop_ul{
        display: flex;
		display: -webkit-flex;
		flex-wrap: wrap;
		gap: 0.4rem;
	}
	.products_drop_ul li{
        width: calc((100% - 2.4rem) / 7);
	}
	.products_drop_ul li a{
		display: block;
		width: 100%;
	}
	.products_drop_img{
        position: relative;
		overflow: hidden;
	}
	.products_drop_img::after{
        content: '';
		display: block;
		padding-bottom: 100%;
	}
	.products_drop_img img{
        position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.products_drop_ul li p{
		font-size: 0.16rem;
		color: #222;
		font-family: 'med';
		text-transform: capitalize;
		text-align: center;
		margin-top: 0.2rem;
		transition: all 0.3s ease;
	}
	.products_drop_ul li a:hover p{
		color: var(--i_color);
	}
    .products_nav ul,
	.solutions_nav ul{
		display: none !important;
	}
    .solution_drop{

	}
    .solution_drop_ul{
       display: flex;
	   display: -webkit-flex;
	   gap: 0.4rem 0.7rem;
	   justify-content: center;
	   flex-wrap: wrap;
	}
	.solution_drop_ul li{
       width: 2.2rem;

	}
	.solution_drop_ul li a{
       display: block;
	   width: 100%;
	}
	.solution_drop_img{
       position: relative;
	   overflow: hidden;
	   border-radius: 0.15rem;
	}
	.solution_drop_img::after{
       content: '';
	   display: block;
	   padding-bottom: 100%;
	}
	.solution_drop_img img{
       position: absolute;
	   top: 50%;
	   left: 50%;
       transform: translate(-50%,-50%);
	   width: 100%;
	   height: 100%;
	   object-fit: cover;
	}
	.solution_drop_ul li a p{
       font-size: 0.16rem;
	   line-height: 0.24rem;
	   color: #333;
	   font-family: 'med';
	   text-align: center;
	   text-transform: capitalize;
	   margin-top: 0.2rem;
	   transition: all 0.3s ease;
	}
	.solution_drop_ul li a:hover p{
		color: var(--i_color);
	}


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

	}
	@media screen and (max-width:1600px){
		.products_drop_ul{
			gap: 0.2rem;
		}
		.products_drop_ul li{
			width: calc((100% - 1.2rem) / 7);
		}
		.products_drop_ul li p {
			font-size: 0.14rem;
			margin-top: 0.15rem;
		}
	}
	@media screen and (max-width:1440px){

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

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

	}

}

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



.top_phone{
   display: inline-block;
   box-sizing: border-box;
   padding: 0 0.4rem;
   background-color: var(--i_color2);

}
.top_phone a{
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: var(--header_height);
}
.top_phone a iconify-icon{
   font-size: 0.24rem;
   color: var(--i_color);
}
.top_phone a p{
   font-size: 0.2rem;
   color: #fff;
   font-weight: bold;
   margin-left: 0.1rem;
}



@media screen and (max-width:1440px){
	.top_phone a iconify-icon{
		font-size: 0.22rem;
	}
	.top_phone a p{
		font-size: 0.18rem;
	}
	.top_phone{
		padding: 0 0.35rem;
	}
}
@media screen and (max-width:1366px){

}
@media screen and (max-width:1200px){
	.top_phone a iconify-icon{
		font-size: 0.2rem;
	}
	.top_phone a p{
		font-size: 0.16rem;
	}
	.top_phone{
		padding: 0 0.3rem;
	}
}
@media screen and (max-width:1024px){
	.top_phone{margin-left: 0.2rem;}
}
@media screen and (max-width:960px){

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

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

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

}



/* banner */
.banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	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: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-shrink: 0;
	position: relative;
	overflow: hidden
}
.banner .swiper-slide a{
	display: block;
	width: 100%;
}
.banner .swiper-slide a>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_color)
}


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

.banner-pagination .swiper-pagination-bullet {
	display: block;
	width: 0.05rem;
	height: 0.05rem;
	margin: 0 .05rem;
	border-radius: 0.05rem;
	background: rgb(255 255 255 / 60%);
	position: relative;
	outline: none;
	transition: all 0.3s ease;
}
.banner-pagination .swiper-pagination-bullet-active{
	width: 0.2rem;
	background-color: #fff;
}


@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: 49%
	}

	.banner-button-prev,
	.banner-button-next {
		display: none
	}

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

	.banner-pagination {
		bottom: 0.3rem;
	}

}
@media screen and (max-width:560px) {
	.banner-pagination {
		bottom: 0.2rem;
	}
	.banner .swiper-slide {
		padding-bottom: 65%
	}

}






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

main {
    position: relative;
    background: #FFF;
    max-width: 100%;
	overflow: hidden;
}

footer {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    background-color: white;
}

/* banner 文字 */
.banner_text1{
   position: absolute;
   top: 53%;
   left: 50%;
   transform: translate(-50%,-50%);
}
.banner_text1_box{
   width: 75.43%;
   box-sizing: border-box;
   padding: 0.7rem 4% 0.4rem 4%;
   background: linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 69%);
   backdrop-filter: blur(0.15rem);
   border-radius: 0.2rem;
   overflow: hidden;
}
.banner_text1_box h3{
   font-size: 0.5rem;
   font-weight: bold;
   color: #fff;
   text-shadow:
    -1px -1px 0 var(--i_color),
     1px -1px 0 var(--i_color),
    -1px  1px 0 var(--i_color),
     1px  1px 0 var(--i_color);
	letter-spacing: 0.02em;
    display: inline-block;
	position: relative;
	z-index: 2;
	margin-bottom: 0.4rem;

}
.banner_text1_box h3::after{
	content: '';
	position: absolute;
	width: 140%;
	height: 160%;
	background: linear-gradient(-270deg, rgba(137, 100, 170, 0) 5%, #8964AA 92%);
	border-radius: 1.3rem;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 42%;
	z-index: -1;
}
.banner_text1_box h4{
   font-size: 0.5rem;
   color: var(--i_color);
   font-weight: bold;

}
.banner_text1_ul{
   display: flex;
   gap: 0.3rem;
   margin-top: 0.3rem;
}
.banner_text1_ul li{
   box-sizing: border-box;
   padding: 0.1rem 0.2rem;
   border-radius: 1.2rem;
   font-size: 0.18rem;
   color: #fff;
   font-weight: bold;
   background-color: var(--i_color);
}
.banner_text1_dl{
   display: flex;
   margin-top: 0.15rem;
   gap: 0.2rem;

}
.banner_text1_dl dt{

}
.banner_text1_dl dt:nth-child(1){

}
.banner_text1_dl dt:nth-child(2){
   margin-top: 0.6rem;
}
.banner_text1_dl dt:nth-child(3){
   margin-top: 0.35rem;
}
.banner_text1_dl dt img{
   width: 2.69rem;
   height: auto;
   object-fit: contain;
   max-width: 100%;
}
.banner_text2{
	position: absolute;
	top: 53%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.banner_text2_box{
    width: 59.8%;
}
.banner_text2_box h3{
   font-size: 0.5rem;
   line-height: 120%;
   position: relative;
   z-index: 2;
   font-weight: bold;
   color: #fff;
}
.banner_text2_box h3::after{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 160%;
	height: 120%;
	background-color: var(--i_color);
	z-index: -1;
	border-radius: 1.3rem;
}
.banner_text2_text{
   display: flex;
   flex-direction: column;
   gap: 0.18rem;
   align-items: flex-start;
   margin-top: 0.4rem;
}

.banner_text2_text li{
   box-sizing: border-box;
   padding: 0.04rem 0.25rem 0.04rem 0.3rem;
   font-size: 0.18rem;
   color: var(--i_color);
   text-transform: capitalize;
   position: relative;
   background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FAFAFA 100%);
   border-radius: 1.2rem;
}
.banner_text2_text li::after{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0.15rem;
	width: 0.08rem;
	height: 0.08rem;
	background-color: var(--i_color);
	border-radius: 50%;
}










@media screen and (max-width:1440px){
	.banner_text1_box h3,
	.banner_text1_box h4{
		font-size: 0.4rem;
	}
	.banner_text1_dl dt img{
		width: 2.5rem;
	}
	.banner_text2_box h3{
		font-size: 0.4rem;
	}
}
@media screen and (max-width:1200px){
	.banner_text1_box h3,
	.banner_text1_box h4{
		font-size: 0.3rem;
	}
	.banner_text1_dl dt img{
		width: 2rem;
	}
	.banner_text2_box h3{
		font-size: 0.3rem;
	}
	.banner_text2_box h3::after {
		border-radius: 1rem;
	}
}
@media screen and (max-width:1024px){

	.banner_text1 {
		top: 50%;
	}
	.banner_text1_ul li {
		font-size: 0.16rem;
	}
	.banner_text2_box h3::after {
		border-radius: 0.5rem;
	}
}
@media screen and (max-width:767px){
	.banner_text1_box {
		width: 100%;
		padding: 0.5rem 4% 0.4rem 4%;
	}
	.banner_text1_box h3,
	.banner_text1_box h4{
		font-size: 0.25rem;
	}
	.banner_text1_ul {
		gap: 0.2rem;
		margin-top: 0.2rem;
	}
	.banner_text1_box h3 {
		margin-bottom: 0.25rem;
	}
	.banner_text2_box h3{
		font-size: 0.25rem;
	}
	.banner_text2 {
		top: 48%;
	}
	.banner_text2_box {
		width: 70.8%;
	}
	.banner_text1_box{
		background: transparent;
		backdrop-filter: blur(0rem);
	}
	.banner_text2_text li{
		font-size: 0.14rem;
	}
	.banner_text1_dl dt{
		margin-top: 0 !important;
	}
	.banner_text1_dl{
		gap: 0;
		margin-top: 0;

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

	.banner_text1_box h3,
	.banner_text1_box h4{
		font-size: 0.2rem;
	}
	.banner_text1_box {
        padding: 0.25rem 4% 0.15rem 4%;
    }
	.banner_text2_box h3{
		font-size: 0.2rem;
	}
	.banner_text1_ul{
		margin-top: 0.1rem;
	}
	.banner_text1_ul li {
        font-size: 0.12rem;
		padding: 0.1rem;
		border-radius: 0.3rem;
		text-align: center;
    }
	.banner_text1_dl dt img {
        width: 1rem;
    }
	.banner_text1_ul {
        gap: 0.05rem;
        margin-top: 0.1rem;
    }
}
@media screen and (max-width:425px){

}


/* main_products */
.main_products_bac{
	background: rgba(131, 85, 182, 0.1);
	box-sizing: border-box;
	padding: 0.8rem 0;
	position: relative;
	z-index: 2;
}
.main_productsImg{
	width: 38.5%;
	position: absolute;
	right: 3%;
	top: 3%;
	z-index: -1;
}
.main_products{

}
.main_products_box{
   margin-top: 0.5rem;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}
.main_products_left{
	width: 19.5%;
	box-sizing: border-box;
	padding-right: 4%;
}
.main_products_ul{
   display: flex;
   flex-direction: column;
   gap: 0.2rem;
}
.main_products_ul li{
   font-size: 0.18rem;
   color: #333;
   line-height: 120%;
   font-weight: bold;
   position: relative;
   transition: all 0.3s ease;
   cursor: pointer;
   box-sizing: border-box;
   padding-bottom: 0.1rem;
}
.main_products_ul li::after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 1px;
	background-color: var(--i_color);
	transition: all 0.5s ease;
	border-radius: 0.2rem;
}

.main_products_ul li.current{
	color: var(--i_color) !important;
}
.main_products_ul li.current::after{
	right: auto !important;
	left: 0 !important;
	width: 100% !important;
}
.main_products_right{
	width: 79.5%;
}




/*  */
.mapro_partner_box{}

.mapro_partner{position:relative}
.mapro_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.mapro_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.mapro_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
}

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


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

.mapro_partner_list li a{
	display: block;
	width: 100%;
}
.mapro_partner_list li a p{
	font-size: 0.18rem;
	color: #333;
	font-weight: bold;
	text-align: center;
	box-sizing: border-box;
	padding: 0.1rem;
	border-radius: 0.1rem;
	margin-top: 0.15rem;
	transition: all 0.3s ease;
	overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
	width: 100%;
}
.mapro_partner_list li a:hover p{
    color: #fff;
	background-color: var(--i_color);
}




/* 指示器 */
.mapro_partner .pt-pagination{
	display:none;
	text-align:center;
	margin:0.4rem auto 0
}
.mapro_partner .pt-pagination .swiper-pagination-bullet{
	width:0.12rem;
	height:0.12rem;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	cursor:pointer;
	display:inline-block;
	margin:0 0.05rem;
	background:var(--i_color);
	border-radius:2px;
	opacity: 1;
	outline:none
}
.mapro_partner .pt-pagination .swiper-pagination-bullet-active{
	position:relative;
	background:transparent;
}

/* 左右箭头 */
.mapro_LR{
	display: flex;
	gap: 0.15rem;
	margin-top: 0.7rem;
}
.mapro_LR .pt-button-prev, .mapro_LR .pt-button-next{
	width:0.36rem;
	height:0.36rem;
	border: 1px solid var(--i_color);
	box-sizing: border-box;
	z-index:999;
	cursor:pointer;
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.mapro_LR .pt-button-prev iconify-icon, .mapro_LR .pt-button-next iconify-icon{
	font-size: 0.2rem;
	color: var(--i_color);
	transition: all 0.3s ease;
}

.mapro_LR .pt-button-prev:hover, .mapro_LR .pt-button-next:hover{
	background-color: var(--i_color);
}
.mapro_LR .pt-button-prev:hover iconify-icon, .mapro_LR .pt-button-next:hover iconify-icon{
	color: #fff;
}





@media screen and (max-width:1440px){
	.mapro_LR {
		margin-top: 0.6rem;
	}
}
@media screen and (max-width:1200px){
	.mapro_LR {
		margin-top: 0.4rem;
	}
}
@media screen and (max-width:1024px){

}
@media screen and (max-width:767px){
	.main_products_left {
		width: 100%;
		padding-right: 3%;
	}
	.main_products_ul li{
		width: calc((100% - 0.2rem) / 2);
	}
	.main_products_ul {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.main_products_right {
		width: 100%;
		margin-top: 0.4rem;
		box-sizing: border-box;
		padding-right: 3%;
	}
	.main_products_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:560px){

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

}






/* title */
.title{

}
.title p{
   font-size: 0.36rem;
   color: #333;
   font-weight: bold;
   position: relative;
   box-sizing: border-box;
   padding-bottom: 0.15rem;
   text-transform: capitalize;
}
.title p::after{
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0.6rem;
   height: 0.05rem;
   background-color: var(--i_color);
   border-radius: 0.2rem;
}
.title span{
	font-size: 0.18rem;
	color: #666;
	display: block;
	margin-top: 0.15rem;
	line-height: 166%;

}

.title_center p,
.title_center span{
	text-align: center;
}
.title_center p::after{
	left: 50% !important;
	transform: translateX(-50%) !important;
}


@media screen and (max-width:1440px){
	.title p{
		font-size: 0.32rem;
		padding-bottom: 0.1rem;
	}
	.title span{
		margin-top: 0.1rem;
	}
}
@media screen and (max-width:1200px){

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

}
@media screen and (max-width:767px){
	.title p{
		font-size: 0.28rem;
	}
}
@media screen and (max-width:560px){

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

}


/* home_about */
.home_about_bac{
	background: linear-gradient(0deg, rgba(156, 61, 168, 0.1) 0%, rgba(156, 61, 168, 0) 100%);
	box-sizing: border-box;
	padding: 0.8rem 0 0rem 0;
}
.home_about{
	position: relative;
	box-sizing: border-box;
	padding-bottom: 1.8rem;
}
.home_about_box{
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   overflow: hidden;

}
.home_about_left{
   width: 51%;
   position: relative;
}
.home_about_left img{
   width: 100%;
   height: auto;
   border-radius: 0.1rem;
}
.home_about_text{
   position: absolute;
   bottom: 8%;
   left: 0;
   width: 2.96rem;
   box-sizing: border-box;
   padding: 0.3rem 0.1rem;
   border-radius: 0 0.1rem 0.1rem 0;
   background-color: var(--i_color);
   display: flex;
   align-items: center;
   gap: 0.2rem;
}
.home_about_text p{
   font-size: 0.5rem;
   color: #fff;
   font-weight: bold;
}
.home_about_text span{
   font-size: 0.16rem;
   color: #fff;
   line-height: 150%;
}
.home_about_right{
   width: 48%;
   box-sizing: border-box;
   padding-left: 4%;
}
.home_about_right h3{
   font-size: 0.4rem;
   line-height: 125%;
   color: var(--i_color);
   font-weight: bold;
   margin-bottom: 0.25rem;
}
.home_about_right h4{
   font-size: 0.18rem;
   color: #333;
   line-height: 166%;
}
.home_about_yt{
	display: flex;
	gap: 0.4rem;
	align-items: center;
	margin-top: 0.5rem;
}
.home_about_i{
	display: block;
	cursor: pointer;
}
.home_about_i img{
    width: 0.55rem;
	height: auto;
	border: 1px solid var(--i_color);
	border-radius: 50%;
}

.home_about_ul{
	box-shadow: 0px 5px 20px 0px rgba(156, 61, 168, 0.15);
	border-radius: 0.8rem 0 0.8rem 0;
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
    box-sizing: border-box;
	padding: 0.2rem 5%;
	transform: translateY(50%);
}
.home_about_ul li{
   width: calc(100% / 3);
   display: flex;
   gap: 0.2rem;
   align-items: center;
   justify-content: center;
   box-sizing: border-box;
   padding: 0.4rem 2%;
}
.home_about_ul li:not(:last-child){
	border-right: 1px solid #E5E5E5;
}
.home_about_ul li img{
   width: 0.8rem;
   object-fit: contain;
}
.home_about_area{

}
.home_about_area h3{
   font-size: 0.45rem;
   color: var(--i_color);
   font-weight: bold;
}
.home_about_area h3 span{
	font-size: 0.45rem;
	color: var(--i_color);
	font-weight: bold;
}
.home_about_area h4{
    font-size: 0.16rem;
	color: rgba(51,51,51,0.2);
}











@media screen and (max-width:1440px){
	.home_about_right h3 {
		font-size: 0.35rem;
		margin-bottom: 0.2rem;
	}
	.home_about_right h4 {
		font-size: 0.16rem;
	}
	.home_about_yt {
		gap: 0.4rem;
		margin-top: 0.4rem;
	}
	.home_about_i img {
		width: 0.5rem;
	}
	.home_about_text p {
		font-size: 0.4rem;
	}
	.home_about_ul li {
		padding: 0.3rem 2%;
	}
	.home_about_area h3,
	.home_about_area h3 span{
		font-size: 0.4rem;
	}
	.home_about_ul li img{
		width: 0.7rem;
	}
	.home_about_ul {
		border-radius: 0.6rem 0 0.6rem 0;
	}
	.home_about {
		padding-bottom: 1.6rem;
	}
}
@media screen and (max-width:1200px){
	.home_about_right h3 {
		font-size: 0.3rem;
	}
	.home_about_yt {
		gap: 0.3rem;
		margin-top: 0.3rem;
	}
	.home_about_text p {
		font-size: 0.35rem;
	}
	.home_about_text {
		padding: 0.2rem 0.1rem;
	}
	.home_about_ul li {
		padding: 0.2rem 2%;
	}
	.home_about_area h3,
	.home_about_area h3 span{
		font-size: 0.3rem;
	}
	.home_about_ul li img{
		width: 0.6rem;
	}
	.home_about {
		padding-bottom: 1.4rem;
	}
}
@media screen and (max-width:1024px){
	.home_about_right h3 {
		font-size: 0.25rem;
	}
	.home_about_text p {
		font-size: 0.3rem;
	}
	.home_about {
		padding-bottom: 1.2rem;
	}
}
@media screen and (max-width:767px){
	.home_about_i img {
		width: 0.4rem;
	}
	.home_about_left {
		width: 100%;
	}
	.home_about_right {
		width: 100%;
		margin-top: 0.4rem;
		padding-left: 0%;
	}
	.home_about_ul li {
		gap: 0.1rem;
	}
	.home_about_bac {
		padding: 0.6rem 0 0rem 0;
	}
}
@media screen and (max-width:560px){
	.home_about_ul li {
		width: calc(100% / 2);
	}
	.home_about_ul{
		position: relative;
		top: unset;
		left: unset;
		bottom: unset;
		transform: unset;
		margin-top: 0.4rem;
	}
	.home_about {
        padding-bottom: 0.6rem;
    }
	.home_about_ul li:not(:last-child) {
		border-right: 1px solid transparent;
	}
}
@media screen and (max-width:425px){

}

/* home_btn */
.home_btn{

}
.home_btn a{
   display: inline-block;
   box-sizing: border-box;
   padding: 0.14rem 0.22rem;
   background-color: var(--i_color);
   border-radius: 2rem;
   position: relative;
   z-index: 2;
   overflow: hidden;
}
.home_btn a::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	height: 100%;
	border-radius: 2rem;
	background: #333;
	transition: all 0.7s ease;
	z-index: -1;
}
.home_btn_flex{
   display: flex;
   align-items: center;
   gap: 0.1rem;
}
.home_btn_flex p{
   font-size: 0.18rem;
   color: #fff;

}
.home_btn_flex iconify-icon{
   font-size: 0.22rem;
   color: #fff;
}
.home_btn a:hover::after{
	width: 100%;
	right: auto;
	left: 0;
}



@media screen and (max-width:1440px){
	.home_btn a{
		padding: 0.12rem 0.2rem;
	}
	.home_btn_flex p{
		font-size: 0.16rem;
	}
	.home_btn_flex iconify-icon{
		font-size: 0.2rem;
	}
}
@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){

}


/* home_adv */
.home_adv_bac{
   box-sizing: border-box;
   padding: 2rem 0 0.8rem 0;
}
.home_adv{

}
.home_adv_box{
   position: relative;
   margin-top: 1rem;
}
.home_adv_img{
   width: 31.29%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
}
.home_adv_ul{
   display: flex;
   flex-wrap: wrap;
   gap: 0.9rem 10%;
   justify-content: space-between;
}
.home_adv_ul li{
   width: 28.36%;
}
.home_adv_ul li img{
   width: 0.52rem;
}
.home_adv_ul li h3{
   font-size: 0.24rem;
   color: #333;
   font-weight: bold;
   margin: 0.15rem 0 0.2rem 0;
   text-transform: capitalize;
}
.home_adv_ul li h4{
	font-size: 0.18rem;
	color: #333;
	line-height: 166%;
}
.home_adv_ul li:nth-child(1),
.home_adv_ul li:nth-child(3){
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.home_adv_ul li:nth-child(1) h3,
.home_adv_ul li:nth-child(3) h3{
	text-align: right;
}
.home_adv_ul li:nth-child(1) h4,
.home_adv_ul li:nth-child(3) h4{
	text-align: right;
}









@media screen and (max-width:1440px){
	.home_adv_bac{
		padding: 1.8rem 0 0.8rem 0;
	}
	.home_adv_ul li img{
		width: 0.48rem;
	}
	.home_adv_ul li h3{
		font-size: 0.22rem;
	}
	.home_adv_ul {
		gap: 0.8rem 10%;
	}
	.home_adv_box {
		margin-top: 0.8rem;
	}
}
@media screen and (max-width:1200px){
	.home_adv_bac{
		padding: 1.6rem 0 0.8rem 0;
	}
	.home_adv_ul {
		gap: 0.6rem 10%;
	}
	.home_adv_ul li h4 {
		font-size: 0.16rem;
	}
	.home_adv_box {
		margin-top: 0.6rem;
	}
}
@media screen and (max-width:1024px){
	.home_adv_bac{
		padding: 1.4rem 0 0.8rem 0;
	}
}
@media screen and (max-width:767px){
	.home_adv_bac{
		padding: 1.2rem 0 0.6rem 0;
	}
	.home_adv_img{
		display: none;
	}
	.home_adv_ul {
        gap: 0.4rem;
    }
	.home_adv_ul li {
		width: calc((100% - 0.4rem) / 2);
	}
}
@media screen and (max-width:560px){
	.home_adv_bac{
		padding: 0.6rem 0;
	}
	.home_adv_ul li h3 {
        font-size: 0.2rem;
    }
}
@media screen and (max-width:425px){

}


/* certificate */
.certificate_bac{

}
.certificate{

}
.certificate_box{
	display: flex;
	box-sizing: border-box;
	padding: 0.8rem 4%;
	flex-wrap: wrap;
	background: linear-gradient(180deg, rgba(168, 102, 176, 0) 0%, rgba(250, 214, 255, 0.27) 100%);
	border-radius: 0.2rem;
}
.certificate_left{
   width: 43.5%;
   box-sizing: border-box;
   padding-right: 5%;
}
.certificate_left .home_btn{
	margin-top: 0.5rem;
}
.certificate_right{
   width: 56.5%;
   box-sizing: border-box;
   padding: 0 5%;
}






/*  */
.cer_partner_box{}

.cer_partner{position:relative}
.cer_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.cer_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.cer_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
	background-color: var(--i_color);
	box-sizing: border-box;
	padding: 0.03rem;
}

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


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

.cer_partner_list li p{
	position: absolute;
	box-sizing: border-box;
	padding: 1rem 2% 0.2rem 2%;
	background: linear-gradient(180deg, rgba(137, 100, 170, 0) 0%, #8964AA 100%);
	font-size: 0.16rem;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 150%;
	bottom: -100%;
	left: 0;
	width: 100%;
	transition: all 0.7s ease;
}
.cer_partner_list li:hover p{
	bottom: 0;
}






/* 指示器 */
.cer_partner .pt-pagination{
	display:none;
	text-align:center;
	margin:0.4rem auto 0
}
.cer_partner .pt-pagination .swiper-pagination-bullet{
	width:0.12rem;
	height:0.12rem;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	cursor:pointer;
	display:inline-block;
	margin:0 0.05rem;
	background:var(--i_color);
	border-radius:2px;
	opacity: 1;
	outline:none
}
.cer_partner .pt-pagination .swiper-pagination-bullet-active{
	position:relative;
	background:transparent;
}

/* 左右箭头 */
.cer_partner .pt-button-prev, .cer_partner .pt-button-next{
	position:absolute;
	top:50%;
	transform:translate(0,-50%);
	width: 0.36rem;
	height:0.36rem;
	border: 1px solid var(--i_color);
	box-sizing: border-box;
	z-index:999;
	cursor:pointer;
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.cer_partner .pt-button-prev iconify-icon, .cer_partner .pt-button-next iconify-icon{
	font-size: 0.2rem;
	color: var(--i_color);
	transition: all 0.3s ease;
}
.cer_partner .pt-button-prev{left:-10%;}
.cer_partner .pt-button-next{right:-10%;}

.cer_partner .pt-button-prev:hover, .cer_partner .pt-button-next:hover{
	background-color: var(--i_color);
}
.cer_partner .pt-button-prev:hover iconify-icon, .cer_partner .pt-button-next:hover iconify-icon{
	color: #fff;
}

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

}
@media screen and (max-width:1200px){
	.cer_partner .pt-button-prev, .cer_partner .pt-button-next{display:none}
	.cer_partner .pt-pagination{display:block}
	.certificate_right {
		padding: 0%;
	}
}
@media screen and (max-width:1024px){

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

}
@media screen and (max-width:767px){
	.certificate_left{
		width: 100%;
		padding-right: 0%;
	}
	.certificate_left .home_btn{
		margin-top: 0.4rem;
	}
	.certificate_right{
		width: 100%;
		margin-top: 0.4rem;
	}
	.certificate_box {
		padding: 0.6rem 4%;
	}
}
@media screen and (max-width:560px){
	.certificate_box {
		padding: 0.4rem 4%;
	}
}


/* home_news */
.home_news_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
   background: linear-gradient(0deg, rgba(156, 61, 168, 0.1) 0%, rgba(156, 61, 168, 0) 100%);

}
.home_news{

}
.home_news_box{
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   margin-top: 0.6rem;
}
.home_news_left{
   width: 47.14%;
}
.home_news_left a{
   display: block;
   position: relative;
   overflow: hidden;
   border-radius: 0.1rem;
}
.home_news_left a::after{
   content: '';
   display: block;
   padding-bottom: 71.52%;
}
.home_news_left a img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.3s ease;
}
.home_news_left a:hover img{
	width: 110%;
	height: 110%;
}
.home_news_leftText{
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   box-sizing: border-box;
   padding: 1.3rem 4% 0.3rem 4%;
   background: linear-gradient(180deg, rgba(137, 100, 170, 0) 0%, rgba(137, 100, 170, 0.7) 100%);
}
.home_news_leftText h3{
   font-size: 0.14rem;
   color: #fff;
   margin-bottom: 0.1rem;
}
.home_news_leftText h4{
   font-size: 0.18rem;
   color: #fff;
   line-height: 144%;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   width: 100%;
   font-weight: bold;
}
.home_news_right{
   width: 52.86%;
   box-sizing: border-box;
   padding-left: 4%;
}
.home_news_ul{
   display: flex;
   flex-direction: column;
}
.home_news_ul li{

}
.home_news_ul li a{
   display: block;
   width: 100%;
   box-sizing: border-box;
   padding: 0.3rem 0;
   position: relative;
   border-bottom: 1px solid rgba(51,51,51,0.2);
   transition: all 0.3s ease;
}
.home_news_ul li a::after{
   content: '';
   position: absolute;
   bottom: 0;
   right: 0;
   width: 0;
   height: 1px;
   background-color: var(--i_color);
   transition: all 0.7s ease;
}
.home_news_ul li a h3{
   font-size: 0.14rem;
   color: #666;
   margin-bottom: 0.1rem;
   transition: all 0.3s ease;
}
.home_news_text{
   display: flex;
   align-items: center;
   gap: 0.6rem;
   justify-content: space-between;
}
.home_news_text h4{
   font-size: 0.18rem;
   color: #333;
   line-height: 144%;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   font-weight: bold;
}
.home_news_text iconify-icon{
   font-size: 0.3rem;
   color: #666;
}
.home_news_ul li a:hover{
	border-bottom: 1px solid transparent;
}
.home_news_ul li a:hover::after{
	right: auto;
	left: 0;
	width: 100%;
}
.home_news_ul li a:hover h4{
	color: var(--i_color);
}

@media screen and (max-width:1440px){
	.home_news_ul li a {
		padding: 0.25rem 0;
	}
	.home_news_text {
		gap: 0.4rem;
	}
}
@media screen and (max-width:1200px){
	.home_news_ul li a {
		padding: 0.2rem 0;
	}
	.home_news_text {
		gap: 0.2rem;
	}
}
@media screen and (max-width:1024px){

}
@media screen and (max-width:767px){
	.home_news_left {
		width: 100%;
	}
	.home_news_right {
		width: 100%;
		margin-top: 0.3rem;
		padding-left: 0%;
	}
	.home_news_box {
		margin-top: 0.4rem;
	}
	.home_news_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:560px){

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

}


/* partner */
.partner_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
}
.partner{

}








/*  */
.par_partner_box{
	margin-top: 0.5rem;
}

.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 li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
	border: 1px solid #D6D6D6;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

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


.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_list li:hover{
	border: 1px solid var(--i_color);
}
.par_partner_list li:hover img{
	filter: grayscale(0%) opacity(1);
}









/* 指示器 */
.par_partner .pt-pagination{
	display:none;
	text-align:center;
	margin:0.4rem auto 0
}
.par_partner .pt-pagination .swiper-pagination-bullet{
	width:0.12rem;
	height:0.12rem;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	cursor:pointer;
	display:inline-block;
	margin:0 0.05rem;
	background:var(--i_color);
	border-radius:2px;
	opacity: 1;
	outline:none
}
.par_partner .pt-pagination .swiper-pagination-bullet-active{
	position:relative;
	background:transparent;
}

/* 左右箭头 */
.par_partner .pt-button-prev, .par_partner .pt-button-next{
	position:absolute;
	top:50%;
	transform:translate(0,-50%);
	width:0.5rem;
	height:0.5rem;
	border: 1px solid var(--i_color);
	box-sizing: border-box;
	z-index:999;
	cursor:pointer;
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.par_partner .pt-button-prev iconify-icon, .par_partner .pt-button-next iconify-icon{
	font-size: 0.2rem;
	color: var(--i_color);
	transition: all 0.3s ease;
}
.par_partner .pt-button-prev{left:-5%;}
.par_partner .pt-button-next{right:-5%;}

.par_partner .pt-button-prev:hover, .par_partner .pt-button-next:hover{
	background-color: var(--i_color);
}
.par_partner .pt-button-prev:hover iconify-icon, .par_partner .pt-button-next:hover iconify-icon{
	color: #fff;
}

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

}
@media screen and (max-width:1200px){
	.par_partner .pt-button-prev, .par_partner .pt-button-next{display:none}
	.par_partner .pt-pagination{display:block}
	.partner_bac {
		padding: 0.6rem 0;
	}
	.par_partner_box{
		margin-top: 0.3rem;
	}
}
@media screen and (max-width:1024px){

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

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

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

}


/* footer */
.footer_bac{

}
.footer{

}
.footer_top{
	background: linear-gradient(270deg, rgba(137, 100, 170, 0) 0%, #8964AA 100%);
	box-sizing: border-box;
    padding: 0.3rem 0 0.35rem 0;
}
.footer_top_box{
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.footer_logo{
   display: flex;
   gap: 0.2rem;
   align-items: flex-end;
}
.footer_logo img{
   height: 0.64rem;
}
.footer_logo p{
   font-size: 0.26rem;
   color: #fff;
   font-weight: bold;
}
.footer_center{
   display: flex;
   box-sizing: border-box;
   padding: 0.6rem 0;
}
.footer_1{
   width: 53.6%;
   box-sizing: border-box;
   padding-right: 14%;
}
.footer_contact{
   display: flex;
   flex-direction: column;
   gap: 0.3rem;

}
.footer_contact li{
   display: flex;
   gap: 0.12rem;
}
.footer_contact li iconify-icon{
   font-size: 0.24rem;
   color: var(--i_color);
   display: block;
   margin-top: 1px;
}
.footer_contact li a{
   font-size: 0.18rem;
   line-height: 166%;
   color: #333;
   transition: all 0.3s ease;
}
.footer_contact li a:hover{
	color: var(--i_color);
}
.footer_share{
   display: flex;
   gap: 0.16rem;
   margin-top: 0.5rem;
}
.footer_share dt{

}
.footer_share dt a{
   display: block;
   width: 100%;
}
.footer_share dt a img{
	width: 0.32rem;
	transition: all 0.3s ease;
}
.footer_share dt a:hover img{
	transform: translateY(-5px);
}
.footer_2{
	width: 24%;
}
.footer_h3{
   font-size: 0.3rem;
   color: #333;
   font-weight: bold;
   margin-bottom: 0.2rem;
}
.footer_ul{
   display: flex;
   flex-direction: column;
   gap: 0.2rem;
}
.footer_ul ul{
	display: none !important;
}
.footer_ul li{

}
.footer_ul li a{
   font-size: 0.18rem;
   color: #333;
   position: relative;
   transition: all 0.3s ease;
}
.footer_ul li a::after{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: var(--i_color);
	transition: all 0.3s ease;
}
.footer_ul li a:hover{
	color: var(--i_color);
}
.footer_ul li a:hover::after{
	right: auto;
	width: 100%;
	left: 0;
}
.footer_3{
	width: 22.4%;
}
.footer_down{
   box-sizing: border-box;
   padding: 0.25rem 0;
   background-color: var(--i_color);
}
.footer_down p{
	font-size: 0.16rem;
	color: #fff;
}
.footer_down p a{
   font-size: 0.16rem;
   color: #fff;
   border-bottom: 1px solid transparent;
   transition: all 0.3s ease;
}
.footer_down p a:hover{
	border-bottom: 1px solid #fff;
}




@media screen and (max-width:1440px){
	.footer_logo p {
		font-size: 0.24rem;
	}
	.footer_logo img {
		height: 0.6rem;
	}
	.footer_h3 {
		font-size: 0.28rem;
	}
}
@media screen and (max-width:1200px){
	.footer_logo p {
		font-size: 0.22rem;
	}
	.footer_logo img {
		height: 0.55rem;
	}
}
@media screen and (max-width:1024px){
	.footer_logo p {
		font-size: 0.2rem;
	}
	.footer_logo img {
		height: 0.5rem;
	}
	.footer_logo p{
		display: none;
	}
	.footer_2,
	.footer_3{
		display: none;
	}
	.footer_1 {
		width: 100%;
		padding-right: 0%;
	}
}
@media screen and (max-width:767px){
	.footer_contact {
		gap: 0.2rem;
	}
	.footer_share {
		margin-top: 0.3rem;
	}
	.footer_center {
		padding: 0.4rem 0;
	}
	.footer_down {
		padding: 0.25rem 0 0.75rem 0;
	}
}
@media screen and (max-width:560px){

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

}


/* banner_about */
.banner_about{
   position: relative;
}
.banner_about::after{
   content: '';
   display: block;
   padding-bottom: 36.46%;
}
.banner_about img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
}

@media screen and (max-width:1024px){
	.banner_about{
		margin-top: var(--header_height);
	}
}



/* 当前位置 */
.in_position{padding:0.14rem 0;background-color: rgba(137,100,170,0.05);}

.in_position a{display:block; float:left; font-size:0.14rem; color:#4C4C4C; position:relative; line-height:0.2rem; text-transform:capitalize}
.in_position a:first-child{padding-left:0.24rem; background:url(static/imgs/home_b.svg) no-repeat left center; background-size:0.16rem}
.in_position a:not(:last-child):after{content:">"; margin:0 0.1rem; 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{
	  display: none;
    }
}
@media screen and (max-width:767px){

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

}


/* about_us */
.about_us_bac{
   box-sizing: border-box;
   padding: 0.6rem 0 0.8rem 0;
}
.about_us{

}
.about_us>h3{
   font-size: 0.4rem;
   color: var(--i_color);
   font-weight: bold;
   margin-bottom: 0.3rem;
}
.about_us_box{
   display: flex;
   flex-wrap: wrap;

}
.about_us_left{
   width: 75.7%;
}
.about_us_left p{
   font-size: 0.18rem;
   line-height: 166%;
   color: #333;
   box-sizing: border-box;
   padding-right: 3%;
   height: 5.27rem;
   overflow: auto;
}

/*滚动条*/
.about_us_left p::-webkit-scrollbar{width:5px; height:5px}
.about_us_left p::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2);border-radius: 0.1rem; background:var(--i_color)}
.about_us_left p::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2);border-radius: 0.1rem; border-radius:0; background:rgba(156, 61, 168, 0.2)}


.about_us_right{
   width: 24.3%;
   box-sizing: border-box;
   padding-left: 3%;
}
.about_us_ul{
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
}
.about_us_ul li{

}
.about_us_text{
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.about_us_text h3{
	font-size: 0.42rem;
	color: var(--i_color);
	font-weight: bold;
}
.about_us_text h3 span{
   font-size: 0.42rem;
   color: var(--i_color);
   font-weight: bold;
}
.about_us_text img{
   width: 0.8rem;
}
.about_us_ul li h4{
   font-size: 0.18rem;
   color: #333;
   box-sizing: border-box;
   padding-top: 0.2rem;
   border-top: 1px solid var(--i_color);
}

.about_us_img{
   position: relative;
   overflow: hidden;
   margin-top: 0.4rem;
}
.about_us_img img{
	width: 100%;
	border-radius: 1rem 1rem 0.1rem 0.1rem;
}

.about_us_img i {
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    background: url(static/imgs/video.png) center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.i_v_btn::before {
    animation: serv_one_border 2s 0s ease infinite;
}

.i_v_btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-50%,-50%);
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
}
.i_v_btn span::before{
	content: '';
    position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-50%,-50%);
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
}
.i_v_btn span::after{
	content: '';
    position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-50%,-50%);
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
}
.i_v_btn span::before {
    animation: serv_one_border 1.5s 0s ease infinite;
}
.i_v_btn span::after {
    animation: serv_one_border 2.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.5);
		-ms-transform:translate(-50%,-50%) scale(1.5);
		-o-transform:translate(-50%,-50%) scale(1.5);
		-webkit-transform:translate(-50%,-50%) scale(1.5);
		-moz-transform:translate(-50%,-50%) scale(1.5);
	}
}

@keyframes yuan{
	0%{
		transform:translate(-50%,-50%) rotate(0deg);
	}
	100%{
		transform:translate(-50%,-50%) rotate(360deg);
	}
}


@media screen and (max-width:1440px){
	.about_us>h3 {
		font-size: 0.35rem;
	}
	.about_us_img img {
		border-radius: 0.8rem 0.8rem 0.1rem 0.1rem;
	}
}
@media screen and (max-width:1200px){
	.about_us>h3 {
		font-size: 0.3rem;
		margin-bottom: 0.2rem;
	}
	.about_us_img img {
		border-radius: 0.6rem 0.6rem 0.1rem 0.1rem;
	}
	.about_us_bac {
		padding: 0.4rem 0 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
    .about_us_right{
		display: none;
	}
	.about_us_left {
		width: 100%;
	}
}
@media screen and (max-width:767px){

}
@media screen and (max-width:560px){
	.about_us_img img{
		height: 2.5rem;
		object-fit: cover;
	}
}
@media screen and (max-width:425px){

}


/* 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: 46%;
    left: 53%;
	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;
	}
}



/* about_env */
.about_env_bac{
   box-sizing: border-box;
   padding: 1rem 0;
   background: linear-gradient(0deg, rgba(156, 61, 168, 0.1) 0%, rgba(156, 61, 168, 0) 100%);
}
.about_env{

}




.in_history_list {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	margin-top: 0.4rem;
}
.in_history_list .swiper-slide{
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
}
.gallery-top {
	margin: .2rem 0 0 0;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}

.gallery-top .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
}

.gallery-top .swiper-slide {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.about_history_img{
	position: relative;
	overflow: hidden;
	width: 100%;
}
.about_history_img::after{
	content: '';
	display: block;
	padding-bottom: 55.95%;
}
.about_history_img img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 0.06rem;
}







.in_honor_year {
	position: relative
}

.gallery-thumbs {
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 0.1rem;
	box-sizing: border-box;
	padding-right: 43%;
}


.gallery-thumbs .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	cursor: pointer;
	display: flex
}
.gallery-thumbs .swiper-slide {
	text-align: center;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	border-radius: 0.1rem;
}
/* .gallery-thumbs .swiper-slide::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	background: rgba(137, 100, 170, 0.7);
	transition: all 0.3s ease;


} */
.about_env_topImg{
   position: relative;
}
.about_env_topImg::after{
    content: '';
	display: block;
	padding-bottom: 56.1%;
}
.about_env_topImg img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-thumbs .swiper-slide.swiper-slide-active::after{
	opacity: 0;
}













.history-button-prev,
.history-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: .55rem;
	height: .55rem;
	box-sizing: border-box;
	border-radius: 50%;
	z-index: 999;
	outline: none;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: #fff;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
}
.history-button-next{

	right: 4%;
}
.history-button-prev iconify-icon,
.history-button-next iconify-icon{
	font-size: 0.26rem;
	color: var(--i_color);
	transition: all 0.3s ease;
}


.history-button-prev:hover,
.history-button-next:hover{
   background-color: var(--i_color);
}
.history-button-prev:hover iconify-icon,
.history-button-next:hover iconify-icon{
   color: #FFF;
}





.in_honor_year .swiper-button-disabled {
	opacity: .1 !important;
	cursor: not-allowed
}




@media screen and (max-width:1440px){
	.about_env_bac {
		padding: 0.8rem 0;
	}
}
@media screen and (max-width:1200px){
	.about_env_bac {
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){

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

}
@media screen and (max-width:560px){
	.history-button-prev,
	.history-button-next {
		width: .5rem;
		height: .5rem;
	}
	.history-button-prev iconify-icon,
	.history-button-next iconify-icon{
		font-size: 0.24rem;
	}
}
@media screen and (max-width:425px){

}


/* service_us */
.service_us_bac{
   box-sizing: border-box;
   padding: 0.6rem 0 0.8rem 0;
}
.service_us{

}
.service_us_ul{
   display: flex;
   gap: 0.16rem;
   margin-top: 0.4rem;

}
.service_us_ul li{
   background-color: #F9F7FB;
   border-top: 0.08rem solid var(--i_color);
   width: 20%;
   flex-grow: 1;
   transition: all 0.5s ease;
}
.service_us_ul li.active{
	flex-grow: 1000 !important;
}
.service_us_text{
   position: relative;
}
.service_us1{
   box-sizing: border-box;
   padding: 0.1rem 2% 0rem 2%;
}
.service_us1 h3{
   font-size: 1.2rem;
   color: rgba(137, 100, 170, 0.2);
   font-weight: bold;
   text-align: center;
   line-height: 100%;
}
.service_us1 h4{
   font-size: 0.2rem;
   line-height: 0.24rem;
   min-height: 0.48rem;
   color: #333;
   font-weight: bold;
   text-align: center;
   margin-top: 0.1rem;
}
.service_us2{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #F9F7FB;
   display: flex;
   gap: 0.1rem;
   box-sizing: border-box;
   padding: 0.25rem 0.2rem;
   opacity: 0;
   transition: all 0.3s ease;
}
.service_us2_text{

}
.service_us2_text h5{
   font-size: 0.24rem;
   color: var(--i_color);
   font-weight: bold;
   margin-bottom: 0.1rem;
}
.service_us2_text h6{
   font-size: 0.16rem;
   line-height: 0.22rem;
   height: 1.1rem;
   overflow: auto;
   box-sizing: border-box;
   padding-right: 2%;
}


/*滚动条*/
.service_us2_text h6::-webkit-scrollbar{width:1px; height:1px}
.service_us2_text h6::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); background:var(--i_color)}
.service_us2_text h6::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); border-radius:0; background:rgba(137, 100, 170, 0.2)}

.service_us2 p{
   font-size: 1rem;
   color: var(--i_color);
   font-weight: bold;
   flex-shrink: 1;
   line-height: 100%;
}
.service_us_ul li img{
	height: 3.22rem;
	object-fit: cover;
	width: 100%;
}

.service_us_ul li.active .service_us2{
	opacity: 1;
}


@media screen and (max-width:1440px){
	.service_us2 p{
		font-size: 0.8rem;
	}
	.service_us1 h3{
		font-size: 1rem;
	}
	.service_us2_text h6 {
		height: 0.88rem;
	}
}
@media screen and (max-width:1200px){

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

}
@media screen and (max-width:767px){
	.service_us_ul{
		flex-wrap: wrap;
	}
	.service_us_ul li {
		width: 100% !important;
	}
	.service_us2 p {
        font-size: 0.6rem;
    }
	.service_us_ul li img {
		height: 3rem;
	}
	.service_us_bac {
		padding: 0.4rem 0 0.6rem 0;
	}
}
@media screen and (max-width:560px){
    .service_us2 p {
        font-size: 0.4rem;
    }
	.service_us_ul li img {
		height: 2.6rem;
	}
}
@media screen and (max-width:425px){

}


/* app_area */
.app_area_bac{
   box-sizing: border-box;
   padding-bottom: 1.3rem;
   overflow: hidden;
}
.app_area{

}
.app_area_box{
   box-sizing: border-box;
   margin-top: 0.4rem;
   border-top: 1px solid rgba(51,51,51,0.2);
   padding-top: 0.4rem;
   display: flex;

}
.app_area_left{
   width: 42.4%;
   position: relative;
   z-index: 2;
}
.app_area_left img{
   position: absolute;
   bottom: -37%;
   left: 0;
   z-index: -1;
   width: 5.8rem;
   max-width: 100%;
   object-fit: contain;
}
.app_area_left p{
   line-height: 175%;
   font-size: 0.16rem;
   color: #333;
}
.app_area_right{
   width: 57.6%;
   box-sizing: border-box;
   padding-left: 0.2rem;
}
.app_area_ul{
   display: flex;
   flex-wrap: wrap;
   position: relative;

}
.app_area_ul::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 1px;
	background-color: rgba(51,51,51,0.2);
}
.app_area_ul::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 1px;
	height: 100%;
	background-color: rgba(51,51,51,0.2);
}
.app_area_ul li{
   width: 50%;
   display: flex;
   flex-direction: column;
   align-items: center;
   box-sizing: border-box;
   padding: 0.6rem 4%;
}
.app_area_ul li img{
   width: 0.72rem;
   object-fit: contain;
   margin-bottom: 0.15rem;
}
.app_area_ul li h3{
   text-align: center;
   font-size: 0.26rem;
   color: #333;
   font-weight: bold;
   text-transform: capitalize;
}


@media screen and (max-width:1440px){
	.app_area_ul li img {
		width: 0.65rem;
	}
	.app_area_ul li h3 {
		font-size: 0.24rem;
	}
	.app_area_bac {
		padding-bottom: 1.1rem;
	}
}
@media screen and (max-width:1200px){
	.app_area_ul li img {
		width: 0.6rem;
	}
	.app_area_ul li h3 {
		font-size: 0.22rem;
	}
	.app_area_left img{
		opacity: 0.5;
	}
}
@media screen and (max-width:1024px){
	.app_area_ul li img {
		width: 0.55rem;
	}
	.app_area_ul li h3 {
		font-size: 0.2rem;
	}
	.app_area_left img {
		width: 5.5rem;
	}
}
@media screen and (max-width:767px){
	.app_area_ul li img {
		width: 0.5rem;
	}
	.app_area_left {
		width: 100%;
	}
	.app_area_box{
		flex-wrap: wrap;
	}
	.app_area_right {
		width: 100%;
		padding-left: 0rem;
		margin-top: 0.4rem;
	}
	.app_area_left img{
		display: none;
	}
	.app_area_box {
		margin-top: 0.2rem;
		padding-top: 0.2rem;
	}
	.app_area_ul li {
		padding: 0.4rem 4%;
	}
	.app_area_bac {
		padding-bottom: 0.6rem;
	}
}
@media screen and (max-width:560px){

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

}


/* service_adv */
.service_adv_bac{
   box-sizing: border-box;
   padding: 0.8rem 0;
   background-color: #F5F5F5;
   position: relative;
   z-index: 2;
}
.service_adv_bacImg{
	position: absolute;
	right: -12%;
    top: 21%;
	width: 46.04%;
	height: auto;
	z-index: -1;
}
.service_adv{

}
.service_adv_ul{
   display: flex;
   flex-wrap: wrap;
   gap: 0.4rem;
   margin-top: 0.6rem;
}
.service_adv_ul li{
   background-color: #fff;
   width: calc((100% - 0.4rem) / 2);
   box-sizing: border-box;
   padding: 0.3rem 0.25rem;
   display: flex;
   align-items: center;
   gap: 0.3rem;
   border-left: 0.04rem solid var(--i_color);
}
.service_adv_ul li i{
   width: 1.28rem;
   height: 1.28rem;
   background-color: #F9F7FB;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
   z-index: 2;
   flex-shrink: 0;
}
.service_adv_ul li i::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 80%;
	height: 80%;
	background-color: var(--i_color);
	border-radius: 50%;
	z-index: -1;
}
.service_adv_ul li img{
   width: 0.66rem;
   object-fit: contain;
}
.service_adv_text{

}
.service_adv_text h3{
   font-size: 0.18rem;
   color: #333;
   font-weight: bold;
   margin-bottom: 0.1rem;
   text-transform: capitalize;
}
.service_adv_text h4{
   line-height: 150%;
   font-size: 0.16rem;
   color: #999;
}

@media screen and (max-width:1440px){
	.service_adv_ul{
		gap: 0.3rem;
	}
	.service_adv_ul li{
		width: calc((100% - 0.3rem) / 2);
		padding: 0.25rem 0.2rem;
		gap: 0.2rem;
	}
	.service_adv_ul li i{
		width: 1rem;
		height: 1rem;
	}
	.service_adv_ul li img{
		width: 0.6rem;
	}
}
@media screen and (max-width:1200px){
	.service_adv_ul {
		margin-top: 0.4rem;
	}
}
@media screen and (max-width:1024px){

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

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

}

/* customized_services */
.customized_services_bac{
   box-sizing: border-box;
   padding: 0.8rem 0 0 0;
}
.customized_services{

}
.customized_services_box{
	display: flex;
	flex-wrap: wrap;

}
.customized_services_left{
	width: 39.86%;
}
.customized_services_left img{
	max-width: 100%;
	width: 3.22rem;
	margin-top: 0.6rem;
}


.customized_services_right{
	width: 60.14%;
}
.customized_services_ul{
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   box-sizing: border-box;
   padding-bottom: 0.8rem;
   overflow: hidden;
}
.customized_services_ul li{
   display: flex;

}
.customized_services_ul li h3{
   font-size: 0.5rem;
   color: #333;
   flex-shrink: 0;
   line-height: 100%;
   width: 0.62rem;
}
.customized_services_ul li i{
   display: block;
   width: 0.12rem;
   height: 0.12rem;
   border-radius: 50%;
   background-color: var(--i_color);
   margin-left: 0.6rem;
   margin-right: 0.6rem;
   margin-top: 0.1rem;
   flex-shrink: 0;
   position: relative;
}
.customized_services_ul li:nth-child(1) i::after{
	content: '';
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%,0%);
	width: 1px;
	height: 15rem;
	border-left: 1px dashed rgba(51,51,51,0.2);
}
.customized_services_text{
   margin-top: 0.05rem;
}
.customized_services_text h4{
   font-size: 0.22rem;
   color: var(--i_color);
   font-weight: bold;
   margin-bottom: 0.15rem;
}
.customized_services_text h5{
   line-height: 144%;
   font-size: 0.18rem;
   color: #666;
}


@media screen and (max-width:1440px){
	.customized_services_ul li i {
		width: 0.1rem;
		height: 0.1rem;
		margin-left: 0.4rem;
		margin-right: 0.4rem;
	}
	.customized_services_ul {
		gap: 0.4rem;
	}
	.customized_services_ul li h3 {
		font-size: 0.45rem;
		width: 0.58rem;
	}
	.customized_services_left img{
		width: 3rem;
	}
}
@media screen and (max-width:1200px){
	.customized_services_ul {
		gap: 0.3rem;
		padding-bottom: 0.6rem;
	}
	.customized_services_ul li h3 {
		font-size: 0.4rem;
		width: 0.5rem;
	}
	.customized_services_bac {
		padding: 0.6rem 0 0 0;
	}

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

}
@media screen and (max-width:767px){
	.customized_services_left img {
		margin-top: 0.4rem;
	}
	.customized_services_left {
		width: 100%;
	}
	.customized_services_right {
		width: 100%;
		margin-top: 0.4rem;
	}
	.customized_services_left{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.customized_services_left img{
		width: 2rem;
	}
}
@media screen and (max-width:560px){
    .customized_services_ul li i {
        margin-left: 0.2rem;
        margin-right: 0.2rem;
    }
	.customized_services_ul li h3 {
        font-size: 0.3rem;
		width: 0.4rem;
    }
	.customized_services_ul li i {
		margin-top: 0.05rem;
	}
	.customized_services_text {
		margin-top: 0rem;
	}
}
@media screen and (max-width:425px){

}



/* news_list */
.news_list_box{
	box-sizing: border-box;
	padding-top: 0.8rem;
}
.news_list{
   display: flex;
   justify-content: center;
   gap: 1.5rem;
   box-sizing: border-box;
   border-bottom: 1px solid rgba(51,51,51,0.2);
}
.news_list li{

}
.news_list li a{
	font-size: 0.18rem;
	color: #333;
	font-weight: bold;
	box-sizing: border-box;
	padding-bottom: 0.2rem;
	display: block;
	position: relative;
}
.news_list li a::after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 2px;
	background-color: var(--i_color);
	transition: all 0.3s ease;
}


.news_list li.active a,
.news_list li:hover a{
    color: var(--i_color);
}
.news_list li.active a::after,
.news_list li:hover a::after{
	width: 100% !important;
	right: auto !important;
	left: 0 !important;
}



@media screen and (max-width:1440px){
	.news_list{
		gap: 1.3rem;
	}
}
@media screen and (max-width:1200px){
	.news_list_box{
		padding-top: 0.6rem;
	}
	.news_list{
		gap: 1rem;
	}
}
@media screen and (max-width:1024px){
	.news_list{
		gap: 0.8rem;
	}
}
@media screen and (max-width:767px){
	.news_list{
		gap: 0.6rem;
	}
}
@media screen and (max-width:560px){
	.news_list{
		gap: 0.4rem;
	}
}
@media screen and (max-width:425px){

}


/* news */
.news_bac{
   box-sizing: border-box;
   padding-bottom: 0.8rem;
}
.news{

}
.news_ul{
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem 0.3rem;
   margin-top: 0.6rem;
}
.news_ul li{
   width: calc((100% - 0.6rem) / 3);
}
.news_ul li a{
   display: block;
   width: 100%;
}
.news_img{
   position: relative;
   overflow: hidden;
   border-radius: 0.1rem;

}
.news_img::after{
   content: '';
   display: block;
   padding-bottom: 62.5%;
}
.news_img::before{
	content: '';
	position: absolute;
	background: linear-gradient(180deg, rgba(137, 100, 170, 0) 0%, rgba(137, 100, 170, 0.7) 100%);
	bottom: -50%;
	left: 0;
	width: 100%;
	height: 50%;
    z-index: 4;
	transition: all 0.5s ease;
}
.news_ul li a:hover .news_img::before{
	bottom: 0;
}
.news_img img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.3s ease;
}
.news_text{

}
.news_text h3{
   font-size: 0.16rem;
   color: #666;
   margin: 0.2rem 0 0.15rem 0;
}
.news_text h4{
	line-height: 0.28rem;
	font-size: 0.2rem;
	font-weight: bold;
	color: #333;
	height: 0.84rem;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
	transition: all 0.3s ease;
}
.news_ul li a:hover img{
	width: 110%;
	height: 110%;
}
.news_ul li a:hover h4{
	color: var(--i_color);
}


@media screen and (max-width:1440px){
	.news_ul {
		gap: 0.4rem 0.2rem;
	}
	.news_ul li {
		width: calc((100% - 0.4rem) / 3);
	}
}
@media screen and (max-width:1200px){
	.news_bac{
		padding-bottom: 0.6rem;
	}
	.news_ul {
		margin-top: 0.4rem;
	}
}
@media screen and (max-width:1024px){

}
@media screen and (max-width:767px){
	.news_text h4 {
		line-height: 0.24rem;
		font-size: 0.18rem;
		height: 0.72rem;
	}
	.news_ul li {
		width: calc((100% - 0.2rem) / 2);
	}
	.news_text h3 {
		margin: 0.15rem 0 0.1rem 0;
	}
}
@media screen and (max-width:560px){

}
@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) {

}



/* contact_us */
.contact_us_bac{
   box-sizing: border-box;
   padding: 0.6rem 0;
}
.contact_us{

}
.contact_us_ul{
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
}
.contact_us_ul li{
   width: calc((100% - 1.2rem) / 3);
   box-sizing: border-box;
   padding: 0.4rem 3% 0.5rem 3%;
   border: 1px solid #D8D8D8;
   border-radius: 0.1rem;
}
.contact_us_text{
    display: flex;
	align-items: center;
	gap: 0.1rem;
	border-bottom: 1px solid var(--i_color);
	box-sizing: border-box;
	padding-bottom: 0.2rem;
	margin-bottom: 0.2rem;
}
.contact_us_text iconify-icon{
   font-size: 0.5rem;
}
.contact_us_txt{

}
.contact_us_txt h3{
   font-size: 0.24rem;
   color: #666;
   margin-bottom: 0.05rem;
}
.contact_us_txt h4{
	font-size: 0.24rem;
	color: #333;
	font-weight: bold;
}
.contact_us_ul li h5{
    font-size: 0.2rem;
	color: #333;
	line-height: 144%;
	margin-bottom: 0.05rem;
}
.contact_us_ul li a{
	font-size: 0.2rem;
	color: #333;
	line-height: 144%;
	transition: all 0.3s ease;
}
.contact_us_ul li:last-child a{
	font-size: 0.15rem;
}
.contact_us_ul li a:hover{
	color: var(--i_color);
}


@media screen and (max-width:1440px){
	.contact_us_ul {
		gap: 0.4rem;
	}
	.contact_us_ul li {
		width: calc((100% - 0.8rem) / 3);
		padding: 0.4rem 2% 0.4rem 2%;
	}
	.contact_us_txt h3{
		font-size: 0.22rem;
	}
	.contact_us_txt h4{
		font-size: 0.22rem;
	}
}
@media screen and (max-width:1200px){
	.contact_us_ul {
		gap: 0.2rem;
	}
	.contact_us_ul li {
		width: calc((100% - 0.4rem) / 3);
	}
}
@media screen and (max-width:1024px){

}
@media screen and (max-width:767px){
	.contact_us_ul li {
		width: calc((100% - 0.2rem) / 2);
	}
	.contact_us_ul li:last-child{
		width: 100%;
	}
}
@media screen and (max-width:560px){
	.contact_us_txt h3{
		font-size: 0.2rem;
	}
	.contact_us_txt h4{
		font-size: 0.2rem;
	}
	.contact_us_text iconify-icon {
		font-size: 0.4rem;
	}
}
@media screen and (max-width:425px){
	.contact_us_ul li{
		width: 100%;
	}
}



/* contact_form */
.contact_form_bac{
   box-sizing: border-box;
   padding-bottom: 0.8rem;
}
.contact_form{
   display: flex;
   flex-wrap: wrap;
}
.contact_form_left{
	width: 52.4%;
	box-sizing: border-box;
	padding-right: 3%;
}
.contact_form_box{
	margin-top: 0.4rem;
}


.contact_form_right{
	width: 47.6%;
	height: 8.36rem;
	border-radius: 0.1rem;
	border: 1px solid rgba(51,51,51,0.2);
	box-sizing: border-box;
	overflow: hidden;
}
.contact_form_right #simpleMap,
.contact_form_right .fluid-width-video-wrapper,
.contact_form_right iframe {
        width: 100%;
        height: 100% !important;
}






#wpforms-27{--input_font_size:0.16rem; --input_height:0.7rem}
#wpforms-27{width:100%; margin:0 auto; padding:0}
#wpforms-form-27{width:100%; overflow:hidden}


#wpforms-27 input, #wpforms-27 button{margin:0; padding:0; border:none; background:none}
#wpforms-27 .wpforms-field{padding:0; margin:0}
#wpforms-27 .wpforms-error-container{line-height:16px}
#wpforms-27 .wpforms-field-container{width:100%; display:-webkit-flex; display:flex; flex-wrap:wrap; overflow:hidden}
#wpforms-27 .wpforms-submit-container{

}





#wpforms-27 .wpforms-field{
	position: relative;
}
#wpforms-27 .wpforms-field-label{
	font-size: 0;
}
#wpforms-27 .wpforms-field-label span{
	position: absolute;
	top: 12px;
	left: 3px;
	font-size: 0.14rem;
    color: red;
}
#wpforms-27 .wpforms-error{
	font-size: 0;
}
#wpforms-27 .wpforms-field{width:100%; margin-bottom:0.2rem; background:transparent; overflow:hidden}
#wpforms-27 .wpforms-field:nth-child(1){margin-right:0.2rem}
#wpforms-27 .wpforms-field:nth-child(1), #wpforms-27 .wpforms-field:nth-child(2){width:calc((100% - 0.2rem) / 2)}

#wpforms-27 input{height:var(--input_height)}
#wpforms-27 textarea{height:4rem}
#wpforms-27 input, #wpforms-27 textarea{
	width:100%;border: 0; max-width:100%!important; font-size:var(--input_font_size);
	background-color: white; color:#222;
	border: 1px solid #D8D8D8;
	border-radius: 0.05rem;
	box-sizing:border-box; line-height:var(--input_height); padding:0 10px;
}
#wpforms-27 textarea{
	line-height: 160%;
	padding:10px;
}


#wpforms-27 input::-webkit-input-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-27 input::-moz-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-27 input::-moz-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-27 input::-ms-input-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-27 textarea::-webkit-input-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-27 textarea::-moz-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-27 textarea::-moz-placeholder{color:#666; font-size:var(--input_font_size)}
#wpforms-27 textarea::-ms-input-placeholder{color:#666; font-size:var(--input_font_size)}

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



#wpforms-27 .wpforms-submit-container button{
	overflow: hidden;width:100%; height:var(--input_height);
	font-size:0.24rem; color:#FFF;
	font-weight: bold;
	display: block;
	cursor:pointer; text-transform:capitalize;
	position:relative; z-index:2;
	background-color: var(--i_color);
	width: 2.7rem;
	border-radius: 0.1rem;
}
#wpforms-27 .wpforms-submit-container img{position:absolute; top:50%; transform:translate(0,-50%); right:4px}


@media screen and (max-width:1440px){
	.contact_form h3 {
		font-size: 0.18rem;
	}
}
@media screen and (max-width:1366px){

}
@media screen and (max-width:1200px){
	.contact_form h3 {
		font-size: 0.16rem;
	}
	.contact_form_box {
		margin-top: 0.4rem;
	}
	.contact_form_bac{
		padding-bottom: 0.6rem;
	}
}
@media screen and (max-width:1024px){
	#wpforms-27 .wpforms-submit-container{margin: 0.2rem auto 0;}
}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){
	#wpforms-27 .wpforms-field:nth-child(1),#wpforms-27 .wpforms-field:nth-child(2){margin-right:0rem}
	#wpforms-27 .wpforms-field:nth-child(1), #wpforms-27 .wpforms-field:nth-child(2),#wpforms-27 .wpforms-field:nth-child(3){width:100%}
	#wpforms-27{--input_height:0.5rem}
	.contact_form_left {
		width: 100%;
		margin-bottom: 0.4rem;
		padding-right: 0%;
	}
	.contact_form_right{
		width: 100%;
		height: 5rem;
	}
}
@media screen and (max-width:560px){

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

}


/* products */
.products_bac{
   box-sizing: border-box;
   padding: 0.6rem 0 0.8rem 0;
   background-color: #F5F5F5;
}
.products{
   display: flex;
   flex-wrap: wrap;
}
.products_left{
	width: 22.9%;
}
.products_right{
	width: 77.1%;
	box-sizing: border-box;
	padding-left: 3%;
}


.products_left_all{
   box-sizing: border-box;
   padding-bottom: 0.2rem;
}
.products_left_h2{
	font-size: 0.24rem;
	text-transform: capitalize;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	background-color: var(--i_color);
	box-sizing: border-box;
	padding:0.15rem 0.2rem;
	font-weight: bold;
	margin-bottom: 0.2rem;
	border-radius: 0.06rem;
}
.products_left_h2 iconify-icon{
	color: #fff;
	font-size: 0.34rem;
	margin-left: 0.1rem;
	font-weight: bold;
	margin-bottom: 2px;
	display: none;
}

.list{
   display: flex;
   display: -webkit-flex;
   flex-direction: column;
   box-sizing: border-box;
   gap: 0.2rem;
}
.list li{
   position: relative;
}
/* .list li::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	width: 100%;
	height: 1px;
	background-color: rgba(51, 51, 51, 0.2);
} */

.list_a{
	box-sizing: border-box;
    padding: 0.2rem 0.15rem;
	position: relative;
	z-index: 2;
	overflow: hidden;
	background-color: #fff;
	border-radius: 0.06rem;
}
.list_a::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fff;
	width: 0;
	height: 100%;
	transition: all 0.5s ease-in-out;
	z-index: -1;
}
.list .list_a a{
   font-size: 0.18rem;
   color: #222;
   font-weight: bold;
   box-sizing: border-box;
   line-height: 110%;
   transition: all 0.3s ease;
}
.list  .list_a i{
   width: 0.5rem;
   height: 0.55rem;
   position: absolute;
   top: 50%;
   transform: translate(0,-50%);
   right: 0;
   cursor: pointer;

}
.list .list_a i iconify-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
    font-size: 0.24rem;
	color: #222;
	transition: all 0.3s ease;
}
.list_dl{
    padding:0.2rem 0.15rem;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	box-sizing: border-box;
	gap: 0.2rem;
	background-color: #fff;
	border-radius: 0.06rem;
	margin-top: 0.1rem;
}

.list_dl dt{
   box-sizing: border-box;
}
.list_dl dt a{
   font-size: 0.16rem;
   color: #222;
   display: block;
   transition: all 0.3s ease;
   position: relative;
   box-sizing: border-box;
   padding: 0rem 0.2rem;
}
.list_dl dt a::after{
	content: '';
	position: absolute;
	left: -0.1rem;
	top: 50%;
	transform: translate(0,-50%);
	width: 0.12rem;
	height: 0.02rem;
	background-color: var(--i_color);
	opacity: 0;
	transition: all 0.3s ease;
}





.list_dl dt a:hover::after,.list_dl dt a:hover::before{
    opacity: 1;
}
.list_active{
}
.list_active .list_a{
	border-radius: 0.06rem;
}
.list_active .list_a::after{
	width: 100%;
	left: 0;
	right: auto;
}
.list_active .list_a i iconify-icon{
	color: var(--i_color);
	transform:translate(-50%,-50%) rotate(180deg);
}
.list_active .list_a a{
	color: var(--i_color);
}
.list_dl_active a::after,.list_dl_active a::before{
	opacity: 1 !important;
	left: 0 !important;
}
.list_dl dt a:hover::after{
	opacity: 1 !important;
	left: 0 !important;
}
.list_dl dt a:hover{
	color: var(--i_color);
}

.list_dl_active a{
	color: var(--i_color) !important;
}
.list_active .list_dl{

}





@media screen and (max-width:1440px){
	.products_left_h2 {
		font-size: 0.22rem;
	}
}
@media screen and (max-width:1200px){
	.products_left_h2 {
		font-size: 0.2rem;
	}

}
@media screen and (max-width:1024px){
	.products_left{
		width: 100%;
	}
	.products_left_h2 iconify-icon{display: block;}
	.products_left_h2{display: flex;display: -webkit-flex;align-items: center;justify-content: center;}
	.products_left_h2{margin-bottom: 0;}
	.list{margin-top: 0.2rem;}
	.products_left_h2{
		color: #fff;
		background-color: var(--i_color);
		box-sizing: border-box;
		padding: 0.15rem 0;
	}
	.list {
		padding-bottom: 0.2rem;
	}
	.products_left_all{
		padding-bottom: 0rem;
    }
}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){
	.products_left_h2 {font-size: 0.2rem;}
	.products_left_h2 iconify-icon {font-size: 0.3rem;}
}
@media screen and (max-width:560px){
	.products_left_h2 {font-size: 0.18rem;}
	.products_left_h2 iconify-icon {font-size: 0.25rem;}
}
@media screen and (max-width:425px){

}



.products_right>h3{
   font-size: 0.3rem;
   color: #333;
   font-weight: bold;
}
.products_right>h4{
   font-size: 0.18rem;
   color: #666;
   line-height: 166%;
   margin-top: 0.2rem;
}
.products_ul{
   display: flex;
   flex-wrap: wrap;
   gap: 0.2rem;
   margin-top: 0.4rem;
}
.products_ul li{
   width: calc((100% - 0.4rem) / 3);
}
.products_a{
   display: block;
   width: 100%;
   border-radius: 0.1rem;
   overflow: hidden;
   background-color: #fff;
   transition: all 0.3s ease;
}
.products_img{
   position: relative;
   overflow: hidden;
   border-radius: 0.1rem;
}
.products_img::after{
   content: '';
   display: block;
   padding-bottom: 100%;
}
.products_img img{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.products_text{
   box-sizing: border-box;
   padding: 0.15rem 3%;
}
.products_text p{
   font-size: 0.18rem;
   line-height: 0.26rem;
   color: #333;
   font-weight: bold;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   width: 100%;
   height: 0.52rem;
   text-align: center;
   transition: all 0.3s ease;
}
.products_a:hover{
	box-shadow: 0 0 0.1rem rgba(137, 100, 170, 0.2);
}
.products_a:hover p{
	color: var(--i_color);
}



@media screen and (max-width:1440px){
	.products_right>h3 {
		font-size: 0.28rem;
	}
}
@media screen and (max-width:1200px){
	.products_right>h3 {
		font-size: 0.26rem;
	}
	.products_bac {
		padding: 0.6rem 0 ;
	}
}
@media screen and (max-width:1024px){
	.products_right>h3 {
		font-size: 0.24rem;
	}
	.products_right {
		width: 100%;
		margin-top: 0.4rem;
		padding-left: 0%;
	}
}
@media screen and (max-width:767px){
	.products_ul li{
		width: calc((100% - 0.2rem) / 2);
	}
}
@media screen and (max-width:560px){
	.products_text p {
		font-size: 0.16rem;
		line-height: 0.24rem;
		height: 0.48rem;
	}
}
@media screen and (max-width:425px){

}


.banner_top{
	height: var(--header_height);
	background-color: #fff;
}

/* single_grid */

.single_grid_bac{
   box-sizing: border-box;
   padding: 0.2rem 0 0.6rem 0;
   background: rgba(137, 100, 170, 0.05);
}
.single_grid{
   display: flex;
   flex-wrap: wrap;
}
.single_grid_left{
	width: 40%;
}


/* 鍥剧墖鏌ョ湅鍖� */
.in_grid_cont{--sm_pic_width:17%}
.in_grid_cont{ position:relative; overflow:hidden}
.in_grid_cont:before{content:""; display:block; padding-bottom:100%}

/* 缂╃暐鍥� */
.in_grid_list_box{position:absolute; top:0; left:0; width:var(--sm_pic_width); height:100%; box-sizing:border-box; padding:40px 0}
.in_grid_list{height:100%;}
.in_grid_list .swiper-slide{cursor:pointer}

.in_grid_list .img{width:100%; height:100%; box-sizing:border-box;border-radius: 0.08rem; position:relative; overflow:hidden;}
.in_grid_list .img img{width:100%; height:100%; object-fit:cover;}
.in_grid_list .swiper-slide-thumb-active .img{border:2px solid var(--i_color);}
.in_grid_list .swiper-slide-thumb-active img{filter: brightness(100%);-webkit-filter: brightness(100%);}
.ingrid-button-prev, .ingrid-button-next{
	position:absolute;
	z-index:999;
	outline:none;
	cursor:pointer;
	-moz-user-select:none;
    -webkit-user-select:none;
    -ms-user-select:none;
    -khtml-user-select:none;
    user-select:none;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
}

.ingrid-button-prev.swiper-button-disabled, .ingrid-button-next.swiper-button-disabled{cursor:not-allowed; opacity:.1}

/* 澶у浘 */
.in_grid_show_box{
	position:absolute; top:0; right:0;
	width:calc(100% - var(--sm_pic_width) - 20px);
	height:100%; box-sizing:border-box;
	background-color: #F9F9F9;
	border-radius: 0.08rem;
	padding:0 0; margin:0 auto}
.in_grid_show{width:100%; height:100%; box-sizing:border-box;  position:relative; overflow:hidden}
.in_grid_show .swiper-wrapper{display:flex; position:relative; width:100%; height:100%; z-index:1}
.in_grid_show .swiper-slide{
	height:100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	box-sizing: border-box;
	padding: 1px;
}

.in_grid_show .img{
	width:100%;
	height:100%;
	position:relative;
	overflow:hidden;
}
.in_grid_show .img img{width:100%; height:100%; object-fit:contain}

.ingrid-pagination{
	display:block;
	position: absolute;
	bottom: 0;
	right: 0rem;
	width: 0.7rem;
	height: 0.7rem;
	background-color: #F0F0F0;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
    align-items: flex-end;
	font-size: 0.18rem;
	color: var(--i_color);
	z-index: 2;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	box-sizing: border-box;
	padding: 0.1rem;
}
.ingrid-pagination .swiper-pagination-bullet{width:8px; height:8px; display:inline-block; margin:0 4px; background:#E5E5E5; -webkit-border-radius:50%; -moz-border-radius:50%; -o-border-radius:50%; border-radius:50%; outline:none}
.ingrid-pagination .swiper-pagination-bullet-active{position:relative; background:var(--i_color)}

.in_grid_cont:before{display:none}
.in_grid_show_box{position:relative; width:100%;overflow: hidden;}
.in_grid_show .img{width:100%; position:relative;overflow:hidden;box-sizing: border-box;}
.in_grid_show .img:before{content:""; display:block; padding-bottom:100%}
.in_grid_show .img img{position:absolute; top:50%;border-radius: 0.08rem; left:50%; transform:translate(-50%,-50%);box-sizing: border-box;}
.in_grid_list_box{margin-top:0.1rem; padding:0.05rem; position:relative; width:100%; height:initial}
.in_grid_list{width:100%; margin:0 auto}
.in_grid_list_box .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.in_grid_list_box .swiper-slide{
	height:100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	box-sizing: border-box;
	border: 1px solid #EEEEEE;
	border-radius: 0.08rem;
}
.in_grid_list .img{height:auto;}
.in_grid_list .img:before{content:""; display:block; padding-bottom:100%}
.in_grid_list .img img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); object-fit:contain}




.ingrid-button-prev, .ingrid-button-next{
	top:50%;
	transform:translate(0,-50%);
	width:0.4rem;
	height:0.4rem;
	border-radius: 50%;
	background-color: var(--i_color);
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}
.ingrid-button-prev{
	left: 0.1rem;
}
.ingrid-button-next{
	right: 0.1rem;
}
.ingrid-button-prev iconify-icon, .ingrid-button-next iconify-icon{
	font-size: 0.2rem;
	color: #fff;
}
.ingrid-button-prev:hover, .ingrid-button-next:hover{
	background-color: var(--i_color);
}


.single_grid_right{
	width: 60%;
	box-sizing: border-box;
	padding-left: 4%;
}
.single_grid_right h1{
   font-size: 0.22rem;
   color: var(--i_color);
   font-weight: bold;
   box-sizing: border-box;
   padding-bottom: 0.2rem;
   border-bottom: 1px solid rgba(51,51,51,0.2);
   margin-bottom: 0.4rem;
}
.single_grid_right article{
   line-height: 162.5%;
   font-size: 0.16rem;
   color: #333;
}
.single_grid_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.2rem;
	box-sizing: border-box;
	padding-top: 0.4rem;
	margin-top: 0.4rem;
	border-top: 1px solid rgba(51,51,51,0.2);
}
.single_grid_btn{
	display: flex;
    gap: 0.2rem;
}
.single_grid_share{
   display: flex;
   align-items: center;
}
.single_grid_share p{
   font-size: 0.18rem;
   color: #333;
   font-weight: bold;
   margin-right: 0.1rem;
}
.single_share_dl{
   display: flex;
   gap: 0.2rem;
}
.single_share_dl dt{

}
.single_share_dl dt a{

}
.single_share_dl dt a img{
   color: rgba(102,102,102,0.35);
   width: 0.32rem;
   transition: all 0.3s ease;
}
.single_share_dl dt a:hover img{
	transform: translateY(-0.05rem);
}




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

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

}
@media screen and (max-width:1024px){
	.single_grid_right {
		width: 100%;
		margin-top: 0.4rem;
		padding-left: 0%;
	}
	.single_grid_left {
		width: 50%;
	}
}
@media screen and (max-width:767px){
	.single_grid_right h1 {
		margin-bottom: 0.2rem;
	}
	.single_grid_box{
		padding-top: 0.2rem;
		margin-top: 0.2rem;
	}
	.single_grid_left {
		width: 100%;
	}
}
@media screen and (max-width:560px){
	.single_grid_box {
		gap: 0.3rem;
	}
}
@media screen and (max-width:425px){

}


/* editor */
.editor_bac{

}
.editor{

}
.editor_list{
   box-sizing: border-box;
   padding: 0.45rem 0 0.25rem 0;
   border-bottom: 1px solid var(--i_color);
}
.editor_ul{
   display: flex;
   flex-wrap: wrap;
   gap: 0.7rem;
   justify-content: center;
}
.editor_ul li{
   border-radius: 0.05rem;
   box-sizing: border-box;
   padding: 0.15rem 0.4rem;
   font-size: 0.22rem;
   color: var(--i_color);
   font-weight: bold;
   text-transform: capitalize;
   border: 1px solid var(--i_color);
   transition: all 0.3s ease;
   cursor: pointer;
}
.editor_ul li.current{
   background-color: var(--i_color) !important;
   color: #fff !important;
}

.editor_box{
   box-sizing: border-box;
   padding: 0.4rem 0 0.6rem 0;
   display: flex;
}
.editor_left{
	width: 22.9%;
}
.editor_left .list_a{
	background: #F5F5F5;
}
.editor_left .list_a::after {
    background-color: #F5F5F5;
}
.editor_left .list_dl {
    background-color: #F5F5F5;
}
.editor_right{
	width: 77.1%;
	box-sizing: border-box;
	padding-left: 3%;
}
.editor_h3{
	font-size: 0.22rem;
	color: var(--i_color);
	font-weight: bold;
	box-sizing: border-box;
	padding-left: 0.15rem;
	position: relative;
	margin-bottom: 0.2rem;

}
.editor_h3::after{
	content: '';
	position: absolute;
	width: 0.1rem;
	height: 0.1rem;
	border-radius: 50%;
	background-color: var(--i_color);
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}




@media screen and (max-width:1440px){
	.editor_ul li {
		padding: 0.12rem 0.4rem;
		font-size: 0.2rem;
	}
	.editor_ul {
		gap: 0.6rem;
	}
}
@media screen and (max-width:1200px){
	.editor_ul li {
		padding: 0.1rem 0.35rem;
		font-size: 0.18rem;
	}
	.editor_ul {
		gap: 0.4rem;
	}
}
@media screen and (max-width:1024px){
	.editor_left{
		display: none;
	}
	.editor_right{
		width: 100%;
		padding-left: 0;
	}
}
@media screen and (max-width:767px){
	.editor_ul li {
		padding: 0.1rem 0.3rem;
		font-size: 0.16rem;
	}
	.editor_ul {
		gap: 0.4rem;
	}
	.editor_box {
		padding: 0.4rem 0;
	}
}
@media screen and (max-width:560px){

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

}












.faq_ul{
   display: flex;
   display: -webkit-flex;
   flex-direction: column;
   gap: 0.3rem;
}
.faq_ul li{
	border-bottom: 1px solid rgba(51,51,51,0.2);
	position: relative;
	overflow: hidden;
	border-radius: 0.05rem;
}
.faq_q{
   box-sizing: border-box;
   padding:0.2rem 0.2rem;
   display: flex;
   display: -webkit-flex;
   align-items: center;
   cursor: pointer;
   background-color: rgba(137, 100, 170, 0.2);
   border-radius: 0.05rem;
}
.faq_ul i{
   width: 0.32rem;
   height: 0.32rem;
   display: block;
   color: var(--i_color);
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
   font-size: 0.18rem;
   border-radius: 0.02rem;
}
.faq_q i{
   background-color: #fff;
}
.faq_a i{
   background-color:#fff;
}
.faq_q h2{
   font-size: 0.2rem;
   color: #222;
   width: calc(100% - 0.32rem);
   box-sizing: border-box;
   padding:0 0.2rem;
}
.faq_a{
	display: flex;
	display: -webkit-flex;
	box-sizing: border-box;
	padding: 0.2rem 0.2rem;
}
.faq_a p{
	width: calc(100% - 0.36rem);
	padding-left: 0.2rem;
	font-size: 0.18rem;
	color: #666;
	line-height: 166%;
}
.faq_q h3{
   width: 0.36rem;
   height: 0.36rem;
   border-radius: 50%;
   border: 1px solid #222;
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
   transition: all 0.3s ease;
}
.faq_q h3 iconify-icon{
   font-size: 0.15rem;
   color: #222;
   transition: all 0.3s ease;
}
.faq_active .faq_q{
	background-color: var(--i_color);
}
.faq_active .faq_a{
	background-color: #F5F5F5;
}
.faq_active h3{
   transform: rotate(180deg);
}
.faq_active{
	border-bottom: 1px solid transparent !important;
}
.faq_active::after{
	opacity: 1 !important;
}

.faq_active .faq_q h2{
	color: #fff;
}







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

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

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

	.faq_q h2 {
		font-size: 0.2rem;
	}
	.faq_a p {
		font-size: 0.18rem;
	}
	.faq_bac{
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){
	.faq_q h2 {
		font-size: 0.18rem;
	}
	.faq_a p {
		font-size: 0.16rem;
	}
}
@media screen and (max-width:960px){

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

	.faq_q h3 {
		width: 0.3rem;
		height: 0.3rem;
	}
	.faq_q h2 {
		width: calc(100% - 0.7rem);
	}
}
@media screen and (max-width:560px){
	.faq_q h2 {
		font-size: 0.16rem;
	}
	.faq_a p {
		font-size: 0.14rem;
	}
	.faq_ul {
		gap: 0.2rem;
	}
	.faq_q {
		padding: 0.2rem;
	}
	.faq_a {
		padding:0.2rem;
	}
}
@media screen and (max-width:425px){

}


.editor_LR_bac{
	background: rgba(137, 100, 170, 0.05);
	box-sizing: border-box;
	padding: 0.4rem 0;
}
.single_tag{
   display: flex;
   flex-wrap: wrap;
   gap: 0.15rem 0.25rem;
}

.single_tag p{
   font-size: 0.18rem;
   color: #333;
   font-weight: bold;
   line-height: 0.32rem;
}
.single_tag a{
	display: block;
	font-size: 0.16rem;
	color: #333;
	line-height: 0.32rem;
	transition: all 0.3s ease;
}
.single_tag a:hover{
	color: var(--i_color);
}
.editor_LR{
   display: flex;
   display: -webkit-flex;
   justify-content: space-between;
   box-sizing: border-box;
   padding-top: 0.2rem;
   margin-top: 0.2rem;
   border-top: 1px solid #CECECE;
}
.editor_LR>div{
   display: flex;
   display: -webkit-flex;
   align-items: center;
   width: 49%;
   gap: 0.1rem;
}
.editor_LR i{
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
   width: 0.4rem;
   min-width: 0.4rem;
   height: 0.4rem;
   border-radius: 2px;
   border-radius: 50%;
   border: 1px solid var(--i_color);
}
.editor_LR i iconify-icon{
   color: var(--i_color);
   font-size: 0.2rem;
}
.editor_LR p{
   font-size: 0.18rem;
   color: #333;
   font-weight: bold;
}
.editor_LR a{
	font-size: 0.18rem;
	color: #333;
	transition: all 0.3s ease;
}

.editor_R{
	justify-content: flex-end;
	margin-left: auto;
}
.editor_LR a:hover{
	color: var(--i_color);
}


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

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

}
@media screen and (max-width:1200px){
	.editor_L i{
		margin-right: 0.1rem;
	}
	.editor_R i{
		margin-left: 0.1rem;
	}
	.editor_LR a {
		font-size: 0.16rem;
	}
	.editor_LR i {
		width: 0.35rem;
		min-width: 0.35rem;
		height: 0.35rem;
	}
}
@media screen and (max-width:1024px){
	.deitor_left{display: none;}
	.deitor_right{
		width: 100%;
		padding-left: 0%;
	}
}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){
	.editor_LR {
		flex-direction: column;
	}
	.editor_LR>div{
		width: 100%;
	}
}
@media screen and (max-width:560px){

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

}

/* related_products */
.related_products_bac{
	background: linear-gradient(180deg, rgba(156, 61, 168, 0.1) 0%, rgba(156, 61, 168, 0) 100%);
	box-sizing: border-box;
	padding: 0.8rem 0;
}
.related_products{

}





/*  */
.rela_partner_box{
	margin-top: 0.4rem;
}

.rela_partner{position:relative}
.rela_partner_list{width:100%; padding:0.1rem; box-sizing: border-box; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.rela_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.rela_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
}






/* 指示器 */
.rela_partner .pt-pagination{
	display:none;
	text-align:center;
	margin:0.4rem auto 0
}
.rela_partner .pt-pagination .swiper-pagination-bullet{
	width:0.12rem;
	height:0.12rem;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	cursor:pointer;
	display:inline-block;
	margin:0 0.05rem;
	background:var(--i_color);
	border-radius:2px;
	opacity: 1;
	outline:none
}
.rela_partner .pt-pagination .swiper-pagination-bullet-active{
	position:relative;
	background:transparent;
}

/* 左右箭头 */
.rela_partner .pt-button-prev, .rela_partner .pt-button-next{
	position:absolute;
	top:50%;
	transform:translate(0,-50%);
	width:0.5rem;
	height:0.5rem;
	border: 1px solid var(--i_color);
	box-sizing: border-box;
	z-index:999;
	cursor:pointer;
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.rela_partner .pt-button-prev iconify-icon, .rela_partner .pt-button-next iconify-icon{
	font-size: 0.24rem;
	color: var(--i_color);
	transition: all 0.3s ease;
}
.rela_partner .pt-button-prev{left:-5%;}
.rela_partner .pt-button-next{right:-5%;}

.rela_partner .pt-button-prev:hover, .rela_partner .pt-button-next:hover{
	background-color: var(--i_color);
}
.rela_partner .pt-button-prev:hover iconify-icon, .rela_partner .pt-button-next:hover iconify-icon{
	color: #fff;
}

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

}
@media screen and (max-width:1200px){
	.rela_partner .pt-button-prev, .rela_partner .pt-button-next{display:none}
	.rela_partner .pt-pagination{display:block}
	.related_products_bac{
		padding: 0.6rem 0;
	}
}
@media screen and (max-width:1024px){

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

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

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

}




/* 感谢页面 */
.thanks{padding-top: 1rem; margin:0px auto 1rem; text-align:center;box-sizing: border-box; }
.thanks h2{margin-bottom:20px; font-size:0.3rem; 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(var(--i_color), #e8ffb3);
	border: 0.5px solid #ffffff;

	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(#E870A5, #FFEFF6);
	border: 0.5px solid #FFEFF6;

  }

  .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){

}






/* 404 */
.in404{position:absolute; top:0; left:0; width:100%; height:100%; background:#FFF}
.in404_text{position:absolute; top:44%; left:50%; transform:translate(-50%,-50%); width:80%; text-align:center}
.in404_text h1{font-size:220px; color:#BBB}
.in404_text h6{margin:10px auto 30px; font-size:18px; color:#999}
.in404_text a{display:inline-block; padding:0 40px; line-height:32px; font-size:15px; color:#999; border:2px solid #DDD; -webkit-border-radius:100px; -moz-border-radius:100px; border-radius:100px}

@media screen and (max-width:959px){
.in404_text h1{font-size:180px}
}
@media screen and (max-width:767px){
	.in404_text h1{font-size:140px}
	.in404_text h6{font-size:16px}
	.in404_text a{font-size:14px}
}
@media screen and (max-width:560px){
	.in404_text h1{font-size:70px}
	.in404_text h6{margin:10px auto 18px; font-size:14px; line-height:20px}
	.in404_text a{font-size:13px}
}

/* 隐私政策 */
.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;}
}





/* ---------------------- 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-21{
	--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-21{margin:0;padding:0;}
#wpforms-form-21{width:100%;position:relative;}

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

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

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

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

#wpforms-21 .wpforms-submit-container{width: 100%; padding: 0;-webkit-border-radius:8px; border-radius:8px;overflow: hidden;}
#wpforms-21 .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-21 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-21 .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-24 {
	--input_font_color: rgb(0 0 0 / 50%);
	--input_font_size: 14px;
	--input_height: 42px
}
#wpforms-24 {
	width: 100%;
	margin: 0 auto;
	padding: 0
}
#wpforms-form-24 {
	width: 100%;
	overflow: hidden
}
#wpforms-24 input,
#wpforms-24 button {
	margin: 0;
	padding: 0;
	border: none;
	background: none
}
#wpforms-24 .wpforms-field {
	padding: 0;
	margin: 0
}
#wpforms-24 .wpforms-error-container {
	line-height: 16px
}
#wpforms-24 .wpforms-field-container {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden
}
#wpforms-24 .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-24 .wpforms-field-label {
	font-size: 0
}
#wpforms-24 .wpforms-required-label {
	position: absolute;
	top: 16px;
	left: 5px;
	font-size: 16px;
	color: #F00
}
#wpforms-24 .wpforms-field {
	width: 100%;
	margin-bottom: 0;
	padding-bottom: 18px;
	background: transparent;
	position: relative;
	overflow: hidden
}
#wpforms-24 input {
	height: var(--input_height)
}
#wpforms-24 textarea {
	min-height: 100px
}
#wpforms-24 input,
#wpforms-24 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-24 input::-webkit-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-24 input::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-24 input::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-24 input::-ms-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-24 textarea::-webkit-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-24 textarea::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-24 textarea::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-24 textarea::-ms-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-24 #wpforms-24-field_1-error,
#wpforms-24 #wpforms-24-field_2-error,
#wpforms-24 #wpforms-24-field_3-error,
#wpforms-24 #wpforms-24-field_5-error {
	position: absolute;
	font-size: 13px
}
#wpforms-24 .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-24 .wpforms-submit-container img {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: 4px
}
#wpforms-24 .wpforms-submit-container:after {
	display: none;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%
}
#wpforms-24 .wpforms-submit-container:hover:after {
	display: block
}
#wpforms-24 .wpforms-submit-container:hover {
	background: #FFF
}
#wpforms-24 .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-24 .wpforms-submit-container {
		height: 34px;
	}
	#wpforms-24 .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;
	}

}

.form_hide{
	display: none !important;
}

































/* @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){

} */



