html,
body {
  position: relative;
  height: 100%;
  font-family: "Arial";
  font-size: 16px;
  color: #333;
}
body{
  overflow-x: hidden;
  background: #fff;
}
html.active{
    /* overflow: hidden; */7
}
i,
em,
b {
  font-style: normal;
  font-weight: normal;
  display: block;
}
a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  background: none;
  text-decoration: none;
}
img {
  max-width: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
  user-select: none;
}
input,
textarea,
button,
select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  /* -webkit-appearance: none; */
  border-radius: 0;
}
textarea {
  resize: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #bfbfbf !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  background-color: transparent;
  background-image: none;
  transition: background-color 50000s ease-in-out 0s; /*背景色透明  生效时长  过渡效果  启用时延迟的时间*/
}
img{
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}
.container{
  width: 86%;
}
.center {
  width: 1200px;
  margin: 0 auto;
}
.mask {
  display: block;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 900;
  left: 0;
  top: 0;
}
.mask.show {
  display: block;
}
ul {
  margin-bottom: 0;
}
.form-control {
  background-color: transparent;
  border: 1px solid #cbc9c9;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  outline: none;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  color: #777883;
}
.btn {
  height: 30px;
  line-height: 30px;
  border: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-modify: read-write-plaintext-only;
  box-shadow: none;
  display: inline-block;
  padding: 0 20px;
  background-color: #1abdb2;
  color: #eaeaea !important;
  -webkit-user-select: none;
  user-select: none;
}
.btn:focus {
  outline: none;
}
.btn[disabled="disabled"],
.btn[disabled="true"] {
  cursor: not-allowed;
}
.btn.primary-btn {
  background-color: #2c4c8d;
}
.btn.primary-btn:hover {
  background-color: #3d63ae;
}
.btn.danger-btn {
  background-color: #984b3c;
}
.btn.danger-btn:hover {
  background-color: #ac5443;
}
.btn.info-btn {
  background-color: #705b39;
}
.btn.info-btn:hover {
  background-color: #91764b;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.red {
  color: red;
}
html.show,
body.show {
  overflow: hidden;
  height: 100%;
}
#app {
  transition: all 0.3s ease-out;
  /* overflow: hidden; */
}
#app.show {
  -webkit-transform: translateX(260px);
  transform: translateX(260px);
  width: 100vw;
  height: 100vh;
}
#mobileMenu {
  position: fixed;
  left: -200px;
  top: 0;
  margin: 0;
  width: 200px;
  height: 100vh;
  background: #d9662b;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  -moz-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 910;
}
#mobileMenu.show {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}
#navToggle {
  display: block;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  padding: 0;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  position: relative;
}
#navToggle span,
#navToggle::after,
#navToggle::before {
  height: 2px;
  width: 22px;
  top: 50%;
  left: 50%;
  margin-left: -11px;
  background: #cf2818;
  position: absolute;
  display: block;
  content: "";
  text-indent: -9999px;
  transition: all 300ms ease-in-out;
}
#navToggle::before {
  margin-top: -7px;
}
#navToggle::after {
  margin-top: 7px;
}
#navToggle.show span {
  opacity: 0;
}
#navToggle.show::before {
  margin-top: 0;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#navToggle.show::after {
  margin-top: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* 头部 */
.com{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header{
	padding: 0.1rem 0 0;
	position: sticky;
	top: 0;
	z-index: 170;
	background: #fff;
	border-bottom: 1px solid #f5f5f5;
	/* box-shadow: 0px 0px 5px 3px rgb(228 228 228 / 0.5); */
}
.header .common{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .common .right, .header .slideBox .right{
  display: flex;
  align-items: center;
}
.header .common .left img{
  max-height: 0.63rem;
}
/* 导航 */
.logo{
  width: 2.9rem;
  height: 0.44rem;
  background: #eee;
}
.nav-bar{
  margin-right: 2.8vw;
}
.nav-bar ul{
  display: flex;
}
.nav-bar ul li{
  position: relative;
  height: 0.68rem;
  display: flex;
  align-items: center;
}
.nav-bar ul li.active > a{
	color: #3b9de1;
}
.nav-bar li > a{
  position: relative;
  display: inline-block;
  color: #272727;
  font-size: 0.2rem;
  margin: 0 1.85vw;
  text-transform: capitalize;
}
.nav-bar li.act > a:after {
  border: 0;
  content: '';
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  background: transparent;
  border-left: 0.01rem solid #333;
  border-bottom: 0.01rem solid #333;
  right: -20px;
  top: 43%;
  transform: translate(0,-50%) rotate(-45deg);
  -webkit-transform: translate(0,-50%) rotate(-45deg);
}
.nav-bar .subnav{
  display: none;
  width: 1.77rem;
  position: absolute;
  top: 0.68rem;
  left: 60%;
  transform: translateX(-50%);
  /* box-shadow: 0px 3px 9px 0px rgba(6, 0, 1, 0.2); */
}
.nav-bar .subnav a, .nav-bar .subnav em{
	cursor: pointer;
	position: relative;
	display: block;
	font-size: 12px;
	color: #fff;
	background: #3b9de1;
	padding: 0.13rem 0.15rem 0.13rem 0.2rem;
}
.nav-bar .subnav em.actn:after{
	border: 0;
	content: '';
	position: absolute;
	width: 0.08rem;
	height: 0.08rem;
	background: transparent;
	border-left: 0.01rem solid #fff;
	border-bottom: 0.01rem solid #fff;
	right: 0.15rem;
	top: 48%;
	transform: translate(0,-50%) rotate(-135deg);
	-webkit-transform: translate(0,-50%) rotate(-135deg);
}
.nav-bar .subnav a:last-child{
  border-bottom: 0;
}
.nav-bar .subnav-nav{
	display: none;
	position: absolute;
	top: 0;
	left: 100%;
	background: #fff;
	width: 1.59rem;
}
.nav-bar .subnav-nav a{
	color: #191919;
	background: #fff;
	padding: 0.14rem 0.3rem;
}
.nav-bar a.active{
  color: #fee725;
}
.send-email{
	/*margin-right: 7.7vw;*/
}
.send-email a{
	width: 1.18rem;
	line-height: 0.38rem;
	border-radius: 0.38rem;
	text-align: center;
	color: #fff;
	font-size: 0.2rem;
	background: #3b9de1;
	display: block;
}
.nav-search{
	position: relative;
	margin-right: 6.4vw;
	height: 0.68rem;
	display: flex;
	align-items: center;
}
.nav-search svg{
	width: auto;
	height: 24px;
	cursor: pointer;
}
.nav-search form{
	display: none;
	position: absolute;
	top: 0.68rem;
	left: 50%;
	transform: translateX(-50%);
	background: #dbdcdc;
	width: 24vw;
	line-height: 0.45rem;
	border-radius: 0.45rem;
}
.nav-search form input[type="text"], .nav-search form #keyword{
	padding: 0 0.2rem;
	width: calc(100% - 1rem);
}
.nav-search form input[type="button"], .nav-search form #search{
	position: absolute;
	right: 0;
	width: 0.94rem;
	height: 100%;
	background: rgba(59,157,225,0.6);
	border-radius: 0 0.45rem 0.45rem 0;
	color: #fff;
}
.lan{
  display: flex;
  align-items: center;
  display: none;
}
.lan .right{
  position: relative;
  height: 0.68rem;
}
.lan .right span{
  position: relative;
}
.lan .right span:after {
  border: 0;
  content: '';
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  background: transparent;
  border-left: 0.01rem solid #333;
  border-bottom: 0.01rem solid #333;
  right: -20px;
  top: 43%;
  transform: translate(0,-50%) rotate(-45deg);
  -webkit-transform: translate(0,-50%) rotate(-45deg);
}
.lan .subnav{
  display: none;
  width: 1.75rem;
  position: absolute;
  top: 0.68rem;
  left: 50%;
  transform: translateX(-50%);
}
.lan a{
  display: block;
  /* background: #3b9de1; */
  font-size: 12px;
  color: #fff;
  padding: 0.13rem 0.15rem 0.13rem 0.2rem;
}
.lan .dropdown-menu{
	padding: 0!important;
}

/* banner */
.banner{
  position: relative;
}
.banner img{
  width: 100%;
}
.banner .swiper-pagination{
	width: 13px;
	right: 0.83rem;
	left: initial;
	bottom: initial;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	flex-direction: column;
}
.banner .swiper-pagination span{
	position: relative;
	margin: 0.09rem 0!important;
	width: 9px;
	height: 9px;
	background: #fff;
	opacity: 1;
}
.banner .swiper-pagination span:after{
	content: '';
	position: absolute;
	z-index: -1;
	left: 100%;
	width: 0;
	opacity: 0;
	height: 1px;
	background: #ff0000;
	top: 50%;
	transform: translateY(-50%);
}
.banner .swiper-pagination span.swiper-pagination-bullet-active:after{
	width: 0.83rem;
	opacity: 1;
}
.banner .swiper-pagination span.swiper-pagination-bullet-active{
	width: 13px;
	height: 13px;
	background: #ff0000;
}

/* 首页产品分类 */
.home-productclass{
	padding: 0.7rem 0 0;
	margin-bottom: -0.2rem;
}
.home-productclass .container{
	width: 67%;
}
.home-productclass .box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.home-productclass .box a{
	width: 20%;
	/* margin: 0 7vw 0.85rem 0; */
	text-align: center;
	font-size: 0.18rem;
	color: #252525;
	margin-bottom: 0.85rem;
}
.home-productclass .box a img{
	max-height: 0.76rem;
	margin-bottom: 0.2rem;
	border-radius: 50%;
}

/* 首页简介 */
.home-about{
	position: relative;
	padding: 0.6rem 0 0.35rem;
}
.home-about:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.95);
}
.home-about .container{
	width: 12.92rem;
}
.home-about .box{
	position: relative;
}
.home-about .title{
	margin-bottom: 0.85rem;
}
.home-about .cont{
	display: flex;
}
.home-about .text{
	width: 50%;
	margin: 0.2rem 0.6rem 0 0;
}
.home-about .img{
	width: 50%;
	max-height: 3.3rem;
	min-height: 3.3rem;
	border-radius: 0.1rem;
}
.home-about .about-text{
	color: #262626;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 10;
	-webkit-box-orient: vertical;
}
.home-about .text .btnn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.94rem;
	line-height: 0.3rem;
	border-radius: 0.3rem;
	border: 1px solid #54c0e9;
	font-size: 14px;
	color: #54c0e9;
	margin-top: 0.4rem;
	text-transform: uppercase;
}
.home-about .text .btnn svg{
	width: auto;
	height: 12px;
	margin-left: 0.07rem;
}

/* 首页热销产品 */
.new-product{
	padding: 0.98rem 0 0.85rem;
	background: #f2f2f2;
}
.new-product .container{
	width: 12.82rem;
}
.new-product .title{
	margin-bottom: 0.6rem;
}
.new-product-cont{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	min-height: 4.48rem;
}
.new-product-cont a{
	position: absolute;
	width: calc(25% - calc(3 / 4 * 0.37rem));
	margin: 0.22rem 0.37rem 0 0;
	border-radius: 0.16rem;
	overflow: hidden;
}
.new-product-cont a:nth-child(4n){
	margin-right: 0;
}
.new-product-cont a:nth-child(1), .new-product-cont a:nth-child(2), .new-product-cont a:nth-child(3), .new-product-cont a:nth-child(4){
	margin-top: 0;
}
.new-product-cont a:nth-child(n+5){
	bottom: 0;
}
.new-product-cont .img{
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}
.new-product-cont a:nth-child(1) .img, .new-product-cont a:nth-child(7) .img{
	height: 4.48rem;
}
.new-product-cont a:nth-child(2) .img, .new-product-cont a:nth-child(8) .img{
	height: 3.52rem;
}
.new-product-cont a:nth-child(3) .img, .new-product-cont a:nth-child(5) .img{
	height: 3.02rem;
}
.new-product-cont a:nth-child(4) .img, .new-product-cont a:nth-child(6) .img{
	height: 4.04rem;
}
.new-product-cont .text{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 0.45rem;
	background: rgba(53,74,82,0.73);
	color: #fff;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}
.new-product-cont .text em{
	display: block;
	width: 1.27rem;
	line-height: 0.34rem;
	border-radius: 0.34rem;
	background: #fff;
	font-size: 14px;
	color: #2d2d2d;
	text-align: center;
	margin-top: 0.5rem;
	text-transform: capitalize;
}

/* 首页热销 */
.selling{
	padding: 0 0 1.4rem;
	background: #f2f2f2;
}
.selling .container{
	width: 12.82rem;
}
.selling .title{
	margin-bottom: 0.7rem;
}
.selling-cont{
	position: relative;
	min-height: 5.92rem;
}
.selling-cont a{
	position: absolute;
	display: block;
	font-size: 14px;
}
.selling-cont a:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
}
.selling-cont a p{
	position: absolute;
	top: 0.18rem;
	left: 0.13rem;
	color: #2e2e2e;
	width: 70%;
	padding-left: 0.1rem;
}
.selling-cont a p:before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.04rem;
	height: 100%;
	background: #434343;
	border-radius: 0.04rem;
}
.selling-cont a:nth-child(1){
	width: 36%;
	height: 5.92rem;
}
.selling-cont a:nth-child(1) p{
	top: 0.65rem;
	left: 0.33rem;
	/*color: #fff;*/
}
.selling-cont a:nth-child(3) p, .selling-cont a:nth-child(5) p{
	width: 80%;
}
.selling-cont a:nth-child(1) p:before{
	/*background: #00fff6;*/
}
.selling-cont a:nth-child(2){
	left: calc(36% + 0.17rem);
	width: calc(38% - 0.17rem);
	height: 2.76rem;
}
.selling-cont a:nth-child(3){
	left: calc(74% + 0.17rem);
	width: calc(26% - 0.17rem);
	height: 3.17rem;
}
.selling-cont a:nth-child(4){
	left: calc(36% + 0.17rem);
	width: calc(38% - 0.17rem);
	height: 3.05rem;
	bottom: 0;
}
.selling-cont a:nth-child(5){
	left: calc(74% + 0.17rem);
	width: calc(26% - 0.17rem);
	height: 2.63rem;
	bottom: 0;
}

/* 首页热销 */
.honor{
	padding-bottom: 1.74rem;
	background: #f1f1f2;
}
.honor .title{
	margin-bottom: 1.24rem;
}
.honor .container{
	width: 72vw;
}
.home-honor{
	overflow: hidden;
}
.honor-cont .swiper-slide{
	box-shadow: 0px 9px 16.56px 1.44px rgba(90, 90, 90, 0.34);
}
.honor-cont .swiper-button-prev{
	left: -1.15rem;
}
.honor-cont .swiper-button-next{
	right: -1.15rem;
}
.honor-cont .swiper-button-next, .honor-cont .swiper-button-prev{
	background: transparent;
	opacity: 1;
	width: 0.61rem;
	height: 0.61rem;
}
.honor-cont .swiper-button-next svg, .honor-cont .swiper-button-prev svg{
	width: auto;
	height: 100%;
}
.honor-cont .swiper-button-next{
	transform: rotate(180deg);
}
.honor-cont .swiper-button-disabled{
		opacity: 0.38;
}
.honor-cont .swiper-button-next:after, .honor-cont .swiper-button-prev:after{
	display: none;
}

/* 底部logo */
.foot-logo{
	padding-bottom: 0.75rem;
	background: #f2f2f2;
}
.foot-logo .container{
	width: 11rem;
}
.foot-logo .box{
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}
.foot-logo .box li{
	width: calc(100% / 3 - calc(2 / 3 * 4.6vw));
	margin-right: 4.6vw;
	font-size: 14px;
	color: #343434;
}
.foot-logo .box li:last-child{
	margin-right: 0;
}
.foot-logo .box li img{
	max-height: 0.45rem;
	margin-bottom: 0.19rem;
}
.foot-logo .box li p{
	font-weight: bold;
	margin-bottom: 0.1rem;
}
.foot-logo .box li em{
	font-size: 12px;
}

/* news */
.news{
	padding: 0.7rem 0 1.15rem;
	background: #f2f2f2;
}
.news-list .container{
	width: 12rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.37rem 0.55rem 0.34rem 1rem;
	border-top: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
	margin-top: -1px;
}
.news-list .container svg{
	width: auto;
	height: 22px;
}
.news-list .text{
	width: 100%;
}
.news-list .text p{
	width: 90%;
	line-height: normal;
	color: #151515;
	margin-bottom: 0.17rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.news-list .text .date{
	color: #bebebe;
	line-height: 16px;
}
.news-list{
	margin-bottom: 0.55rem;
}
.news-list a{
	display: block;
}
.slide-tit{
    display: none;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 0.36rem;
	line-height: 0.3rem;
	color: #fff;
}
.slide-tit:after{
    display: none;
	content: '';
	position: absolute;
	width: 0.92rem;
	height: 0.04rem;
	background: #fff;
	left: 50%;
	transform: translateX(-50%);
	bottom: -0.24rem;
}
.slide-banner .swiper-slide:before, .slide-banner:before{
    display: none;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(48,46,47,0.42);
}

/* news details */
.news-details{
	padding-bottom: 0.38rem;
	background: #f2f2f2;
}
.news-details .page ul li a{
	width: 0.55rem!important;
	color: #2c2c2c;
}
.news-details .details{
	padding: 0.57rem 0 0.24rem;
}
.news-details .details .container{
	width: 11rem;
}
.news-title{
	font-size: 0.36rem;
	font-weight: bold;
	margin-bottom: 0.22rem;
	line-height: 35px;
	text-align: center;
}
.news-date{
	font-size: 14px;
	color: #858585;
	text-align: center;
}
.news-cont{
	margin-top: 0.4rem;
	line-height: 24px;
	color: #2e2e2e;
}

/* Technical support */
.support{
	padding-bottom: 0.5rem;
	background: #f2f2f2;
}
.support .arrow{
	padding: 0.35rem 0 0.2rem;
	margin-bottom: 0.4rem;
	justify-content: center;
}
.support .arrow a{
	position: relative;
	margin: 0 5.5vw;
	font-size: 0.2rem;
	text-transform: capitalize;
}
.support .arrow a:after{
	display: none;
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 1rem;
	height: 0.04rem;
	background: #158ee3;
	bottom: -0.21rem;
	border-radius: 0.04rem;
}
.support .arrow a.active{
	color: #1c91e2;
}
.support .arrow a.active:after{
	display: block;
}
.support .details .container{
	width: 14.15rem;
}
.support .details .box{
	display: flex;
	flex-wrap: wrap;
	border-radius: 0.08rem;
}
.support .details .box a{
	width: calc(100% / 3 - calc(2 / 3 * 5vw));
	margin: 0 5vw 0.3rem 0;
	background: #fff;
	border-radius: 0.08rem;
}
.support .details .box a:nth-child(3n){
	margin-right: 0;
}
.support .details .box .img{
	overflow: hidden;
	height: 3.27rem;
	border-radius: 0.08rem;
	transform: perspective(10px);
}
.support .details .box .img div{
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}
.support .details .box .text{
	padding: 0.19rem 0.12rem;
}
.support .details .box .text p{
	font-size: 0.18rem;
	font-weight: bold;
	margin-bottom: 0.15rem;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.support .details .box .text em{
	font-size: 12px;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.support-details .container{
	width: 13rem!important;
}
.support-details .details{
	margin-bottom: 0.5rem;
}
.support-title{
	font-size: 0.24rem;
	font-weight: bold;
	text-align: center;
	width: 100%;
	padding-bottom: 0.1rem;
	margin-bottom: 0.4rem;
	border-bottom: 1px solid #e3e3e3;
}
.support-details-cont{
	color: #000;
	line-height: 24px;
}
.support-details .page ul li a{
	width: 0.55rem!important;
}

/* FAQ */
.faq{
	margin: -0.4rem 0 0.5rem;
}
.faq .container{
	width: 14rem;
}
.faq a{
	padding: 0.35rem 0.5rem;
	border-bottom: 2px solid #e5e5e5;
	display: block;
	cursor: default;
	color: #000;
}
.faq .text p{
	margin-bottom: 0.15rem;
}

/* service */
.service{
	margin-top: -0.42rem;
	margin-bottom: -0.5rem;
}
.service ul{
	background: #fff;
}
.service ul li{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.service ul li:nth-child(2n){
	flex-direction: row-reverse;
}
.service .img, .service .text{
	width: 50%;
	transform: perspective(10px);
	overflow: hidden;
}
.service .text{
	padding: 0 10vw;
}
.service .text em{
	font-size: 0.3rem;
	line-height: 35px;
	font-weight: bold;
	margin-bottom: 0.1rem;
}
.service .text div{
	color: #000;
}
.service-text{
	padding: 0.75rem 0;
	background: #f2f2f2;
	text-align: center;
}
.service-text .container{
	width: 12.58rem;
}
.service-text em{
	font-size: 0.3rem;
	line-height: 0.3rem;
	font-weight: bold;
	margin-bottom: 0.3rem;
}
.service-text div{
	color: #000;
}

/* contact */
.contact{
	position: relative;
	padding: 1.9rem 0 0.65rem;
	background: #f2f2f2;
}
.map{
	margin-bottom: 1rem;
}
.contact #container{
	height: 8rem;
}
.contact #container .amap-info-close{
	display: none;
}
.contact-text{
	width: 5rem;
	position: absolute;
	left: calc((100% - 13rem) / 2);
	top: 0.47rem;
	background: #1e6190;
	border-radius: 0.08rem;
	padding: 0.45rem 0.74rem 0.5rem 0.68rem;
	color: #fff;
}
.contact-text > em{
	font-size: 0.3rem;
	line-height: 0.3rem;
	font-weight: bold;
	margin-bottom: 0.42rem;
}
.contact-text li{
	margin-bottom: 0.1rem;
}
.contact-text li a{
    color: #fff;
}
.contact-text li p{
	font-size: 0.18rem;
	font-weight: bold;
	margin-right: 0.3rem;
	display: inline-block;
	width: 0.7rem;
}
.contact-message .container{
	width: 13rem;
}
.contact-message .title{
	font-size: 0.3rem;
	color: #383838;
	margin-bottom: 0.23rem;
}
.contact-message .js{
	font-size: 14px;
	color: #7f7f7f;
	margin-bottom: 0.2rem;
	display: block;
	text-align: center;
}
.contact-message input, .contact-message textarea{
	display: block;
	width: 100%;
	line-height: 0.46rem;
	border-radius: 0.08rem;
	border: 0.02rem solid #9b9b9b;
	font-size: 14px;
	color: #7f7f7f;
	padding: 0 0.35rem;
	margin-bottom: 0.2rem;
}
.contact-message button{
	display: block;
	margin: 0 auto;
	width: 2.6rem;
	line-height: 0.48rem;
	border-radius: 0.48rem;
	font-size: 14px;
	color: #fff;
	background: #1cb3df;
}

/* about us */
.about{
	padding: 0.57rem 0 1rem;
	background: #f2f2f2;
}
.about .container{
	width: 83vw;
}
.about-text li{
	display: flex;
	align-items: center;
	margin-bottom: 0.7rem;
}
.about-text li:last-child{
	margin-bottom: 1.2rem;
}
.about-text li .text, .about-text li .img{
	width: calc(50% - calc(1 / 2 * 5.5vw));
	margin-right: 5.5vw;
	color: #181818;
	transform: perspective(10px);
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}
.about-text li:nth-child(2n){
	flex-direction: row-reverse;
}
.about-text li:nth-child(odd) .img, .about-text li:nth-child(even) .text{
	margin-right: 0;
}
.about-text li .img{
	border-radius: 0.08rem;
	overflow: hidden;
}
.production .title{
	margin-bottom: 0.78rem;
	text-transform: capitalize;
}
.production .cont{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.production .cont .img{
	margin-bottom: 0.4rem;
}
.production .cont .img div{
	width: 2.37rem;
	height: 2.37rem;
	margin: 0 auto;
}
.production .cont li{
	margin: 0 2vw;
	text-align: center;
	color: #343434;
}
.production .cont .text p{
	font-size: 14px;
	line-height: 14px;
	margin-bottom: 0.1rem;
	font-weight: bold;
}
.production .cont .text span{
	font-size: 12px;
}

/* workshop */
#workshop {
	position: relative;
	width: 12rem;
	margin: 0 auto 1rem;
}
#workshop .swiper-slide {
	width: 520px;
	background: #fff;
	box-shadow: 0 8px 30px #ddd;
}
#workshop .swiper-slide-active{
	box-shadow: 0px 9px 16.56px 1.44px rgba(90, 90, 90, 0.2);
}
#workshop .swiper-slide img{
	display: block;
	transform: perspective(10px);
}
#workshop  .swiper-slide p {
	line-height: 98px;
	padding-top: 0;
	text-align: center;
	color: #636363;
	font-size: 1.1em;
	margin: 0;
}
#workshop .swiper-pagination {
	width: 100%;
	bottom: 20px;
}
#workshop .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	border: 3px solid #fff;
	background-color: #d5d5d5;
	width: 10px;
	height: 10px;
	opacity: 1;
}
#workshop .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 3px solid #00aadc;
	background-color: #fff;
}
#workshop .swiper-button-prev {
	left: -30px;
	width: 0.61rem;
	height: 0.61rem;
	background: transparent;
	background-position: 0 0;
	background-size: 100%;
}
#workshop .swiper-button-prev:hover {
	background-position: 0 -46px;
	background-size: 100%
}
#workshop .swiper-button-next {
	right: -30px;
	width: 0.61rem;
	height: 0.61rem;
	background: transparent;
	background-position: 0 -93px;
	background-size: 100%;
}
#workshop .swiper-button-next:hover {
	background-position: 0 -139px;
	background-size: 100%
}
#workshop .swiper-button-prev:after, #workshop .swiper-button-next:after{
	display: none;
}
#workshop .swiper-button-next{
	transform: rotate(180deg);
}
#workshop .swiper-button-prev svg, #workshop .swiper-button-next svg{
	width: auto;
	height: 100%;
}

/* product */
.product{
	padding: 0.35rem 0 0.78rem;
	background: #f2f2f2;
}
.product .container{
	width: 86vw;
	display: flex;
	align-items: flex-start;
}
.product-list{
	margin-bottom: 0.5rem;
	display: flex;
	flex-wrap: wrap;
}
.product-list a{
	width: calc(25% - calc(3 / 4 * 3.4vw));
	margin: 0 3.4vw 0.45rem 0 ;
	background: #fff;
	border-radius: 0.08rem;
	overflow: hidden;
}
.product-list a:nth-child(4n){
	margin-right: 0;
}
.product-list .img{
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.product-list .img img{
	transform: perspective(10px);
}
.product-list .text{
	padding: 0.28rem 0.15rem;
	font-size: 12px;
	color: #3f3f3f;
	font-weight: bold;
}
.product-list .text p{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.product-cate{
	width: 13vw;
	margin-right: 0.79rem;
	background: #fff;
}
.product-cate .tit{
	font-weight: bold;
	color: #191919;
	padding: 0.15rem;
}
.product-cate li{
	line-height: normal;
}
.product-cate li.actn a:after {
    border: 0;
    content: '';
    position: absolute;
    width: 0.08rem;
    height: 0.08rem;
    background: transparent;
    border-left: 0.01rem solid #191919;
    border-bottom: 0.01rem solid #191919;
    right: 0.15rem;
    top: 48%;
    transform: translate(0,-50%) rotate(-135deg);
    -webkit-transform: translate(0,-50%) rotate(-135deg);
}
.product-cate li.active a:after{
	top: 45%;
	transform: translate(0,-50%) rotate(-45deg);
	-webkit-transform: translate(0,-50%) rotate(-45deg);
}
.product-cate li > a{
	position: relative;
	font-size: 12px;
	color: #191919;
	display: block;
	padding: 0.15rem 0.2rem;
}
.product-cate li.actn > a:before{
	content: '';
	position: absolute;
	width: 0.03rem;
	height: 0;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #158ee3;
}
.product-cate li.active > a:before{
	height: 0.4rem;
}
.product-cate li.active > a{
	color: #0090ff;
}
.product .product-cont{
	width: calc(100% - 13vw - 0.79rem);
}
.product-subnav{
	display: none;
}
.product-subnav a{
	display: block;
	padding: 0.15rem 2.1vw;
	font-size: 12px;
	color: #191919;
}
.product-subnav a.active{
	background: #ecfbff;
}

/* product-details */
.product-details-cont{
	display: flex;
	margin-bottom: 0.75rem;
}
.product-details .product-cate{
	margin-right: 0.45rem;
}
.product-details .product-cont {
    width: calc(100% - 13vw - 0.45rem);
	margin-top: 0.2rem;
}
.product-title{
	font-size: 0.18rem;
	line-height: 0.18rem;
	color: #2b2b2b;
	margin-bottom: 0.28rem;
	padding-bottom: 0.21rem;
	border-bottom: 0.02rem solid #e5e5e5;
	text-transform: capitalize;
}
.product-details-cont .left{
  width: 8.75rem;
}
.product-details-cont .pic{
  position: relative;
  width: 5.76rem;
  height: 4.69rem;
  margin-right: 0.27rem;
}
.product-details-cont .text{
  width: calc(100% - 5.76rem - 0.27rem);
  font-size: 0.13rem;
  color: #030303;
}
.product-details-cont .text .tit{
  margin-bottom: 0.1rem;
  font-size: 0.18rem;
  color: #252525;
  font-family: 'Montserrat-Regular';
}
.product-details-cont .text .score{
  font-size: 0.14rem;
  color: #999;
  display: flex;
  align-items: center;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #e5e5e5;
}
.product-details-cont .price{
  display: flex;
  align-items: center;
  color: #ff0000;
  font-size: 0.24rem;
  line-height: 0.24rem;
  padding: 0.2rem 0 0.25rem;
  border-bottom: 1px solid #e5e5e5;
}
.product-details-cont .price .yprice{
  margin-left: 0.1rem;
  color: #545454;
  text-decoration: line-through;
  font-size: 0.24rem;
}
.product-details-cont .text .score span{
  margin-left: 0.17rem;
  line-height: 0.11rem;
  display: none;
}
.product-details-cont .gallery-top{
  height: 100%;
  width: 4.69rem;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0.08rem;
}
.product-details-cont .gallery-top .swiper-slide{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.08rem;
  background: #fff;
}
.product-details-cont .gallery-thumbs{
  width: 75%;
  height: 0.9rem;
  margin-top: 0.1rem;
  transform: rotate(90deg);
  left: -42%;
  top: 40%;
}
.product-details-cont .gallery-thumbs .swiper-slide{
  border: 2px solid #f2f2f2;
  cursor: pointer;
  opacity: 0.8;
  width: 0.9rem!important;
  height: 0.9rem!important;
  border-radius: 0.08rem;
  transform: rotate(-90deg);
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}
.product-details-cont .gallery-thumbs .swiper-slide-thumb-active{
  opacity: 1;
  border-color: #27b7e6;
}
.product-details-cont .pic .swiper-button-next{
  background: url(../..//static/images/prev.png) no-repeat center;
  width: 0.28rem;
  height: 0.17rem;
  bottom: 0;
  top: inherit;
	transform: rotate(180deg);
  transition: all 0.3s;
}
.product-details-cont .pic .swiper-button-prev{
  background: url(../..//static/images/prev.png) no-repeat center;
  width: 0.28rem;
  height: 0.17rem;
  top: 0.2rem;
  transition: all 0.3s;
}
.product-details-cont .pic .swiper-button-prev:hover, .product-details-cont .pic .swiper-button-next:hover{
  opacity: 0.5;
}
.product-details-cont .pic video{
  width: 100%;
  height: 100%;
  /* object-fit: fill; */
}
.product-details-cont .swiper-button-prev{
  top: 0;
  left: 0.31rem;
}
.product-details-cont .swiper-button-next{
  bottom: 0;
  left: 0.31rem;
}
.product-details-cont .swiper-button-prev:after, .product-details-cont .swiper-button-next:after{
	display: none;
}
.product-details-title{
	color: #3f3f3f;
	font-weight: bold;
	margin-bottom: 0.2rem;
}
.product-details-content{
	margin-bottom: 0.5rem;
	background: #fff;
	border-radius: 0.08rem;
	padding: 0.3rem;
}
.product-details-cont .product-text{
	width: calc(100% - 0.9rem - 0.15rem - 4.69rem - 0.27rem);
	margin-top: 0.1rem;
}
.product-details-cont .product-text .content{
	font-size: 12px;
	color: #3f3f3f;
	line-height: 0.27rem;
	margin-bottom: 0.2rem;
}
.product-details-cont .item{
    display: none;
	margin-bottom: 0.1rem;
}
.product-details-cont .item a{
	display: inline-block;
	padding: 0 0.22rem;
	border-radius: 0.34rem;
	line-height: 0.34rem;
	color: #0890de;
	font-size: 14px;
	text-align: center;
	border: 1px solid #0890de;
	margin: 0 0.1rem 0.1rem 0;
	text-transform: capitalize;
}
.product-details-cont .item a.active{
	background: #0890de;
	color: #fff;
}
.product-details-cont .inquiry{
	width: 2.18rem;
	line-height: 0.34rem;
	border-radius: 0.34rem;
	font-size: 14px;
	color: #fff;
	background: #0890de;
	text-align: center;
	display: block;
	text-transform: capitalize;
}

/* 子页面导航 */
.arrow{
	margin: 0 1.05rem;
	padding: 0.38rem 0.5rem 0.19rem;
	border-bottom: 0.02rem solid #e3e3e3;
	display: flex;
	align-items: center;
}
.arrow a{
	/*font-size: 14px;*/
	color: #2e2e2e;
}
.arrow span{
	font-weight: bold;
}
.arrow svg{
	margin: 0 0.1rem 0 0.05rem;
	width: auto;
	height: 15px;
}

/* 公共 */
.lcl_socials{
	display: none!important;
}
#lcl_thumbs_nav{
    opacity: 0;
    -webkit-transform: translateY(150%);
    -ms-transform: translateY(150%);
    transform: translateY(150%);
}
.title{
	text-align: center;
	font-size: 0.26rem;
	line-height: 0.26rem;
	color: #262626;
	font-weight: bold;
	display: block;
	text-transform: capitalize;
}
.title p{
	position: relative;
	display: inline-block;
}
.title p:after{
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -0.2rem;
	width: 70%;
	height: 0.04rem;
	background: #50acd4;
}

/* 分页 */
.page{
  display: flex;
  align-items: center;
  justify-content: center;
}
.page ul{
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page ul li a, .page ul li span{
  padding: 0;
  border-radius: 0!important;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border: 1px solid #e5e5e5;
  font-size: 12px;
  color: #333;
  background: transparent!important;
  margin: 0 6px;
  text-align: center;
  transition: all 0.2s;
}
.page ul li.active a, .page ul li.active span{
  background: #ff0000!important;
  color: #fff;
  border-color: #ff0000!important;
}

/* 子导航 */
.subnavbar{
  display: none;
  position: fixed;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  top: 0.77rem;
  background: #fff;
  padding: 0.65rem 0 0.45rem;
  border-top: 1px solid #797f8a;
  animation: subnavbar 0.7s;
}
.subnavbar.active{
  display: block;
}
.subnavbar svg{
  width: 0.11rem;
  height: auto;
}
.subnavbar .left{
  width: 2.65rem;
}
.subnavbar .left a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  font-size: 0.16rem;
  color: #666;
  padding: 0.22rem 0;
  border-bottom: 1px solid #ccc;
}
.subnavbar .left a:first-child{
  padding-top: 0;
}
.subnavbar .box{
  width: 8.1rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@keyframes subnavbar{
  0%{
    opacity: 0;
    top: 0.97rem;
  }
  100%{
    opacity: 1;
    top: 0.77rem;
  }
}
.subnavbar .prolist .container{
  width: 56%;
}
.subnavbar .prolist{
  padding: 0;
}

/* footer */
.footer {
  position: relative;
  overflow: hidden;
  background: #2d2d2d;
}
.footer-logo .box{
  padding-bottom: 0.45rem;
  border-bottom: 1px solid #313131;
}
.foot-nav{
  padding: 0.45rem 0;
  overflow: hidden;
}
.foot-nav .container{
	width: 12.82rem;
}
.foot-nav .cont{
  display: flex;
  justify-content: space-between;
}
.foot-nav .left{
  text-align: right;
}
.foot-nav .left svg{
	width: auto;
	height: 20px;
}
.foot-nav .left .share{
	height: 20px;
	margin-bottom: 0.19rem;
	display: flex;
	align-items: center;
}
.foot-nav .left .share a{
	height: 100%;
	margin-right: 0.24rem;
}
.foot-nav .left img{
  height: 1.24rem;
  margin-bottom: 0.4rem;
}
.foot-nav .left form{
	width: 2.55rem;
	line-height: 0.33rem;
	display: flex;
	align-items: center;
}
.foot-nav .left form #emails{
	width: 1.86rem;
	border: 1px solid #777;
	border-right: 0;
	font-size: 12px;
	color: #fff;
	padding: 0 0.09rem;
}
.foot-nav .left form #emails::-webkit-input-placeholder{
	color: #fff;
}
.foot-nav .left form #dyemail{
	background: #13b8e8;
	color: #fff;
	font-size: 12px;
	width: 0.69rem;
	height: 100%;
	text-align: center;
	border: 1px solid #13b8e8;
}
.foot-nav .right{
	width: 9.4rem;
}
.foot-nav .right .nav ul{
  display: flex;
  justify-content: space-between;
}
.foot-nav .right .nav ul li div{
  display: flex;
  flex-direction: column;
}
.foot-nav .right .nav ul li > b{
	cursor: pointer;
	font-weight: bold;
  line-height: 0.2rem;
  color: #fff;
  margin-bottom: 0.23rem;
}
.foot-nav .right .nav ul li div a{
  line-height: normal;
  color: #fff;
  padding: 0.04rem 0;
  font-size: 12px;
}
.baidu{
    margin-top: 0.3rem;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
}
.baidu img{
    position: relative;
    top: -2px;
    margin-right: 5px;
}
.baidu a{
    color: #fff;
}

/* 1500 */
@media screen and (max-width: 1500px){
	.send-email, .nav-search{
		margin-right: 3vw;
	}
}

/* 1300 */
@media screen and (max-width: 1300px){
	.send-email, .nav-search{
		margin-right: 2vw;
	}
}

/* 中小屏电脑 */
@media screen and (max-width: 1200px){
  
}

/* 竖屏ipad */
@media screen and (max-width: 992px){
	.header{
		padding: 0.1rem 15px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.header img{
		height: 0.5rem;
	}
}

/* 竖屏ipad */
@media screen and (min-width: 992px){
	.banner .swiper-pagination span{
		transition: all 0.3s;
	}
	.banner .swiper-pagination span:after{
		transition: all 0.5s;
	}
	.nav-bar .subnav a, .nav-bar .subnav em, .lan a{
		transition: all 0.2s;
	}
	.nav-bar .subnav em:hover, .lan a:hover{
		background: #fff;
		color: #191919;
	}
	.nav-bar .subnav em.actn:hover:after{
		border-color: #cdcdcd;
	}
	.nav-bar .subnav-nav a:hover{
		background: #c6eef1;
	}
	.nav-bar li > a:hover{
		color: #3b9de1;
	}
	.send-email a, .nav-search svg, .home-productclass .box a p, .home-productclass .box a img, .home-about .text .btnn, .foot-nav .right .nav ul li > b, .foot-nav .right .nav ul li div a, .home-about .text .btnn svg path, .home-about .img, .foot-nav .left svg path, .new-product-cont .text em, .honor-cont .swiper-button-next, .honor-cont .swiper-button-prev, .nav-bar li > a, #workshop .swiper-button-prev, #workshop .swiper-button-next, .product-list .img img, .product-list .text, .product-cate li > a, .product-cate li.actn:after, .product-cate li.actn a:after, .product-details-cont .item a, .product-details-cont .inquiry{
		transition: all 0.3s;
	}
	.send-email a:hover, .nav-search svg:hover, .product-details-cont .item a:hover, .product-details-cont .inquiry:hover{
		opacity: 0.8;
	}
	.home-productclass .box a:hover p{
		color: #3b9de1;
	}
	.home-productclass .box a:hover img{
		box-shadow: 0px 9px 16.56px 1.44px rgba(90, 90, 90, 0.19);
	}
	.home-about .text .btnn:hover{
		background: #54c0e9;
		color: #fff;
	}
	.home-about .text .btnn:hover svg path{
		fill: #fff;
	}
	.foot-nav .right .nav ul li > b:hover, .foot-nav .right .nav ul li div a:hover{
		color: #13b8e8;
	}
	.home-about .img:hover{
		transform: scale(0.97);
	}
	.foot-nav .left .share a:hover svg path{
		fill: #13b8e8;
	}
	.new-product-cont a:hover{
		box-shadow: 0px 9px 16.56px 1.44px rgba(90, 90, 90, 0.19);
	}
	.new-product-cont .text, .selling-cont a:before{
		transition: all 1s;
	}
	.new-product-cont a:hover .text{
		opacity: 1;
		visibility: visible;
	}
	.new-product-cont .text em:hover{
		background: #3b9de1;
		color: #fff;
	}
	.selling-cont a:hover:before{
		background: rgba(0,0,0,0.5);
		box-shadow: 0px 9px 16.56px 1.44px rgba(90, 90, 90, 0.34);
	}
	.selling-cont a:hover p{
		color: #fff;
	}
	.selling-cont a:hover p:before{
		background: #00fff6;
	}
	.selling-cont a p, .selling-cont a p:before{
		transition: all 0.5s;
	}
	.honor-cont .swiper-button-next:hover, .honor-cont .swiper-button-prev:hover, #workshop .swiper-button-prev:hover, #workshop .swiper-button-next:hover{
		opacity: 0.38;
	}
	.news-list a:hover{
		background: #fff;
		box-shadow: 2.27px 4.455px 15.68px 0.32px rgba(0, 0, 0, 0.05);
	}
	.news-list a:hover p{
		color: #c42323;
	}
	.arrow a:hover{
		background: transparent;
		color: #3b9de1;
		box-shadow: none;
	}
	.support .details .box a:hover{
		box-shadow: 2.27px 4.455px 15.68px 0.32px rgba(0, 0, 0, 0.05);
	}
	.support .details .box a:hover .text p{
		color: #1c91e2;
	}
	.support .details .box a:hover .img div, .about-text li .img:hover div{
		transform: perspective(10px) scale(1.05);
	}
	.support .details .box .img div{
		transition: all 0.5s;
	}
	.support .details .box .text p{
		transition: all 0.3s;
	}
	.about-text li .img div, .home-about .img, .service .img div{
		transition: all 2s;
	}
	.product-list a:hover{
		box-shadow: 2.27px 4.455px 15.68px 0.32px rgba(0, 0, 0, 0.05);
	}
	.product-list a:hover .img img{
		transform: scale(1.05) perspective(10px);
	}
	.product-list a:hover .text{
		color: #3b9de1;
	}
	.product-cate li:hover > a{
		color: #158ee3;
	}
	.product-subnav a:hover{
		background: #ecfbff;
	}
	.product-cate li > a:before{
		transition: all 0.4s;
	}
}

/* 768 */
@media screen and (max-width: 768px){
    .container{
        width: auto!important;
    }
    .news-list .container{
        padding: 15px;
    }
    .news-list .text p{
        -webkit-line-clamp: 2;
    }
    .product-cate, .foot-nav .right{
        display: none;
    }
    .foot-nav .left form #emails{
        width: calc(100% - 2rem);
        padding: 0 15px;
        font-size: 14px;
    }
    .foot-nav .left form #dyemail{
        width: 2rem;
        font-size: 14px;
    }
    .foot-nav .left form, .foot-nav .left{
        width: 100%;
        line-height: 0.7rem;
    }
    .title{
        font-size: 16px;
        text-transform: capitalize;
    }
    .home-about .cont {
        flex-direction: column-reverse;
    }
    .home-about .text, .home-about .img{
        width: 100%;
    }
    .home-about .about-text{
        max-height: 1.1rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
    }
    .home-about .text .btnn{
        margin: 0.5rem auto 0;
        width: 2rem;
        line-height: 0.5rem;
        font-size: 16px;
    }
    .honor-cont .swiper-slide{
        box-shadow: none;
    }
    .honor-cont .swiper-button-prev{
        left: 0;
    }
    .honor-cont .swiper-button-next{
        right: 0;
    }
    .honor-cont .swiper-button-next, .honor-cont .swiper-button-prev{
        width: 0.8rem;
        height: 0.8rem;
    }
    .foot-logo .box li{
        width: 100%;
        margin: 0 0 0.4rem 0;
    }
    .new-product-cont a{
        position: static;
        width: calc(50% - calc(1 / 2 * 0.37rem));
    }
    .new-product-cont a:nth-child(2n){
        margin-right: 0;
    }
    .new-product-cont a:nth-child(n+5){
        display: none;
    }
    .new-product-cont .img{
        height: 3.5rem!important;
    }
    .new-product-cont .text{
        opacity: 1;
        visibility: visible;
        border-radius: 0.16rem;
        font-size: 14px;
        text-align: center;
        background: rgba(53,74,82,0.5);
    }
    .selling-cont a:before{
        background: rgba(0,0,0,0.5);
    }
    .selling-cont a{
        position: static;
        width: 50%!important;
        height: 3rem!important;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .selling-cont a:nth-child(1) {
        width: 100%!important;
        height: 3.5rem!important;
    }
    .selling-cont a p:before{
        display: none;
    }
    .selling-cont a p{
        width: calc(100% - 30px);
        color: #fff;
        position: relative;
        top: 0!important;
        left: 0!important;
        padding-left: 0;
    }
    .selling-cont{
        display: flex;
        flex-wrap: wrap;
        min-height: auto;
    }
    .new-product-cont .text em{
        display: none;
    }
    .foot-logo .box li em{
        font-size: 13px;
    }
    .product .product-cont{
        width: 100%;
    }
    .product-list a{
        width: calc(50% - calc(1 / 2 * 15px));
        margin: 0 15px 15px 0;
    }
    .product-list a:nth-child(2n){
        margin-right: 0;
    }
    .product-list .text p{
        -webkit-line-clamp: 2;
    }
    .product-list .text{
        font-size: 14px;
    }
    .about-text li{
        margin-bottom: 0.3rem!important;
        flex-direction: column-reverse!important;
    }
    .about-text li:last-child{
        margin-bottom: 0.7rem!important;
    }
    .about-text li *{
        width: 100%!important;
    }
    .about-text li:nth-child(odd) .text{
        margin: 0;
        padding: 15px 0 0;
    }
    .about-text li:nth-child(even) .img{
        margin: 0;
        padding-bottom: 15px;
    }
    #workshop{
        width: auto;
    }
    #workshop .swiper-slide{
        width: 100%;
    }
    #workshop .swiper-button-prev{
        left: 0;
        width: 0.8rem;
        height: 0.8rem;
    }
    #workshop .swiper-button-next{
        right: 0;
        width: 0.8rem;
        height: 0.8rem;
    }
    .production .cont .img div{
        width: 3rem;
        height: 3rem;
    }
    .production .cont{
        flex-wrap: wrap;
    }
    .production .cont .text p{
        font-size: 16px;
        line-height: normal;
    }
    .production .cont .text span{
        font-size: 14px!important;
    }
    .production .cont li{
        width: calc(50% - calc(1 / 2 * 2vw));
        margin: 0.4rem 2vw 0 0;
    }
    .production .cont li:nth-child(2n){
        margin-right: 0;
    }
    .production .cont li:nth-child(1), .production .cont li:nth-child(2){
        margin-top: 0;
    }
    .product-details-cont{
        flex-direction: column;
    }
    .product-details-cont .pic{
        width: 100%;
        height: 6.2rem;
        margin-right: 0;
        margin-bottom: 0.3rem;
    }
    .product-details-cont .product-text{
        width: 100%;
    }
    .product-details-cont .gallery-top{
        width: 100%;
        height: 5rem;
        position: static;
    }
    .product-details-cont .gallery-top img{
        max-width: 100%;
        max-height: 100%;
    }
    .product-details-cont .gallery-thumbs{
        transform: none;
        left: inherit;
        top: inherit;
        height: 1rem;
        margin-top: 0.22rem;
        width: 72%;
    }
    .product-details-cont .gallery-thumbs .swiper-slide{
        transform: none;
        width: 1rem!important;
        height: 1rem!important;
    }
    .product-details-cont .pic .swiper-button-prev, .product-details-cont .pic .swiper-button-next{
        top: inherit;
        bottom: 0.12rem;
        width: 20px;
        height: 37px;
        background: url(../..//static/images/menu_list_icon.png) no-repeat center / contain;
        background-size: 60%;
        transform: rotate(180deg);
    }
    .product-details-cont .pic .swiper-button-prev{
        left: 0.2rem;
    }
    .product-details-cont .pic .swiper-button-next{
        left: inherit;
        right: 0.2rem;
        transform: rotate(0deg);
    }
    .product-details-cont .product-text .content{
        font-size: 14px;
    }
    .product-title{
        font-size: 16px;
        font-weight: bold;
        line-height: normal;
        text-transform: capitalize;
    }
    .product-details-cont .item a{
        width: 1.5rem;
        line-height: 0.6rem;
    }
    .product-details-cont .inquiry{
        width: 3rem;
        line-height: 0.7rem;
    }
    .support .details .box a{
        width: calc(50% - calc(1 / 2 * 15px));
        margin: 0 15px 15px 0;
    }
    .support .details .box a:nth-child(3n){
        margin-right: 15px;
    }
    .support .details .box a:nth-child(2n){
        margin-right: 0;
    }
    .support .details .box .text p{
        font-size: 16px;
    }
    .support .details .box .text em{
        font-size: 14px;
    }
    .support .arrow{
        display: flex;
        align-items: flex-end;
        margin: 0 0 0.4rem;
    }
    .support .arrow a{
        font-size: 14px;
        width: 33%;
        margin: 0;
        text-align: center;
    }
    .support-details .container{
        width: auto!important;
    }
    .support-title{
        font-size: 16px;
    }
    .support-details .page ul li a, .news-details .page ul li a{
        width: 1.5rem!important;
        font-size: 14px;
        height: 0.6rem;
        line-height: 0.6rem;
    }
    .contact{
        padding-top: 2.5rem;
    }
    .contact #container{
        height: 4rem;
    }
    .contact-text{
        width: calc(100% - 30px);
        padding: 15px;
        left: inherit;
    }
    .contact-text li *{
        font-size: 14px!important;
    }
    .contact-text li p{
        width: 1rem;
    }
    .contact-message input{
        line-height: 0.7rem;
        padding: 0 15px;
    }
    .contact-message textarea{
        padding: 15px;
    }
    .contact-message button{
        line-height: 0.7rem;
    }
    .faq a{
        padding: 0.3rem 0;
    }
    .faq .text em{
        font-size: 14px;
    }
    .service ul li{
        flex-direction: column!important;
    }
    .service ul li *{
        width: 100%!important;
    }
    .service .text{
        padding: 15px;
    }
    .service .text div, .service-text div{
        font-size: 14px;
    }
    .arrow{
        margin: 0;
    }
    .news-title{
        font-size: 16px;
        line-height: normal;
    }
    .news-cont{
        font-size: 14px;
    }
	.header {
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    position: sticky;
		top: 0;
	    width: 100%;
	    background: #fff;
	    padding: 0.36rem 0.48rem 0.32rem;
	}
	.header img {
	    height: 0.88rem;
	}
	.mobile{
		display: none;
		background: #FBF7F3;
		position: fixed;
		z-index: 160;
		top: 1.56rem;
		bottom: 0;
		width: 100%!important;
		height: calc(100% - 1.56rem);
		border-top: 1px solid #d6d6d6;
	}
	.mobile .top{
		display: flex;
		align-items: center;
		justify-content: space-between;
		background: #fff;
		margin: 0;
		padding: 0.32rem 0.48rem;
	}
	.mobile .top svg{
		width: auto;
		height: 0.35rem;
		margin-right: 0.32rem;
	}
	.mobile .top svg path{
		fill: #5B6670;
	}
	.mobile .top a{
		width: 2rem;
		font-size: 0.32rem;
		font-family: 'Raleway-Medium';
		font-weight: 500;
		line-height: 0.8rem;
		color: #fff;
		text-align: center;
	}
	.search{
		width: 3rem;
		height: 0.8rem;
		border-radius: 0.8rem;
		background: #FBF7F3;
		padding: 0 0.3rem;
	}
	.search button {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	.search form {
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	}
	.search input{
		width: 80%;
		height: 0.8rem;
		font-size: 0.32rem;
	}
	.search svg{
		height: 0.3rem!important;
		margin-right: 0!important;
	}
	.mobile .bot{
		position: relative;
		height: calc(100% - 1.44rem);
		padding: 0.5rem 0.48rem 0;
	}
	.icon_mb{
		position: absolute;
		height: 1.66rem;
		bottom: 0;
		width: calc(100% - 0.96rem);
		display: flex;
		align-items: center;
		border-top: 0.02rem solid #D6D6D6;
		display: none;
	}
	.icon_mb select{
		height: 0.6rem;
		border: 0;
		width: 3rem;
	}
	.icon_mb img{
		height: 0.45rem;
	}
	.icon_mb a{
		margin-right: 0.52rem;
	}
	.nav_mb{
		height: calc(100% - 1.66rem);
		overflow-y: scroll;
	}
	.nav_mb .li, .nav_mb .li > a{
		font-size: 0.48rem;
		/* font-family: 'Raleway-Medium'; */
		line-height: 0.58rem;
		color: #5B6670;
		margin-bottom: 0.62rem;
		display: block;
		text-transform: capitalize;
	}
	.nav_mb .list{
		padding-right: 0.15rem;
	}
	.nav_mb .list .ul1, .nav_mb .list .ul2{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.nav_mb .list img{
		transform: rotate(90deg);
		width: 0.2rem;
	}
	.nav_mb .ul2{
		font-size: 0.3rem;
		/* font-family: 'Raleway-Medium'; */
		line-height: 0.3rem;
		color: #5B6670;
		margin-bottom: 0.35rem;
	}
	.nav_mb .ul2 a{
		color: #5B6670;
	}
	.nav_mb .ul2 img{
		display: none;
		width: 0.15rem;
	}
	.nav_mb .ul1{
		margin-bottom: 0.45rem;
	}
	.nav_mb .ul1 > a{
	    color: #5b6670;
	    width: 100%;
	   text-transform: capitalize;
	}
	.nav_mb .ul1.active img, .nav_mb .ul2.active img{
		transform: rotate(-90deg);
	}
	.nav_mb .list3{
		display: none;
		padding: 0 0 0 0.38rem!important;
		width: auto!important;
	}
	.nav_mb .list2 .ul2 span{
		display: none;
	}
	.nav_mb .list2.actn .ul2 span, .nav_mb .list2 .ul2 a, .nav_mb .list2.actn .ul2 img{
		display: block!important;
	}
	.nav_mb .list2-box{
		display: none;
		padding: 0!important;
		width: auto!important;
	}
	.nav_mb .list3 a{
		font-size: 0.28rem;
		/* font-family: 'Raleway-Medium'; */
		line-height: 0.3rem;
		color: #5B6670;
		margin-bottom: 0.35rem;
		display: block;
	}
	.nav_mb .list2-box > a{
		font-size: 0.26rem;
		/* font-family: 'Raleway-Medium'; */
		line-height: 0.3rem;
		color: #5B6670;
		margin-bottom: 0.35rem;
		display: block;
	}
}