@charset "utf-8";
*{margin: 0;padding: 0;}
body{font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif; color:#333;}
ul,
ol {
  list-style: none;
}
*{padding:0;margin:0}
.maxwidth {
  max-width: 100%;
}
/*清除浮动*/
.clear {
    clear: both;
}
.fl{ float:left;}
.fr{ float:right;}

:root {
  --headerH: 80px;
}
:root .scroll-wrap {
  padding-top: 80px;
  padding-top: var(--headerH);
}
:root .hidePoint {
  top: 80px;
  top: calc(-1*var(--headerH));
}
@media screen and (max-width: 1024px) {
  :root {
    --headerH: 64px;
  }
}

@-webkit-keyframes slideInDownm {
  0% {
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes slideInDownm {
  0% {
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
.slideInDownm {
  -webkit-animation-name: slideInDownm;
          animation-name: slideInDownm;
  opacity: 1 !important;
}

.pad130{ padding-top:130px;}

.header_bg{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
  -webkit-transition: all 250ms ease-out 0s;
  transition: all 250ms ease-out 0s;
  background-color: #fff;
}

.top{
  padding: 15px 0;
  	background-image: -ms-linear-gradient(left, #1DB9A0 0%, #4d94c4 100%);
	background-image: -moz-linear-gradient(left,  #1DB9A0 0%, #4d94c4 100%);
	background-image: -o-linear-gradient(left,  #1DB9A0 0%, #4d94c4 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0,  #1DB9A0), color-stop(100, #4d94c4));
	background-image: -webkit-linear-gradient(left,  #1DB9A0 0%, #4d94c4 100%);
	background-image: linear-gradient(to right,  #1DB9A0 0%, #4d94c4 100%); overflow:hidden; color:#fff; font-size:14px; position:relative; z-index:4;
}
.top_l{ color:#fff; }
.top_r{ color:#fff; }
.top_r a{ color:#fff; }

.top_r span{ margin-left:15px; margin-right:15px; display:inline-block;color:#fff;}

.container{width:80%; margin:0 auto;}


.index-banner {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 80px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 600px;
}
.index-banner .item {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
}
.index-banner .item.moveItem {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.index-banner .item.moveItem:after {
  display: none;
}
.index-banner .item .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -webkit-transition: -webkit-transform 300ms ease-out 0s;
  transition: -webkit-transform 300ms ease-out 0s;
  transition: transform 300ms ease-out 0s;
  transition: transform 300ms ease-out 0s, -webkit-transform 300ms ease-out 0s;
}
.index-banner .item .contain {
  -webkit-transition: all 500ms ease-out 0ms;
  transition: all 500ms ease-out 0ms;
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #fff;
  width: 28.8rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: scale(0.8) translateY(-15%);
          transform: scale(0.8) translateY(-15%);
}
.index-banner .item .contain .words {
  width: 100%;
  display: block;
  pointer-events: none;
}
.index-banner .item.leave .contain {
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: all 800ms ease-out 0ms;
  transition: all 800ms ease-out 0ms;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8) translateY(15%);
          transform: scale(0.8) translateY(15%);
}
.index-banner .item.come .contain {
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
}
.index-banner .item.on .contain {
  -webkit-transition: all 800ms ease-out 0ms;
  transition: all 800ms ease-out 0ms;
  opacity: 1;
  visibility: visible;
  -webkit-transform: none !important;
          transform: none !important;
}
.index-banner .mouse {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  margin-left: -14px;
  width: 28px;
  height: 40px;
  border-radius: 14px;
  border: #004098 solid 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 8;
}
.index-banner .mouse:after {
  content: " ";
  position: absolute;
  top: 8px;
  left: 50%;
  margin-left: -2px;
  width: 4px;
  height: 10px;
  background-color: #004098;
  -webkit-animation: slideInDownm 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) -0.2s infinite backwards alternate;
          animation: slideInDownm 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) -0.2s infinite backwards alternate;
}
@media screen and (max-width: 1024px) {
  .index-banner {
    min-height: 0;
    height: auto;
  }
  .index-banner .shade {
    height: 0;
    padding-bottom: 62.5%;
  }
  .index-banner .item .contain {
    width: calc(100% - 120px);
  }
  .index-banner .item .contain .words {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .index-banner .ctr_banner.prev {
    left: 5px;
  }
  .index-banner .ctr_banner.next {
    right: 5px;
  }
}

.ctr.ctr_banner {
  display: none;
  z-index: 8;
  position: absolute;
  top: 50%;
  margin-top: -26px;
  width: 52px;
  height: 52px;
  line-height: 52px;
  -webkit-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
  color: #004098;
  color: #ffffff;
}
.ctr.ctr_banner s {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.ctr.ctr_banner s {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  font-family: SimSun, '宋体' !important;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  pointer-events: none;
}
.ctr.ctr_banner:hover {
  color: #004098;
}
.ysqUEO .ctr.ctr_banner s {
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
  padding: inherit;
}
.ysqUEO .ctr.ctr_banner s:before,
.ysqUEO .ctr.ctr_banner s:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  margin-top: -1px;
  background-color: #ffffff;
  -webkit-transition: all 250ms ease-out 0s;
  transition: all 250ms ease-out 0s;
}
@media screen and (min-width: 1025px) {
  .ysqUEO .ctr.ctr_banner {
    -webkit-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
  }
  .ysqUEO .ctr.ctr_banner s:before,
  .ysqUEO .ctr.ctr_banner s:after {
    -webkit-transition: all 400ms ease-out 0s;
    transition: all 400ms ease-out 0s;
  }
  .ysqUEO .ctr.ctr_banner:hover s:before,
  .ysqUEO .ctr.ctr_banner:hover s:after {
    background-color: #004098;
  }
}
@media screen and (max-width: 1024px) {
  .ctr.ctr_banner:active s:before,
  .ctr.ctr_banner:active s:after {
    background-color: #004098;
  }
}
.ysqUEO .ctr.ctr_banner.prev s:before,
.ysqUEO .ctr.ctr_banner.prev s:after {
  margin-left: -6px;
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
}
.ysqUEO .ctr.ctr_banner.prev s:before {
  -webkit-transform: rotate(-40deg) translateX(-1px);
          transform: rotate(-40deg) translateX(-1px);
}
.ysqUEO .ctr.ctr_banner.prev s:after {
  -webkit-transform: rotate(40deg) translateX(-1px);
          transform: rotate(40deg) translateX(-1px);
}
.ysqUEO .ctr.ctr_banner.next s:before,
.ysqUEO .ctr.ctr_banner.next s:after {
  margin-left: -10px;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}
.ysqUEO .ctr.ctr_banner.next s:before {
  -webkit-transform: rotate(-40deg) translateX(1px);
          transform: rotate(-40deg) translateX(1px);
}
.ysqUEO .ctr.ctr_banner.next s:after {
  -webkit-transform: rotate(40deg) translateX(1px);
          transform: rotate(40deg) translateX(1px);
}
@media screen and (min-width: 1025px) {
  .ysqUEO .ctr.ctr_banner.prev:hover s:before {
    -webkit-transform: rotate(-50deg) translateX(-1px);
            transform: rotate(-50deg) translateX(-1px);
  }
  .ysqUEO .ctr.ctr_banner.prev:hover s:after {
    -webkit-transform: rotate(50deg) translateX(-1px);
            transform: rotate(50deg) translateX(-1px);
  }
  .ysqUEO .ctr.ctr_banner.next:hover s:before {
    -webkit-transform: rotate(-50deg) translateX(1px);
            transform: rotate(-50deg) translateX(1px);
  }
  .ysqUEO .ctr.ctr_banner.next:hover s:after {
    -webkit-transform: rotate(50deg) translateX(1px);
            transform: rotate(50deg) translateX(1px);
  }
}
@media screen and (max-width: 1024px) {
  .ctr.ctr_banner.prev:active s:before,
  .ctr.ctr_banner.prev:active s:after {
    -webkit-transition: 0ms;
    transition: 0ms;
  }
  .ctr.ctr_banner.prev:active s:before {
    -webkit-transform: rotate(-50deg) translateX(-1px);
            transform: rotate(-50deg) translateX(-1px);
  }
  .ctr.ctr_banner.prev:active s:after {
    -webkit-transform: rotate(50deg) translateX(-1px);
            transform: rotate(50deg) translateX(-1px);
  }
  .ctr.ctr_banner.next:active s:before,
  .ctr.ctr_banner.next:active s:after {
    -webkit-transition: 0ms;
    transition: 0ms;
  }
  .ctr.ctr_banner.next:active s:before {
    -webkit-transform: rotate(-50deg) translateX(1px);
            transform: rotate(-50deg) translateX(1px);
  }
  .ctr.ctr_banner.next:active s:after {
    -webkit-transform: rotate(50deg) translateX(1px);
            transform: rotate(50deg) translateX(1px);
  }
}
.ctr.ctr_banner.prev {
  left: 1rem;
}
.ctr.ctr_banner.next {
  right: 1rem;
}
@media screen and (min-width: 1025px) {
  .ctr.ctr_banner:hover s {
    background-color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .ctr.ctr_banner s {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .ctr.ctr_banner:active s {
    background-color: #fff;
    -webkit-transition: 0ms;
    transition: 0ms;
  }
}

/*.banner .swiper-slide>img{
	width: 100%;
	height: 100%;
}
.bannertxt{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 40%;
	margin: auto;
	display: inline-block;
	width: 1350px;
	text-align: center;

}
.bannertxt div{
	transform: translateY(200px);
	opacity: 0;
}
.bannertxt h2{
	font-size: 54px;
	color: #fff;
	margin-bottom: 45px;
	transform: translateY(-200px);
	opacity: 0;
}
.swiper-slide-active .bannertxt h2{
	opacity: 1;
	transform: translateY(0);
} 
.swiper-slide-active .bannertxt div{
	transform: translateY(0);
	opacity: 1;
}
@keyframes mymove
{
	from {transform: translateY(15px);}

	to {transform: translateY(-15px);}
}
.swiper-slide .bannertxt>span{
	display: block;
	border:1px solid #fff;
	border-radius: 50%;
	width: 67px;
	height: 67px;
	line-height: 67px;
	margin: 0 auto;

	animation:mymove 1s infinite ;
	animation-direction:alternate;
	position:absolute; bottom:100px; left:47%;
}
.swiper-slide .bannertxt  img{
	
}
.bannertxt div{
	display: inline-block;
	position: relative;
}
.bannertxt p{
	font-size: 18px;
	color: #fff;
}
.bannertxt p:before{
	content: '';
	display: block;
	width:480px;
	height: 2px;
	
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,#ffffff 100%);
	position: absolute;
	left: -560px;
	top: 50%;
}
.bannertxt p:after{
	content: '';
	display: block;
	width:480px;
	height: 2px;
	background: linear-gradient(to left, rgba(255,255,255,0) 0%,#ffffff 100%);
	position: absolute;
	right: -560px;
	top: 50%;
}
.banner .swiper-pagination{
	bottom: 35px !important;
}
.swiper-wrapper{
	text-align: center;
}
.banner .swiper-pagination-bullet{
	opacity: 1 !important;
	width: 45px;
	height: 3px;
	background: rgba(255,255,255,.4);
	border-radius:initial;
}
.banner .swiper-pagination-bullet-active{
	background: #fff;
}
*/

.index_about{ background: url(../images/about_bg.png) #f3f3f3 no-repeat right top; overflow:hidden; padding-bottom:70px;}
.index_product{ background:#f3f3f3; overflow:hidden; padding-bottom:20px;}
.ab_tit h1{ font-size:30px; color:#1ebeb6; text-transform:uppercase;line-height:46px;}
.tit01{ font-size:36px;}
.tit02{ font-size:28px; color:#ddd;}
.tit_pro h1{ font-size:50px; text-align:center;}
.tit_pro span{ color:#BA1C15;}
.ab_tit{ line-height:46px;}
.wz_txt{ line-height:36px; font-size:16px;margin-top:20px;}
.about_left{ width:60%; padding-top:30px;}
.about_tubiao{ width:450px; margin-top:20px;}
.about_tubiao ul li{ background-image: -ms-linear-gradient(top, #1DB9A0 0%, #4d94c4 100%);
	background-image: -moz-linear-gradient(top,  #1DB9A0 0%, #4d94c4 100%);
	background-image: -o-linear-gradient(top,  #1DB9A0 0%, #4d94c4 100%);
	background-image: -webkit-gradient(linear, top top, right top, color-stop(0,  #1DB9A0), color-stop(100, #4d94c4));
	background-image: -webkit-linear-gradient(top,  #1DB9A0 0%, #4d94c4 100%);
	background-image: linear-gradient(to bottom,  #1DB9A0 0%, #4d94c4 100%);  width:200px; height:120px; float:left; margin-right:20px; margin-bottom:20px; text-align:center; text-transform:uppercase; }
.about_tubiao ul li img{ padding-top:15px;}
.about_tubiao ul li p{ font-size:18px; color:#FFFFFF; margin-top:10px;}

.index_tit{ text-align:center; padding:30px 0 30px 0;}
.index_tit h4 {color:#1ebeb6; font-weight: 600;text-transform: uppercase; font-size:28px;}
.index_tit h2 {
  display: inline-block;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 0;
  position: relative;
  text-transform: capitalize;
  letter-spacing: 1px; font-size:36px;
}
.index_tit h2::before {
  	background-image: -ms-linear-gradient(left, #1DB9A0 0%, #4d94c4 100%);
	background-image: -moz-linear-gradient(left,  #1DB9A0 0%, #4d94c4 100%);
	background-image: -o-linear-gradient(left,  #1DB9A0 0%, #4d94c4 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0,  #1DB9A0), color-stop(100, #4d94c4));
	background-image: -webkit-linear-gradient(left,  #1DB9A0 0%, #4d94c4 100%);
	background-image: linear-gradient(to right,  #1DB9A0 0%, #4d94c4 100%);
  bottom: 0;
  content: "";
  height: 3px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 40px;
}

.index_tit h2::after {
  	background-image: -ms-linear-gradient(left, #1DB9A0 0%, #4d94c4 100%);
	background-image: -moz-linear-gradient(left,  #1DB9A0 0%, #4d94c4 100%);
	background-image: -o-linear-gradient(left,  #1DB9A0 0%, #4d94c4 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0,  #1DB9A0), color-stop(100, #4d94c4));
	background-image: -webkit-linear-gradient(left,  #1DB9A0 0%, #4d94c4 100%);
	background-image: linear-gradient(to right,  #1DB9A0 0%, #4d94c4 100%);
  bottom: 0;
  content: "";
  height: 3px;
  left: 50%;
  margin-left: 20px;
  position: absolute;
  width: 5px;
}
.index_tit p{ font-size:16px; margin-top:10px;}
.btn-gradient::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(29,185,160,1) 0%, rgba(77,148,196,1) 100%);
  transition: all 0.35s ease-in-out;
  z-index: -1;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.5), inset 0 0 1px 1px #1ebeb6;
}

.pro_jj{ padding:10px 20px 20px 20px;}
.pro_tit{ font-size:20px;margin-bottom:10px;}
.pro_txt{ font-size:16px; margin-bottom:10px; color:#696969;}

/*.bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.bottom a {
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
	background: linear-gradient(90deg, rgba(30,190,182,1) 0%, rgba(0,130,124,1) 100%);
  color: #ffffff;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.bottom a i{ color:#fff;}
.bottom a::after {
  position: absolute;
  left: -10%;
  top: -10%;
  content: "";
  height: 120%;
  width: 120%;
  background: #1ebeb6;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.5;
}*/

.index_news{ background:#f3f3f3; padding-top:30px; padding-bottom:60px; margin-top:60px;}
.slick-slide01{ background:#fff; width:23%; margin-left:1%; margin-right:1%; float:left;}
.featured-title h5 a strong{ color:#333; font-size:18px;}
.featured-desc p{ font-size:16px;}
.post-link a:hover i{ color:#fff;}
.featured-imagebox-post.style1:hover .fa-angle-right{color:#fff;}
footer .f-items.default-padding {
  padding-top:20px;
}

footer .item {

}

footer .f-item p {
 
}

footer .f-item.branches {
  background: rgba(255, 255, 255, 0.13);
  padding: 3% 2%;
  border-bottom: 2px solid #80f5ef;
  width:26%;
}

footer .widget-title {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 18px;
}

footer img {
  margin-bottom: 30px;
}

footer .branches li strong {
  display: block; font-size:18px;
  margin-bottom: 5px;
  color: #ffffff;
}

footer .branches li {
  margin-bottom: 20px;
  color: #96aac1;
}

footer .branches li:last-child {
  margin: 0;
}

footer .f-item.link li {
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}

footer .f-item.link li:last-child {
  margin-bottom: 0;
}

footer .f-item a {

  color:#b8d8fb;font-size:16px;
}

footer .f-item a:hover {
  color: #ffffff;
}

footer .f-item.link li::after {
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  height: 6px;
  width: 6px;
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
  border-radius: 50%;
}

footer .address h5 {
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight:normal;
  font-size: 18px;
}

footer .address span {
  color: #fff; font-size:16px;
}

footer .address span i {
  margin-right: 5px;
  font-size: 20px;
  position: relative;
  top: 2px;
  color: #ffffff;
}

footer .address li {
  display: flex;
  margin-top: 30px;
}

footer .address li i {
  font-size: 30px;
  min-width: 50px;
  display: inline-block;
}


/* Footer Bottom */
footer .footer-bottom li {
  display: inline-block;
  margin-left: 20px;
}

footer .footer-bottom {
  background: rgba(255, 255, 255, 0.13);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0; overflow:hidden; 
}
.foot_l p{color:#fff; font-size:14px;}
.foot_r p{color:#fff; font-size:14px;}

footer .footer-bottom p {
  margin: 0;
}
footer .footer-bottom p a{
  color:#fff; 
}
.footer-bottom i {
  margin-right: 5px;
}

.footer-bottom a {
  font-weight: 600;
}

.about{ width:30%; float:left;}
.link{width:20%; float:left;}
.branches{ float:left;}
.icon i{ color:#fff;}
.info h5{color:#fff;}
.widget-title{ color:#fff;}
.branches ul li p{ color:#fff; font-size:16px; line-height:36px;}
.branches ul li p a{color:#fff; font-size:16px;}
.link ul li a{color:#fff; line-height:30px;}
.bg-dark{padding-top:60px;overflow:hidden;}
.f-items .row{ margin-bottom:60px; overflow:hidden;}
.product_nav{ text-align:center;}
.product_nav ul{ margin-bottom:30px;}
.product_nav ul li{text-align:center; display: inline-block; margin-bottom:25px;}
.product_nav ul li a{ background:#1ebeb6; width:160px; text-align:center; color:#fff; display: inline-block; font-size:16px;line-height:55px; border-radius:10px; margin-left:7px; margin-right:7px;transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;}
.product_nav ul li a:hover{    transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -o-transform: translateY(-5px);background-image: linear-gradient(to right,  #1DB9A0 0%, #4d94c4 100%);}
.about p{ font-size:30px; font-weight:bold; color:#fff;}

.contact_left {
    display: inline-block;
    width:63%;
    margin-top: 3%;
}

.contact_left>img {
    width: 100%
}

.contact_left>img:nth-child(1) {
    display: none
}

.contact_left {
    position: relative
}

.mapli>li {
    border-radius: 50%;
    position: absolute;
    display: none
}

.mapli>li:nth-child(1) {
    width: 288px;
    height:288px;
        background-image: linear-gradient(to right,  #1DB9A0 0%, #4d94c4 100%);
    left: 10%;
    top: 20%;
    display: block
}

.mapli>li:nth-child(2) {
    width: 314px;
    height:314px;
    background: rgba(79, 66, 56, .4);
    right: 15%;
    top:15%;
    display: block
}

.mapli>li:nth-child(3) {
    width: 244px;
    height: 244px;

	background: rgba(79, 66, 56, .66);
    right: 40%;
    top: 42%;
    display: block
}

.mapli>li:nth-child(3) p {
    font-size: 16px;
    line-height: 22px; text-align:center;
}

.mapli>li>div {
    position: absolute;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    top: 50%;
    width: 65%
}

.mapli>li>div>span {
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    margin-bottom: 10px;
    text-align: center;
    font-size: 36px;

    padding-bottom: 20px;
    font-weight: bold;
    text-align: center;
    color: #fff
}



.mapli>li>div>span h6 {
    display: inline-block;
    vertical-align: middle;
	font-size:30px; color:#fff;
}

.mapli>li:nth-child(2) span h6{ font-size:38px;}


.mapli>li>div>span span {
    display: inline-block;

}

.mapli>li>div>p {
    color: #ffffff;
    font-size: 18px; text-align:center;
}

.contact_right {
    display: inline-block;
    vertical-align: middle;
    width:37%;
    box-sizing: border-box;
    padding-left: 20px
}

.contact_right h6 {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    line-height: 66px;
    background: #282828;
    color: #fff;
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px
}

.contact_right h3 {
    color: #282828;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}
.contact_right h3 a{color: #282828;display: block;padding: 0;border: 0;background: #fff;font-size: 18px;margin-bottom: 10px;line-height: 24px;margin-top: 0;}
.contact_right p {
    line-height: 26px;
    color: #777777;
    font-size: 16px;
    text-align: center;
}

.contact_right a {
    display: inline-block;
    padding: 0 45px;
    margin: 0 auto;
    border-radius: 40px;
    line-height: 40px;
    color: #fff;
    background-image: linear-gradient(to right, #1DB9A0 0%, #4d94c4 100%);
}

.contact_right a:hover {
    
}
.pinpai_logo ul{ margin-top:20px;}
.pinpai_logo ul li{ float:left; width:42%; margin-left:3%; margin-right:3%; margin-bottom:5%;display: flex;border: 1px solid #ddd;}
.pinpai_logo ul li img{ height:70px; margin: 0 auto;text-align: center;max-width: 96%;padding: 2% 0;}
.hezuo{ padding-top:40px; padding-bottom:60px; overflow:hidden;}
.index_products{ padding-top:30px;}


@media screen and (max-width:1440px){
    .pinpai_logo ul li img{ height:60px;}
    .container{ width:90%;}
    .mapli>li:nth-child(3) {
    width: 183px;
    height: 183px;

}

.mapli>li:nth-child(1) {
    width: 258px;
    height:258px;
        background-image: linear-gradient(to right,  #1DB9A0 0%, #4d94c4 100%);
    left: 10%;
    top: 20%;
    display: block
}

.mapli>li:nth-child(2) {
    width: 264px;
    height:264px;
    background: rgba(79, 66, 56, .4);
    right: 15%;
    top:15%;
    display: block
}
    
}

video {

  background-color: #000;

  display: block;
  
  width: 100%;

}



.sybg {

  background-color: #f5f5f5;

}

.syv {

  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -35px;
  margin-left: -35px;

}

.syv .syvideo {
    
  position: relative;

  overflow: hidden;

}

.syv .syvideo-mob{

	display: none;

}

.syv .syvideo img {


}

.syv .syvideo b {

  display: block;

  width: 81px;

  height: 81px;

  background: url(../images/syvi.png) no-repeat center;

  background-size: 81px 81px;

  position: absolute;

  top: 50%;

  left: 50%;

  margin-top: -40px;

  margin-left: -40px;

}


.index-banner .item.moveItem:nth-child(2) .syv{ display:none;}

.ry_bg,.wechat_bg{position: fixed;width: 100%;height: 100%;left: 0px;top: 0px;background:rgba(0,0,0,.8);opacity: 0;display: none;z-index: 100005;}
.ry_imgpic_box,.wechat_box{text-align: center;filter: alpha(opacity=0);opacity: 0;position: fixed;left: 0px;top: 15%!important;z-index: 100006;display: none;width:100%;}
.ry_img{display: inline-block;margin: 0px auto;padding: 30px;max-width: 70%;max-height: 90%;position: relative;*display: inline;*zoom: 1; }
.ry_img img{width:100%;}
.wechat_box .ry_img img{max-width: 100%;}
.ry_gb{width: 50px;height: 50px;background: url('../images/ry_close.png') no-repeat center center;cursor: pointer;right: 0px;top: 0px;position: absolute; }