@font-face {
  font-family: 'Barlow-Regular';
  src: url(../fonts/Barlow-Regular.ttf) format('truetype'), url(../fonts/Barlow-Regular.eot) format('eot'), url(../fonts/Barlow-Regular.woff) format('woff'), url(../fonts/Barlow-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Barlow-Bold';
  src: url(../fonts/Barlow-Bold.ttf) format('truetype'), url(../fonts/Barlow-Bold.eot) format('eot'), url(../fonts/Barlow-Bold.woff) format('woff'), url(../fonts/Barlow-Bold.woff2) format('woff2');
}
@media screen and (max-width: 1000px){
  .dgdgr {
    display: none !important;
  }
}
input::-webkit-input-placeholder {
  color: #8e8e8e;
}
textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
input::-moz-placeholder {
  color: #8e8e8e;
}
input:-moz-placeholder {
  color: #8e8e8e;
}
input:-ms-input-placeholder {
  color: #8e8e8e;
}
body {
  margin: 0 auto;
  padding: 0;
  --color: #e62129;
  --yellow: #fccf1b;
  font-family: 'Microsoft YaHei', "Arial";
  --font: 'Barlow-Bold';
  background-color: #fff;
  max-width: 1920px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1550px;
  margin: 0 auto;
  position: relative;
}

.qrcode {
  position: fixed;
  right: 2%;
  bottom: 24%;
  width: 60px;
  height: 60px;
  background-color: var(--color);
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.qrcode:hover {
  background-color: #000;
}
.qrcode-box {
  position: absolute;
  right: 120%;
  bottom: 0;
  background-color: #fff;
  width: 150px;
  padding: 20px;
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  -webkit-transform: rotateY(90deg);
  -moz-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.qrcode:hover .qrcode-box {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  transform: rotateY(0deg);
  z-index: 10;
  opacity: 1;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  /*background-color: rgba(233, 233, 233, 0.9);*/
  background-color: rgba(51,51,51,.8);
}
#header .nav {
  position: relative;
  height: 140px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-left: 140px;
  margin-right: 35px;
}
#header .nav .ui.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 55px;
  font-size: 18px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-family: var(--font);
  border-bottom: 1px solid transparent;
  color:#fff;
      text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > a::before {
  width: 26px;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > a::after {
  width: 13px;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: white;
  position: absolute;
  right: -50px;
  top: 5px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: white;
  position: absolute;
  right: -37px;
  bottom: 6px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 200%;
  left: -10px;
  width: auto;
  min-width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
  white-space: nowrap;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#header .nav .ui.menu .right .h-search {
  margin-left: 50px;
  margin-right: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#header .nav .ui.menu .right .h-inquiry {
  cursor: pointer;
}
#header .nav .ui.menu .right .h-inquiry span:first-child {
  display: block;
  width: 26px;
  height: 2px;
  background-color: white;
  margin-bottom: 2px;
}
#header .nav .ui.menu .right .h-inquiry span:last-child {
  display: block;
  width: 13px;
  height: 2px;
  background-color: white;
}


#header .nav .ui.menu .menu-box ul.menu > li:nth-child(2) > ul.sub-menu{
  display: flex;
  background-color: transparent;
  border-bottom: none;
}
#header .nav .ui.menu .menu-box ul.menu > li:nth-child(2) > ul.sub-menu li{
  margin-right: 20px;
  background-color: white;
  min-width: 200px;
  width: auto;
}

#header .nav .ui.menu .menu-box ul.menu > li:nth-child(2) > ul.sub-menu > li:last-child{
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li:nth-child(2) > ul.sub-menu > li:hover{
  background-color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li:nth-child(2) > ul.sub-menu > li ul.sub-menu{
  left: 0;
  top:100%;
  background-color: transparent;
  border-bottom: none;
  box-shadow:none;
}
#header .nav .ui.menu .menu-box ul.menu > li:nth-child(2) > ul.sub-menu > li:hover ul.sub-menu li:hover{
  background-color: var(--color);
}




















.language-box {
  margin-left: 80px;
}
.language-box .zhuyu span {
  font-size: 18px;
  color:#fff;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
@-webkit-keyframes play_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-moz-keyframes play_scale {
  0% {
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes play_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
#banner {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .box{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#banner .banner-content ul li .box p{
  color:white;
  font-size: 24px;
  margin-top: 25px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Barlow-Regular';
}
#banner .banner-content ul li .play {
  position: relative;
  width: 160px;
  height: 160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#banner .banner-content ul li .play::before {
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-animation: play_scale 1s infinite linear;
  -moz-animation: play_scale 1s infinite linear;
  animation: play_scale 1s infinite linear;
}
#banner .banner-content ul li .play::after {
  content: "";
  width: 140px;
  height: 140px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  -webkit-animation: play_scale 1s infinite linear;
  -moz-animation: play_scale 1s infinite linear;
  animation: play_scale 1s infinite linear;
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#banner .banner-bot {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
#banner .banner-bot a {
  margin-right: 25px;
}
#banner .banner-bot a i {
  color: white;
  font-size: 20px;
}
.more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.more:hover span {
  color: var(--color);
}
.more:hover i {
  background-color: var(--color);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.more span {
  font-size: 18px;
  margin-right: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.more i {
  font-size: 28px;
  width: 70px;
  height: 70px;
  background-color: #000;
  border-radius: 50%;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.more.black {
  background-color: black;
}
.more.black span {
  color: white;
}
.more.black:hover {
  background-color: transparent;
  border-color: white;
}
.h-title {
  position: relative;
}
.h-title::before {
  content: "";
  display: block;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-color: var(--color);
  position: absolute;
  left: 0;
  top: -30px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.h-title p {
  font-size: 20px;
  font-family: 'Barlow-Regular';
  position: relative;
  text-transform: uppercase;
}
.h-title h3 {
  font-size: 40px;
  color: #181818;
  line-height: 1.4;
  margin-top: 15px;
  position: relative;
  font-family: 'Barlow-Bold';
}
.h-title h3 span {
  color: var(--color);
}
@-webkit-keyframes scale_play {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-moz-keyframes scale_play {
  0% {
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes scale_play {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
#index-body .product {
  padding: 130px 0 75px;
  position: relative;
  background: url('../images/product-bg.png') no-repeat;
  background-size: cover;
}
#index-body .product .product-box ul {
  margin: 40px -18px 0;
}
#index-body .product .product-box ul .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 120px;
}
#index-body .product .product-box ul .slick-dots .slick-active {
  width: 45px;
  border-radius: 35px;
  background-color: var(--color);
}
#index-body .product .product-box ul .slick-dots li {
  padding: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 7px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #000;
}
#index-body .product .product-box ul .slick-dots li button {
  display: none;
}
#index-body .product .product-box ul li {
  padding: 0 18px;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
#index-body .product .product-box ul li:hover .btn {
  opacity: 1;
}
#index-body .product .product-box ul li .box {
  width: 100%;
  position: relative;
}
#index-body .product .product-box ul li .box .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  height: 360px;
}
#index-body .product .product-box ul li .box h4 {
  margin: 25px 0 10px;
  line-height: 1.8;
}
#index-body .about {
  padding: 160px 0 140px;
}
#index-body .about .about-t {
  position: relative;
}
#index-body .about .about-t .right {
  max-width: 50%;
}
#index-body .advantage {
  padding: 130px 0 105px;
  background: url('../images/adv-bg.jpg') no-repeat;
  background-size: cover;
}
#index-body .advantage .container .left {
  padding-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .advantage .container .left .h-title h3,
#index-body .advantage .container .left .h-title p {
  color: white;
}
#index-body .advantage .container .left .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .advantage .container .left .btn span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
#index-body .advantage .container .left .btn span i {
  font-size: 24px;
  color: black;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .advantage .container .left .btn span:hover {
  background-color: var(--color);
}
#index-body .advantage .container .left .btn span:hover i {
  color: white;
}
#index-body .advantage .container .right {
  width: 965px;
}
#index-body .advantage .container .right ul {
  margin: 0 -15px;
}
#index-body .advantage .container .right ul li {
  padding: 35px 15px 0;
}
#index-body .advantage .container .right ul li .box {
  height: 340px;
  background-color: white;
  position: relative;
  padding: 100px 35px 40px 55px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .advantage .container .right ul li .box .img {
  position: absolute;
  left: 40px;
  top: -35px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-color: var(--color);
}
#index-body .advantage .container .right ul li .box h4 {
  font-family: 'Barlow-Regular';
}
#index-body .news {
  padding: 130px 0 110px;
  background: url('../images/news-bg.jpg') no-repeat;
  background-size: cover;
  position: relative;
  z-index: 5;
}
#index-body .news .news-content ul {
  margin: 65px -50px 0;
}
#index-body .news .news-content ul .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 120px;
}
#index-body .news .news-content ul .slick-dots .slick-active {
  width: 45px;
  border-radius: 35px;
  background-color: var(--color);
}
#index-body .news .news-content ul .slick-dots li {
  padding: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 7px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #000;
}
#index-body .news .news-content ul .slick-dots li button {
  display: none;
}
#index-body .news .news-content ul li {
  padding: 0 50px;
}
#index-body .news .news-content ul li:hover .box {
  border-color: var(--color);
}
#index-body .news .news-content ul li .box {
  border-top: 3px solid #000;
  padding-top: 25px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .news .news-content ul li .box h4 {
  margin: 20px 0;
}
#index-body .news .news-content ul li .box .btn {
  display: block;
  margin-top: 35px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#index-body .news .news-content ul li .box .btn:hover span {
  color: var(--color);
  border-color: var(--color);
}
#index-body .news .news-content ul li .box .btn span {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 16px;
  line-height: 2;
  border-bottom: 1px solid black;
}
#footer {
  position: relative;
  z-index: 20;
  background: url('../images/footer-bg.jpg') no-repeat;
  background-size: cover;
  padding-top: 110px;
}
#footer .footer-t .h-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#footer .footer-t .h-title h3,
#footer .footer-t .h-title p {
  color: white;
}
#footer .footer-t form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 935px;
  margin: 85px auto 150px;
}
#footer .footer-t form input[type='text'] {
  width: 265px;
  background-color: transparent;
  color: white;
  font-size: 18px;
  margin: 0 15px;
  border: none;
  border-bottom: 1px solid white;
  padding-right: 15px;
}
#footer .footer-t form input::-webkit-input-placeholder {
  color: white;
}
#footer .footer-t form input[name="content"] {
  width: 100%;
  height: 90px;
  background-color: white;
  border-radius: 55px;
  padding: 0 235px 0 45px;
  color: #000;
}
#footer .footer-t form input[name="content"]::-webkit-input-placeholder {
  color: black;
}
#footer .footer-t form .content {
  position: relative;
  width: 100%;
  margin-top: 90px;
}
#footer .footer-t form .content input[type="submit"] {
  width: 205px;
  height: 65px;
  background-color: var(--color);
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 55px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t form .content input[type="submit"]:hover {
  background-color: #000;
}
#footer .footer-b {
  color: white;
  position: relative;
  z-index: 5;
}
#footer .footer-b .box {
  height: 90px;
  border-top: 1px solid white;
}
#footer .footer-b .box .left span {
  display: block;
  font-size: 16px;
}
#footer .footer-b .box .left img {
  width: 260px;
  height: auto;
  padding-top: 5px;
  margin-left: 5px;
}
#footer .footer-b .box .share a {
  margin-right: 20px;
  opacity: 0.8;
}
#footer .footer-b .box .share a:last-child {
  margin-right: 0;
}
#footer .footer-b .box .share a:hover i {
  color: var(--color);
}
#footer .footer-b .box .share a i {
  font-size: 24px;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 1800px) {
  .ui.container {
    width: 1600px;
  }
  .language-box {
    margin-left: 30px;
    margin-right: 45px;
  }
  #header .nav {
    margin-left: 35px;
    margin-right: 35px;
  }
}
@media (max-width: 1680px) {
  .ui.container {
    width: 1400px;
  }
  .h-title h3 {
    font-size: 38px;
  }
  #header .nav .ui.menu .right .h-search{
    margin: 0 20px;
  }
  .language-box{
    margin: 0 0 0 20px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 40px;
  }
  #header .nav .logo{
    max-width: 200px;
  }
}
@media (max-width: 1480px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 25px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li > a::before,
  #header .nav .ui.menu .menu-box ul.menu > li > a::after {
    right: -30px;
  }
  #index-body .about .about-t .left .con {
    font-size: 16px;
    padding-right: 60px;
  }
  #index-body .advantage .container .right {
    width: 100%;
    margin-top: 60px;
  }
}
@media (max-width: 1280px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .logo {
    max-width: 160px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 15px;
    font-size: 14px;
  }
  #header .nav .ui.menu .right .h-search {
    margin: 0 10px;
  }
  .language-box .hover-language{
    padding-right: 0;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block !important;
  }
  #banner {
    margin-top: 120px;
  }
  #index-body .about .about-t .left {
    width: 100%;
    margin-bottom: 60px;
  }
  #index-body .about .about-t .left .con {
    padding-right: 0;
  }
  #index-body .about .about-t .right {
    max-width: 100%;
    width: 100%;
  }
  #index-body .about {
    padding: 80px 0;
  }
  #footer .footer-b .information .add {
    width: 100%;
    margin-bottom: 10px;
  }
  #footer .footer-b .information .right {
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #footer .footer-t form input[type='text'] {
    width: 100%;
    margin: 0 0 25px;
  }
  #footer .footer-t form .content {
    margin-top: 30px;
  }
  #footer .footer-t form input[name="content"] {
    margin: 0;
  }
  #footer .footer-t form .content input[type="submit"] {
    right: 15px;
  }
  #footer .footer-b .information .right p:last-child {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  .h-title h3 {
    font-size: 30px;
  }
  #index-body .advantage {
    display: none;
  }
  #footer .footer-t form .content input[type="submit"] {
    position: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    margin-top: 25px;
  }
  #footer .footer-t form .content input[type="submit"]:hover {
    background-color: transparent;
    color: var(--color);
    border: 1px solid var(--color);
  }
  #footer .footer-t form input[name="content"] {
    height: 60px;
    padding: 0 45px;
  }
  #footer .footer-t form .content {
    text-align: center;
  }
  #footer .footer-b .box {
    padding: 10px 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
  }
  #footer .footer-b .box .left {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #banner .banner-content ul li .box{
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    -moz-transform: translate(-50%, -50%) scale(0.6);
    -ms-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
  }
  .h-title h3 {
    font-size: 22px;
    margin-top: 8px;
  }
  .h-title p {
    font-size: 18px;
  }
  #index-body .product {
    padding: 80px 0 75px;
  }
}



















/*---------------------------inner-page--------------------------*/

.inner-banner {
  background: url(../images/inner-banner.jpg) center no-repeat;
  height: 400px;
  background-size: cover;
  padding-top: 200px;
  /*margin-top: 140px;*/
}
.inner-banner h2 {
  font-size: 48px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: -30px;
}
.inner-banner p {
  color: #fff;
  font-size: 16px;
}
.i-history {
  position: relative;
  padding: 0 40px;
}
.i-history:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 12px;
  background: #afafaf;
  z-index: 8;
}
.i-history ul li {
  padding: 0 20px 60px;
  position: relative;
  cursor: pointer;
}
.i-history ul li h3 {
  font-size: 40px;
  font-weight: 700;
  color: #e62129;
}
.i-history ul li p {
  font-size: 16px;
  padding: 5px 0; min-height:40px;
}
.i-history ul {
  position: relative;
  z-index: 10;
}
.i-history ul li:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  left: 20px;
  bottom: 3px;
  background: #afafaf;
  z-index: 8;
  transition: all 0.5s;
}
.i-history ul li:hover h3 {
  color: #e62129;
}
.i-history ul li:hover:after {
  background: #e62129;
}
.breadCrumbs {
  background-color: #fff;
  -webkit-box-shadow: 6px 8px 40px 0 rgba(227, 227, 227, 0.2);
  box-shadow: 6px 8px 40px 0 rgba(227, 227, 227, 0.2);
  padding: 20px 0;
}
.breadCrumbs .bread-crumbs {
  font-size: 16px;
  line-height: 2;
}
.breadCrumbs .bread-crumbs span {
  color: var(--color);
}
.breadCrumbs .side-menu {
  position: relative;
}
.breadCrumbs .side-menu .nowCat {
  background: var(--color) url("../images/sidebar-line.png") no-repeat 93% center;
  cursor: pointer;
  width: 226px;
  height: 40px;
  line-height: 40px;
  display: block;
  padding-left: 15px;
  color: #ffffff;
  font-size: 16px;
  border: 1px solid var(--color);
}
.breadCrumbs .side-menu .cat-list {
  display: none;
  z-index: 111;
  position: absolute;
  width: 100%;
  padding: 2px 0;
  background:var(--color);
  left: 0;
  top: 100%;
}
.breadCrumbs .side-menu .cat-list li {
  
}
.breadCrumbs .side-menu .cat-list li a {
  display: block;
  color: #ffffff;
  padding: 10px 12px 10px 16px;
}
.breadCrumbs .side-menu .cat-list li a:hover {
  color: #fff;
  background:var(--color);
}
.product-page .i-product {
  padding: 0 0 0 60px;
  width: 75% !important;
}
.i-product .pro-list {
  flex-wrap: wrap;
  margin: 0 -15px;
}
.i-product .pro-list img {
	background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
}
   
.i-product .pro-list > .column {
  margin-bottom: 19px;
  padding: 0 15px;
}
.i-product .pro-list > .column img{
	margin:0 auto; display: block; background:url(../images/bg.jpg) no-repeat center; background-size:cover;
}
.i-product .pro-list > .column .img{
	/*border:1px solid #ccc;*/
      background: #fff;
}
.i-product .pro-list > .column .img .img-box{
  /*border: 1px solid #eee;*/
    text-align: center;
    position: relative;
}
.i-product .pro-list > .column .img .img-box:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color);
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    z-index: 100;
}
.i-product .pro-list > .column .img .img-box:after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--color);
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
}
.i-product .pro-list > .column .img .img-box:hover:before,
.i-product .pro-list > .column .img .img-box:hover:after{
  width: 100%;
}
.i-product .pro-list > .column .img .img-box a{
  display: block;
  position: relative;
}
.i-product .pro-list > .column .img .img-box a:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 2px;
    height: 0;
    background: var(--color);
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    z-index: 100;
}
.i-product .pro-list > .column .img .img-box a:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--color);
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
}
.i-product .pro-list > .column .img .img-box:hover a:before,
.i-product .pro-list > .column .img .img-box:hover a:after{
height: 100%;
}
.i-product .pro-list .con-box {
  /*margin-top: -26px;*/
  position: relative;
  z-index: 10;
  padding: 0 5px;
}
.i-product .pro-list .con-box a:hover {
  color: var(--color)!important;
}
.i-product .pro-list .con-box .inner-box {
  /*background: #fff;*/
  padding: 25px 0 0;
  display: flex;
  flex-direction:column;
  align-items: center
}
.i-product .pro-list .con-box .inner-box .more i{
  width: 40px;
  height: 40px;
  font-size: 18px;
}
.i-product .pro-list .con-box .inner-box .more:hover i{
 transform: unset;
}
.lg-page .i-product .pro-list .con-box .inner-box{
	padding:20px 0 0;
}
.i-product .pro-list .con-box .inner-box .tit{
  text-align: center; 
   display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.i-product .pro-list .con-box .inner-box .tit a {
  display: block;
  color: #1b1b1b;
  font-size: 20px;
      font-weight: bold;
}
.i-product .pro-list .con-box .inner-box .abst {
  margin: 12px 0 18px;
  color: #9e9c9f;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}
.inner-page {
  padding: 100px 0;
  
    border: 1px solid #eee;
        background-color: #f8f8f8;
}
.inner-page .init-1 .grid-box .column {
  margin-bottom: 60px;
  padding-right: 0;
}
.inner-page .init-1 .grid-box .column h2 {
  font-size: 32px;
  margin-bottom: 10px;
   color: var(--color);
    font-weight: 700;
}   

.inner-page .init-1 .grid-box .column p {
  margin-bottom: 30px;
  color: #333;
  font-size: 16px;
  line-height: 36px;
  padding-right: 0;
}
/*.inner-page .init-1 .grid-box .column:nth-child(1),
.inner-page .init-1 .grid-box .column:nth-child(4) {
  padding-right: 5%;
}*/
.inner-page .init-1 .grid-box .column:nth-child(3){
    padding-right:10px;
}
.inner-page .init-1 .left a {
  display: block;
  border: 1px solid #eee;
  background-color: #fff;
  padding: 50px;
}
.inner-page .init-1 .left a img {
  width: 100%;
}
.inner-page .init-1 .left ul {
  margin: -5px;
  padding: 0;
}
.inner-page .init-1 .left ul li {
  padding: 5px;
}
.inner-page .init-1 .left ul li i,
.inner-page .init-1 .left ul li span {
  display: none !important;
}
.inner-page .init-1 .left ul li img {
  display: block;
  margin: 0 auto;
}
.inner-page .init-1 .left .four ul .slick-current li a {
	border-color:var(--color);
}
.inner-page .init-1 .left ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-indent: -9999em;
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  background-size: 8px;
  background-position: center center;
  background-repeat: no-repeat;
}
.inner-page .init-1 .left ul .slick-arrow.slick-prev {
  background-image: url("../images/banner-btn-l.png");
  left: 10px;
}
.inner-page .init-1 .left ul .slick-arrow.slick-next {
  background-image: url("../images/banner-btn-r.png");
  right: 10px;
}
.about-page {
  padding-bottom: 0;
}
.about-page .p61-s03 {
  min-height: 400px;
  background-image: url(../images/s05.jpg);
}
.about-page .p61-s03 .mml-row {
  padding: 60px 10px 80px;
}
.about-page .p61-s03 h2 {
  text-align: center;
  margin-bottom: 0;
  font-size: 40px;
}
.about-page .p61-s03 ul {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffffe0;
  -webkit-box-shadow: 42px 42px 120px 0 rgba(151, 171, 191, 0.2);
  box-shadow: 42px 42px 120px 0 rgba(151, 171, 191, 0.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 60px 0;
}
.about-page .p61-s03 li {
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  padding: 0 15px;
}
.about-page .p61-s03 b {
 font-style: normal;
  font-size: 40px;
  color: var(--color);
  font-weight: 700;
}
.about-page .p61-s03 span {
  font-size: 18px;
}
.about-page .p61-s03 p {
  margin-top: 5px;
  margin-bottom: 0;
  color: #9e9e9e;
  font-size: 14px;
}
.about-page .p61-s04 .mml-row {
  padding: 120px 10px;
}
.about-page .p61-s04 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
}
.about-page .p61-s04 li {
  width: 32%;
  max-width: 300px;
  text-align: center;
}
.about-page .p61-s04 .icon-wrap {
  width: 80px;
  height: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--color);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  line-height: 80px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.about-page .p61-s04 i {
  font-size: 18px;
  color: var(--color);
}
.about-page .p61-s04 h4 {
 
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  color: var(--color);
  line-height: 40px;
}
.about-page .p61-s04 p {
  margin-bottom: 0;
  font-size: 16px;
}
.about-page .p61-s04 a.links {
  color: var(--color);
  border-bottom: 1px solid;
}
.about-page .p61-s05 .mml-row {
  padding-bottom: 120px;
}
.about-page .p61-s05 .sec-title {
  text-align: center;
  font-size: 40px;
}
.prople-list {
  margin-top: 40px;
  position: relative;
}
.prople-list ul li{
    padding:0 20px;
}
.prople-list p {
  text-align: center;
  font-size: 16px;
  padding: 10px 0;
  padding-top: 20px;
}
.prople-list .fa-chevron-right {
  left: auto;
  right: -20px;
}
.about-page .p61-s05 .sec-title p {
  max-width: 880px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 16px;
}
.about-page .p61-s05 .sec-title p:last-child {
  margin-bottom: 0;
}
.about-page .p61-s05 ul.team-list {
  margin: 0 -10px;
  margin-top: 60px;
}
.about-page .p61-s05 li {
  margin: 0 10px;
  text-align: center;
}
.about-page .p61-s05 span {
  font-weight: 300;
  font-style: normal;
  display: block;
  padding-top: 25px;
}
.about-page .p61-s05 button {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-image: none;
  padding: 0;
  width: 50px;
  height: 50px;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 0;
  border-radius: 0;
  top: 36%;
  margin: 0;
}
.about-page .p61-s05 button:hover {
  background-color: var(--color);
}
.about-page .p61-s05 button::after {
  display: none;
}
.about-page .p61-s05 button.slick-next {
  right: 2px;
}
.about-page .p61-s05 button.slick-prev {
  left: 2px;
}
.about-page .p61-s05 .slick-dots {
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}
.about-page .p61-s05 .slick-dots li {
  width: 12px;
  height: 12px;
  background-color: #1c1e25;
  opacity: .2;
  display: inline-block;
  margin: 0 5px;
}
.about-page .p61-s05 .slick-dots li.slick-active {
  width: 48px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  opacity: 1;
  background-color: var(--color);
}
@media (max-width: 768px) {
  .about-page .p61-s01 section {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about-page .p61-s01 .text-wrap {
    width: 100%;
    max-width: 580px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .about-page .p61-s01 .img-wrap {
    width: 100%;
    margin-top: 40px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .about-page .p61-s03 ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .p61-s03 li {
    width: 50%;
    padding: 20px 15px;
  }
  .about-page .p61-s05 button {
    top: 31%;
  }
}
@media (max-width: 680px) {
  .about-page .p61-s04 .mml-row {
    padding: 120px 10px 80px;
  }
  .about-page .p61-s04 ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about-page .p61-s04 li {
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
  }
}
@media (max-width: 540px) {
  .about-page .p61-s01 .mml-row {
    padding: 0 20px;
  }
  .about-page .p61-s01 section {
    padding-top: 60px;
  }
  .about-page .p61-s02 .mml-row {
    padding: 60px 10px;
  }
  .about-page .p61-s02 .bd {
    padding-top: 30px;
  }
  .about-page .p61-s02 .bd h5 {
    font-size: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
  }
  .about-page .p61-s02 .slick-arrow {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
  .about-page .p61-s02 .dots li {
    margin: 0 5px;
  }
  .about-page .p61-s02 .dots li.slick-active {
    width: 40px;
  }
  .about-page .p61-s03 ul {
    padding: 30px 0;
  }
  .about-page .p61-s03 b {
    font-size: 26px;
  }
  .about-page .p61-s04 .mml-row {
    padding: 60px 20px 20px;
  }
  .about-page .p61-s05 .mml-row {
    padding-bottom: 60px;
  }
  .about-page .p61-s05 button {
    top: 33%;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 480px) {
  .about-page .p61-s05 button {
    top: 30%;
  }
}
@media (max-width: 1200px) {
  .about-page .p61-s02 .slick-arrow.s02-prev,
  .about-page .p61-s02 .slick-arrow.s02-next {
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
}
@media (max-width: 1000px) {
  .inner-banner{
    margin-top: 120px;
  }
}
.cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 580px;
  background: url(../images/cta.jpg) no-repeat;
  background-position: top center;
}
.cta .mml-row{
  width:20%;
  margin-left: 20%;
}
.cta h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 40px;
      font-weight: 700;
}
.cta p{
  color: #fff;
  line-height: 30px;
  padding-bottom: 20px;
  font-size: 16px;
}
.cta .btn-link a {
  display: block;
  width: 182px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background: var(--color);
  font-size: 14px;
  color: #fff;
  transition: all 0.5s;
 
  font-weight: 500;
  font-style: normal;
}
.cta .btn-link a:hover {
  background: #000;
}
.m-page {
  text-align: center;
  line-height: 22px;
  font-size: 0;
  letter-spacing: -0.307em;
  word-wrap: normal;
  white-space: nowrap;
  color: #138bdf;
  margin-top: 38px;
}
.m-page a,
.m-page span {
  display: inline-block;
  vertical-align: top;
  width: 45px;
  height: 45px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  margin: 0 5px;
  /*border: 1px solid #ddd;*/
  font-size: 16px;
  letter-spacing: normal;
  background: #fff;
  -webkit-transition: background-color 0.1s;
  -moz-transition: background-color 0.1s;
  -ms-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
.m-page a {
  text-decoration: none;
  color: #000;
}
.m-page a:first-child,
.m-page a:last-child {
  background-image: url(../images/m-page-arr-r.png);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #cdcdcd;
  box-shadow: none;
}
.m-page a:first-child {
  background-image: url(../images/m-page-arr-l.png);
}
.m-page a:hover {
  color: #fff;
  background-color: var(--color);
}
.m-page a:active {
  background: var(--color);
}
.m-page span.current,
.m-page span.current:hover,
.m-page span.current:active {
  cursor: default;
  color: #fff;
  background: var(--color);
}


.inner-page.product-page .sidebar {
  width: 25%;
  position: sticky;
  top: 180px;
  background-color: white;
  padding: 1.42857143em;
}
.inner-page .sidebar .widget-title {
    position: relative;
    color: var(--color);
    font-size: 24px;
    margin-bottom: 0;
    line-height: 1em;
    font-weight: 700;
}
.inner-page .sidebar ul.darklinks {
  position: relative;
  overflow: hidden;
}
.inner-page .sidebar ul.darklinks li{
  position: relative;
}
.inner-page .sidebar ul.darklinks > li{
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
}
.inner-page .sidebar ul.darklinks li a {
  color: #323232;
  display: block;
  font-size: 16px;
  position: relative;
  transition: all 0.5s;
}
.inner-page .sidebar ul.darklinks > li > a {
  padding: 20px 20px 0 0;
  width: fit-content;
  transition: padding 0.5s;
}
.inner-page .sidebar ul.darklinks > li.active > a {
  padding: 20px 20px 20px 0;
}
.inner-page .sidebar ul.darklinks li i {
  position: absolute;
  right: 5px;
  top: 20px;
  font-size: 20px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 10;
}
.inner-page .sidebar ul.darklinks li a:hover,
.inner-page .sidebar ul.darklinks li.active > a{
  color: var(--color);
}
.inner-page .sidebar ul.darklinks li.active i {
  transform: rotate(-90deg);
}
.inner-page .sidebar ul.darklinks li a:hover {
  color: var(--color);
}
.inner-page .sidebar ul.darklinks li .children{
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s linear;
}
.inner-page .sidebar ul.darklinks li.active .children{
  max-height: 1500px;
}
.inner-page .sidebar ul.darklinks li .children li a {
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 2;
}
.inner-page .sidebar .hot {
  padding: 50px 0;
}
.inner-page .sidebar .hot .widget_text li {
  padding: 30px 0;
  border-bottom: 1px solid #dddddd;
}
.inner-page .sidebar .hot .widget_text li .column {
  width: 70% !important;
  padding-right: 5%;
}
.inner-page .sidebar .hot .widget_text li .column h2 {
  text-transform: capitalize;
}
.inner-page .sidebar .hot .widget_text li .column h2 a {
  font-size: 16px;
}
.inner-page .sidebar .hot .widget_text li .column .star .fa-star {
  color: #e6b800;
  font-size: 12px;
}
.inner-page .sidebar .hot .widget_text li .column:nth-child(1) {
  width: 30% !important;
}
.inner-page .page-right {
  width: 75% !important;
  padding-left: 60px;
}
.inner-page .page-right .m-link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.inner-page .page-right .products li {
  padding: 0 20px;
  margin-bottom: 30px;
}
.inner-page .page-right .products li .img-box:hover img {
  opacity: 0.9;
}
.inner-page .page-right .products li .item-content {
  background: #fff;
  padding: 4px 18px;
  border-bottom: 3px solid var(--color);
  height: 88px;
  
}
.inner-page .page-right .products li .item-content h3 {
  font-size: 20px;
  margin-bottom: 0.9em;
}
.inner-page .page-right .products li .item-content h3 a {
  font-size: 14px;
}
.inner-page .page-right .products li .item-content p a {
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-image: linear-gradient(to right, #9cc026, #5faf21);
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.inner-page .page-right .products li .item-content p a:hover {
  background: var(--color);
  color: #88b04b;
}
.prodet-page .init-1 .grid-box .column:nth-child(2) {
  padding-left: 3%;
}
.prodet-page .init-1 .grid-box .column:nth-child(2) h1 {
  font-size: 30px;
  font-family: var(--font);
  color: var(--color);
  text-transform: capitalize;
}
.prodet-page .init-1 .grid-box .column:nth-child(2) .text {
  margin-top: 20px;
}
.prodet-page .init-1 .grid-box .column:nth-child(2) .text p {
  line-height: 2;
}
.prodet-page .init-1 .grid-box .column:nth-child(2) a.more {
  width: 170px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  
  margin-top: 20px;
  background-image: linear-gradient(to right, #9cc026, #5faf21);
}
.prodet-page .init-1 .grid-box .column:nth-child(2) a.more:hover {
  background: var(--color);
  color: #88b04b;
}
.prodet-page .init-3 {
  margin: 30px 0;
}
.prodet-page .init-3 .tit {
  color: #323232;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1em;
  margin-top: 1.4em;
  margin-bottom: 0.75em;
}
.prodet-page .init-3 .related-list {
  position: relative;
  margin-top: 30px;
}
.prodet-page .init-3 .related-list ul li{
    padding:0 10px;
}
.prodet-page .init-3 .related-list img{
  display: block;
}
.prodet-page .init-3 .related-list .fa {
  font-size: 16px;
  width: 60px;
  height: 60px;
  background-image: linear-gradient(to right, #9cc026, #5faf21);
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: 0;
  top: 40%;
  z-index: 8;
  color: #fff;
  line-height: 60px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=100);
  transition: 0.6s ease;
  -webkit-transition: 0.6s ease;
  -moz-transition: 0.6s ease;
  -ms-transition: 0.6s ease;
  -o-transition: 0.6s ease;
}
.prodet-page .init-3 .related-list .fa-chevron-right {
  left: auto;
  right: 0;
}
.prodet-page .init-3 .related-list:hover .fa {
  opacity: 1;
  filter: alpha(opacity=100);
}
.prodet-page .init-3 .related-list .swiper-slide .img-box:hover img {
  opacity: 0.9;
}
.prodet-page .init-3 .related-list .swiper-slide .item-content {
  background: #ffffff;
  padding: 35px 40px;
  border-bottom: 3px solid var(--color);
}
.prodet-page .init-3 .related-list .swiper-slide .item-content h3 {
  font-size: 20px;
  margin-bottom: 0.9em;
}
.prodet-page .init-3 .related-list .swiper-slide .item-content h3 a {
  font-size: 14px;
  line-height: 2;
  overflow: hidden;
  display: block;
}
.prodet-page .init-3 .related-list .swiper-slide .item-content p a {
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--color);
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.5s;
}
.prodet-page .init-3 .related-list .swiper-slide .item-content p a:hover {
  background: #000;
}
.prodet-page .prodet-detail {
  margin-top: 50px;
  margin-bottom: 20px;
}
.prodet-page .prodet-details {
  position: relative;
  /*background-color: #fff;*/
}
.prodet-page .prodet-details .prodet-details-tit {
  display: block;
  height: 68px;
  border-bottom: 3px solid var(--color);
}
.prodet-page .prodet-details .prodet-details-tit h4 {
  position: relative;
  padding: 0 30px;
  border-radius: 20px 20px 0 0;
  float: left;
  line-height: 63px;
  margin: 0 5px 0 0;
  font-size: 16px;
  cursor: pointer;
  color: #333333;
  border-top: 2px solid #f0f0f2;
  border-left: 1px solid #f0f0f2;
  border-right: 1px solid #f0f0f2;
}
.prodet-page .prodet-details .prodet-details-tit h4:hover,
.prodet-page .prodet-details .prodet-details-tit h4.on {
  border-top-color: var(--color);
  color: #fff;
  border-left-color: var(--color);
  border-right-color: var(--color);
  background: var(--color);
}
.prodet-page .prodet-details .prodet-details-information {
  padding: 45px 20px;
  background-color: #eee;
}
.prodet-page .prodet-details .prodet-details-information table{
    width: 100%;
    overflow-x: auto;
}
.prodet-page .prodet-details .prodet-details-information table.form{
  display: block;
}
.prodet-page .prodet-details .prodet-details-information table tr td{
  padding: 5px;
  background:#fff;
}
.prodet-page .prodet-details .prodet-details-information .prodet-details-information-bdy {
  display: none;
}
.prodet-page .prodet-details .prodet-details-information .prodet-details-information-bdy video{
  width: 100% !important;
}
.prodet-page .prodet-details .prodet-details-information .prodet-details-information-bdy img {
  width: auto;
  max-width: 100%;
}
.prodet-page .prodet-details .prodet-details-information .prodet-details-information-bdy p {
  line-height: 2em;
  font-size: 16px;
}
.contact-page .part1 .grid-box .i-fl {
  width: 40%;
}
.contact-page .part1 .grid-box .i-fr {
  width: 100%;
  padding:3% 0;
}
.contact-page .part1 .grid-box .i-fr h2 {
  color: #333;
  font-size: 36px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-weight: 700;
}
.contact-page .part1 .grid-box .i-fr h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--color);
}
.contact-page .part1 .grid-box .i-fr p {
  margin-bottom: 12px;
  color: #646464 !important;
}
.contact-page .part1 .grid-box .i-fr form {
  margin-top: 30px;
}
.contact-page .part1 .grid-box .i-fr form input,
.contact-page .part1 .grid-box .i-fr form textarea {
  padding: 20px;
  background: #fff;
  border: none;
  width: 100%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 15px;
}
.contact-page .part1 .grid-box .i-fr form textarea {
  height: 160px;
}
.contact-page .part1 .grid-box .i-fr form .submit {
  text-align: center;
  font-size: 20px;
  color: #fff;
  background: var(--color);
  text-transform: uppercase;
}
.contact-page .part1 .grid-box .i-fr form ul li {
  float: left;
  width: 49%;
  margin-right: 2%;
}
.contact-page .part1 .grid-box .i-fr form ul li:nth-child(2n) {
  margin-right: 0;
}
.contact-page .part2 {
  /*margin-top: 60px;*/
}
.contact-page .part2 .column {
  padding: 20px;
}
.contact-page .part2 .column .text {
  padding: 50px 30px;
  text-align: center;
}
.contact-page .part2 .column .text .address-icon {
  margin-right: 0;
  margin: 0 auto 20px;
  margin-bottom: 15px;
  z-index: 9;
  background: var(--color);
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 100%;
}
.contact-page .part2 .column .text .address-icon .fa {
  font-size: 25px;
  color: #fff;
}
.contact-page .part2 .column .text .address-icon:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: var(--color);
  border-radius: 50%;
  animation: pulse-border 1.5s ease-out infinite;
  opacity: 0;
  visibility: hidden;
}
.contact-page .part2 .column .text .address-icon:hover {
  border-color: rgba(255, 255, 255, 0.7);
}
.contact-page .part2 .column .text .address-text h3 {
  color: #333;
  font-size: 24px;
  margin: 0 0 10px;
  font-weight: 700;
}
.contact-page .part2 .column .text .address-text span {
  color: #505050;
  line-height: 2;
}
/*prodet-page form*/
.prodet-page .i-form{
  padding: 0 5%;
}
.prodet-page .i-form h2 {
  color: var(--color);
  font-size: 36px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}
.prodet-page .i-form h2:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -50px;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: var(--color);
}
.prodet-page .i-form p {
  margin-bottom: 12px;
  color: #646464 !important;
}
.prodet-page .i-form form {
  margin-top: 30px;
}
.prodet-page .i-form input,
.prodet-page .i-form textarea {
  padding: 20px;
  background: none;
  border: none;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 15px;
}
.prodet-page .i-form textarea {
  height: 160px;
}
.prodet-page .i-form .submit {
  text-align: center;
  font-size: 20px;
  color: #fff;
  background: var(--color);
  text-transform: uppercase;
}
.prodet-page .i-form ul li {
  float: left;
  width: 48%;
  margin-right: 4%;
}
.prodet-page .i-form form ul li:nth-child(2n) {
  margin-right: 0;
}
.news-page .sidebar-box .sidebar{
  width: 25%;
  position: sticky;
  top:200px;
}
.inner-page.news-page .sidebar ul.darklinks > li.active > a{
  padding: 20px 20px 0 0;
}
.news-page .page-right .news-list-li li {
  margin-bottom: 40px;
  /*background: #fff;*/
  /*border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);*/
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.news-page .page-right .news-list-li li .blog-button {
  margin-top: 20px;
}
.news-page .page-right .news-list-li li .blog-button .fa{
  margin-left: 7px;
}
.news_contents {
  color: #555;
  line-height: 24px;
  clear: both;
  margin-top: 10px;
  border-bottom: 1px solid #555;
  padding: 20px 0 40px;
}
.news_contents a {
  color: #555;
  font-size: 16px;
  line-height: 28px;
}
.newdet-page .news_contents p,
.newdet-page .news_contents div,
.newdet-page .news_contents span,
.newdet-page .news_contents table {
  color: #555;
  font-size: 16px;
  line-height: 38px;
  clear: both;
}
.newdet-page .news_next {
  width: 99%;
  margin-top: 0px;
  padding-left: 5px;
  border-top: 0px solid #CCC;
  text-align: left;
  padding-top: 10px;
}
.newdet-page .news_next a {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #777;
  font-size: 15px;
  margin-left: 5px;
}
.newdet-page .news_next a:hover {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #000;
}
.full-blog-content {
  background: #FFFFFF;
  position: relative;
  z-index: 88;
  padding: 3%;
}
.blog .rs-blog .blog-item {
  margin-bottom: 70px;
  background: #fff;
  border-radius: 5px;
}
.blog-all-titles {
  display: flex;
  justify-content: left;
  padding-bottom: 25px;
  padding-top: 8px;
  align-items: baseline;
}
.blog-all-titles .blog-title {
  margin: 0 0 7px;
}
.blog-all-titles .blog-title a {
  font-size: 20px;
  font-weight: 600;
}
.blog-all-titles .full-date {
  text-align: center;
  line-height: 1.5em;
  padding: 6px 20px;
  font-size: 16px;
}
.blog-all-titles .get_date_format {
  background: var(--color);
  border-radius: 4px;
  margin-right: 25px;
  position: relative;
}
.blog-all-titles .get_date_format .blog-date {
  font-size: 18px;
  color: #fff;
  padding: 12px 22px 10px;
  line-height: 1.5em;
}
.blog-all-titles .get_date_format .blog-date .date {
  font-size: 24px;
  font-weight: 700;
  display: block;
}
.blog-all-titles .btm-cate {
  padding: 0;
  margin: 0;
}
.blog-item.no-thumbs .blog-all-titles {
  display: block;
}
.rs-blog .blog-item .blog-desc {
  margin: 0 0 15px;
  clear: both;
}
.blog-desc p {
  line-height: 30px;
  font-size: 16px;
}
.faq-page .page-right {
  padding-left: 0;
  padding-right: 5%;
  width: 70% !important;
  /*=====================================
                faq content
            =====================================*/
}
.faq-page .page-right .tit {
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.faq-page .page-right .tit span {
  font-weight: 600;
  font-size: 40px;
}
.faq-page .page-right .p {
  font-size: 14px;
  line-height: 25px;
  color: #6d6d6d;
}
.faq-page .page-right .btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  font-size: 1rem;
  line-height: 1.5;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-image: initial;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
.faq-page .page-right .faq-content {
  padding: 50px 0;
}
.faq-page .page-right .collapse {
  display: none;
}
.faq-page .page-right .collapse.show {
  display: block;
}
.faq-page .page-right .faq-content .faq-content-item {
  margin-bottom: 70px;
}
.faq-page .page-right .faq-content .faq-content-item .faq-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 36px;
}
.faq-page .page-right .faq-content .faq-single-item {
  border: 1px solid #eeeeee;
  margin-bottom: 25px;
}
.faq-page .page-right .faq-content .faq-item h4 {
  margin-bottom: 0;
}
.faq-page .page-right .faq-content .faq-item h4 .btn-link {
  font-size: 14px;
  font-weight: 600;
  background: none;
  color: #008435;
  line-height: 26px;
  text-decoration: none;
  position: relative;
  padding-left: 40px;
  padding: 15px 54px 15px 54px;
  display: block;
  width: 100%;
  text-align: left;
}
.faq-page .page-right .faq-content .faq-item h4 .btn-link span {
  position: absolute;
  left: 20px;
  top: 19px;
  font-size: 18px;
  color: #008435;
}
.fa-question-circle{
  margin-right: 5px;
}
.faq-page .page-right .faq-content .faq-item h4 .btn-link .fa-angle-down{
  position: absolute; font-size: 18px;
  right:5%; top:20px;
}

.faq-page .page-right .faq-content .faq-item h4 .btn-link.collapsed {
  color: #282828;
}
.faq-page .page-right .faq-content .faq-item h4 .btn-link.collapsed:after {
  content: '\e98f';
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.faq-page .page-right .faq-content .faq-item .card-body {
  padding: 14px 55px 14px 55px;
}
.faq-page .sidebar {
  width: 30% !important;
}
.faq-page .sidebar .form-table {
  border: 1px solid #eee;
  padding: 20px;
}
.faq-page .sidebar .form-table form input,
.faq-page .sidebar .form-table form textarea {
  border: solid 1px #EEEEEE;
  background: none;
  padding: 15px;
  outline: none;
  margin-bottom: 20px;
  width: 100%;
  text-transform: capitalize;
  
}
.faq-page .sidebar .form-table form textarea {
  height: 150px;
}
.faq-page .sidebar .form-table form input[type="submit"] {
  text-align: center;
  font-size: 16px;
  background: #88b04b;
  color: #FFFFFF;
  text-transform: uppercase;
}
.about-page #page-about .txt img {
  margin-top: 20px;
  margin-bottom: 70px;
}
.about-page #page-about h2 {
  margin-top: 0;
  margin-bottom: 50px;
  line-height: 50px;
  padding: 0;
  margin-top: 0px;
  padding: 40px 0 25px;
  font-size: 48px;
  color: #92C43D;
  text-transform: none;
  position: relative;
}
.about-page #page-about h2 span {
  font-size: 48px;
  color: #333333;
}
.about-page #page-about .txt .grid-box .column.col-md-5 {
  width: 42%;
}
.about-page #page-about .txt .grid-box .column.col-md-7 {
  width: 58%;
}
.about-page #page-about .txt .btn {
  -webkit-border-radius: 30px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 30px;
  -moz-background-clip: padding;
  border-radius: 30px;
  background-clip: padding-box;
  transition: all .3s ease;
  color: #ffffff;
  font-size: 16px;
  padding: 15px 60px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  background: #88b04b;
}
.about-page ul.crocus li,
.about-page ul.check li {
  color: #656774;
  background: url(../images/li.png) no-repeat left center;
  padding-left: 25px;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-page #page-about .txt p {
  color: #656774;
}
.about-page #page-about .txt ul {
  margin: 40px 0 50px 20px;
}
.about-page #page-about #history {
  margin: 0px auto 120px;
}
.about-page #page-about #history h2 {
  text-align: center;
}    font-weight: 700;
.about-page h4 {
  margin: 60px 0 20px;
  font-size: 24px;
}
@media (max-width: 991px) {
  .about-page #page-about #history {
    margin-bottom: 140px;
  }
}
.about-page #page-about #history .info {
  text-align: center;
  color: #656774;
  display: none;
}
@media (min-width: 1200px) {
  .about-page #page-about #history .info p {
    width: 70%;
    margin: 0 auto;
  }
}
.about-page #page-about #history .info.active {
  display: block;
}
.about-page #page-about #gardeners {
  margin: 20px 0;
}
.about-page #page-about #gardeners h2 {
  margin-bottom: 20px;
}
.about-page h1.green,
.about-page h2.green,
.about-page h3.green,
.about-page h4.green,
.about-page h5.green,
.about-page h6.green,
.about-page .h1.green {
  color: #92C43D;
}
.about-page #page-about #history .i-history {
  background: none;
  padding-top: 0;
}
.about-page #countUp .row > div {
  height: 235px;
  background: #92C43D;
  color: #ffffff;
  text-align: center;
  background: #add256;
  background: -moz-linear-gradient(left, #add256 0%, #79ad11 100%);
  background: -webkit-linear-gradient(left, #add256 0%, #79ad11 100%);
  background: linear-gradient(to right, #add256 0%, #79ad11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#add256', endColorstr='#79ad11', GradientType=1);
}
.about-page #countUp .row > div {
  padding-top: 60px;
}
.about-page #countUp .row > div span {
  margin: -15px 0 0 0;
  font-size: 50px;
  
  display: block;
  line-height: 1.3em;
}
.about-page #countUp .row > div p {
  color: #23242C;
  font-size: 24px;
  display: block;
}
.about-page #clients-logos a {
  text-align: center;
  padding: 33px 0;
  border-bottom: 1px solid #F7F7F7;
}
.about-page #clients-logos a:nth-child(2n) {
  background: #F7F7F7;
}
.about-page #page-about #gardeners h2 {
  margin-bottom: 20px;
  text-align: center;
}
.about-page #page-about #gardeners .column {
  padding: 0 20px;
}
.about-page .others {
  background: url(../images/_parallax2.jpg) no-repeat center;
  padding: 100px 0;
}
.about-page .others .others-list {
  padding: 0 5%;
  position: relative;
  margin-top: 20px;
}
.about-page .others .others-list .fa {
  font-size: 16px;
  width: 60px;
  height: 60px;
  background-image: linear-gradient(to right, #9cc026, #5faf21);
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5%;
  color: #fff;
  line-height: 60px;
  cursor: pointer;
  transition: 0.6s ease;
  -webkit-transition: 0.6s ease;
  -moz-transition: 0.6s ease;
  -ms-transition: 0.6s ease;
  -o-transition: 0.6s ease;
  z-index: 8;
}
.about-page .others .others-list .fa-chevron-right {
  left: auto;
  right: 0;
}
.about-page .others .swiper-slide .text {
  margin: 0 10% 30px;
}
.about-page .others .swiper-slide .text p {
  line-height: 30px;
  color: #fff;
  text-align: center;
}
.about-page .others .swiper-slide .img img {
  width: auto;
  margin: 0 auto;
  display: block;
}
.about-page .others .swiper-slide .img h3 {
  text-align: center;
  font-size: 18px;
  color: #fff;
  margin: 10px 0;
}
.about-page .others h2 {
  text-align: center;
}
.about-page .others h2 span.black {
  color: #fff !important;
}
.about-page #gardeners {
  background: #92C43D;
  padding: 100px 0 82px;
}
.about-page #gardeners h3 {
  margin: -8px 0 28px;
  font-size: 36px;
}
.about-page #gardeners ul li {
  color: #23242C !important;
  float: left;
}
.about-page #gardeners .item {
  background: #ffffff;
  padding: 14px 14px 14px;
  text-align: center;
  position: relative;
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 8px;
  -moz-background-clip: padding;
  border-radius: 8px;
  background-clip: padding-box;
}
.about-page #gardeners .item img {
  width: 100%;
  max-width: auto;
  height: auto;
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 8px;
  -moz-background-clip: padding;
  border-radius: 8px;
  background-clip: padding-box;
}
.about-page #gardeners .item .label-white {
  position: absolute;
  right: -16px;
  top: -16px;
}
.about-page #gardeners .item h5 {
  margin: 20px 0 3px;
}
.about-page #gardeners .item p {
  color: #92C43D;
}
.about-page #gardeners .item p.icon {
  color: #333333;
  margin: 10px 0;
}
.about-page #gardeners .item p.icon .fa {
  margin-right: 10px;
}
.about-page #gardeners.gardeners-inner {
  background: transparent;
  padding: 0;
}
.about-page #gardeners.gardeners-inner .item {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.about-page #gardeners .btns {
  margin-top: 50px;
  text-align: center;
}


.about-page .accordion-box {
  position: relative; margin-top:40px;
  margin-bottom: 30px;
  padding-right: 30px;
}
.about-page .accordion-box .block {
  position: relative; border:1px solid #eee;
  padding-top: 0px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 21.25px 3.75px rgba(217, 217, 217, 0.1);
}
.about-page .accordion-box .block:last-child {
  margin-bottom: 0px;
}
.about-page .accordion-box .block .acc-btn {
  position: relative;
  cursor: pointer;
  line-height: 1.2em;
  text-transform: capitalize;
  color: #222;
  font-weight: 600;
  padding: 22px 30px;
  padding-left: 58px;
  transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  border-radius: 6px;
}
.about-page .accordion-box .block .acc-btn.active {
  color: #88b04b;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.about-page .accordion-box .block .icon-outer {
  position: absolute;
  right: 32px;
  top: 47px;
  font-size: 25px;
  color: #222222;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.about-page .accordion-box .block .icon-outer .icon {
  position: absolute;
  top: 50%; right:10px;
  margin-top: -22px;
  font-size: 18px;
  color: #222222;
  line-height: 1em;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.about-page .accordion-box .block .icon-outer .icon_plus {
  opacity: 1;
}
.about-page .accordion-box .block .icon-outer .icon_minus {
  opacity: 0;
  color: #222;
  font-weight: 700;
}
.about-page .accordion-box .block .acc-btn.active .icon-outer .icon_minus {
  opacity: 1;
}
.about-page .accordion-box .block .acc-btn.active .icon-outer .icon_plus {
  opacity: 0;
}
.about-page .accordion-box .block .acc-btn.active .icon-outer {
  color: #0eaf96;
}
.about-page .accordion-box .block:nth-child(1) .acc-content{
	display:block;
}
.about-page .accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding: 0 30px 36px;
  padding-left: 58px;
  background: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
/* .about-page .accordion-box .block .acc-content table tr td,.about-page .accordion-box .block .acc-content .para{
	color:#ccc;
} */
.about-page .accordion-box .block .acc-content .content-text {
  padding-bottom: 6px;
}
.about-page .accordion-box .block .acc-content.current {
  display: block;
}
.about-page .accordion-box .block .content {
  position: relative;
  margin-bottom: 0;
}
.about-page .accordion-box .block .content .text {
  margin-bottom: 0;
  font-size: 17px;
}
.service-page{
    padding-bottom:50px;
}
.faq-page .faq-list {
  padding: 0 0 50px;
}
.faq-page .faq-list li {
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
  background: #1c1c1c  url("../images/faq-q-ico.png") no-repeat left top;
  padding: 0 14px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.faq-page .faq-list li,
.faq-page .faq-list li .faq-a,
.faq-page .faq-list li .fa {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.faq-page .faq-list li:last-child {
  margin-bottom: 0;
}
.faq-page .faq-list li .faq-a {
  padding: 19px 0 19px 32px;
  font-size: 18px;
  color: #fff;
}
.faq-page .faq-list li .faq-q {
  padding: 29px 24px;
  background: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  display: none;
}
.faq-page .faq-list li .faq-q p {
  font-size: 16px;
  color: #333;
}
.faq-page .faq-list li .faq-q p strong{
  font-size: 18px;
}
.faq-page .faq-list li .fa {
  position: absolute;
  color: #616161;
  font-size: 1.2rem;
  right: 36px;
  top: 21px;
}
.faq-page .faq-list li.active {
  padding-bottom: 15px;
  background-color: var(--color);
  background-image: url("../images/faq-q-ico-h.png");
}
.faq-page .faq-list li.active .faq-a,
.faq-page .faq-list li.active .fa {
  color: #fff;
}
.application .part1{
    margin:20px 0 40px;
}
.application h2 {
    font-size: 24px;
    font-weight: bold;
    color: #007f41;
}
.application p {
    line-height: 24px;
    margin-bottom: 20px;
    border-bottom:1px solid #ccc;
    padding-bottom:20px;
    font-size: 14px;
}
.application .part1 .grid-box .column{
    padding:0 10px;
}
#history{
  padding-bottom: 150px;
}
#history h2 {
    padding: 40px 0 25px;
    font-size: 40px;
    text-align: center;
}

.i-history .history-list {
  background: url(../images/line_03.jpg) repeat-x left 7px;
}
.i-history .history-list .swiper-slide {
  position: relative;
}
.i-history .history-list .swiper-slide:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 50px;
  top: 0;
  left: 7px;
  background: #88b04b;
}
.i-history .history-list .swiper-slide:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  left: 0;
  z-index: 8;
  background: url(../images/pointer2.png) no-repeat center;
}
.i-history .history-list .swiper-slide .news-text {
  padding-top: 60px;
}
.i-history .history-list .swiper-slide .news-text h3 {
  font-size: 22px;
  color: #339a5a;
  line-height: 28px; font-weight: bold;
}
.i-history .history-list .swiper-slide .news-text h4 {
  font-size: 20px;
  text-transform: capitalize;
  margin: 10px 0;
}
.i-history .history-list .swiper-slide .news-text p {
  line-height: 25px;
  color: #6d6d6d; font-size:15px;
}
.i-history .img {
  margin-top: 50px;
}

.thumb-gallery{
  padding:20px 0;
  }
  .thumb-gallery li{
    float: left;
    padding:10px;
    width:25%;
  }
  
  /* 手机端头部 */
#m-header-wrapper {
  display: none;
}
#m-header-wrapper .overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
#m-header-wrapper .m-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 45px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: 300ms;
}
#m-header-wrapper .m-header.active {
  left: 200px;
}
#m-header-wrapper .m-header .container {
  height: 100%;
  position: relative;
}
#m-header-wrapper .m-header .container .toggle-btn {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#m-header-wrapper .m-header .container .toggle-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  margin-bottom: 5px;
  transition: 300ms;
}
#m-header-wrapper .m-header .container .toggle-btn span:last-of-type {
  margin-bottom: 0;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: left center;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(2) {
  opacity: 0;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: left center;
}
.grid-box .column {
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
	padding-right:15px;
}

.inner-product .container .inner-pro-list .item .img-box:nth-of-type(2){ float:right;}

#m-header-wrapper .m-header .container .logo {
  text-align: center;
    position: relative;
    left: 33%;
    top: 50%;
    transform: translateY(-50%);
    width: 26%;
}
#m-header-wrapper .m-header .container .logo img {
  width: 90px;
  height: auto !important;
}
#m-header-wrapper .m-toggle-nav {
  position: fixed;
  width: 200px;
  height: 100%;
  left: -200px;
  top: 0;
  overflow-y: auto;
  background: #333;
  z-index: 9999;
  transition: 300ms;
  padding: 15px 0;
}
#m-header-wrapper .m-toggle-nav.active {
  left: 0;
}
#m-header-wrapper .m-toggle-nav h1 {
  font: 14px sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 0 15px 20px;
}
#m-header-wrapper .m-toggle-nav h2 {
  font: 14px sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 0 15px 20px;
}
#m-header-wrapper .m-toggle-nav h1 .icon {
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
}
#m-header-wrapper .m-toggle-nav h2 .icon {
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
}
#m-header-wrapper .m-toggle-nav .menu-box {
  padding-bottom: 25px;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a {
  display: block;
  font: 12px/40px sans-serif;
  color: #fff;
  padding-left: 15px;
  text-transform: uppercase;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #fff;
  display: none;
  transition: 300ms;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a i.active {
  transform: translateY(-50%) rotate(180deg);
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li .sub-menu {
  background: #000;
  padding: 5px 0;
  display: none;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li .sub-menu li a {
  display: block;
  font: 12px/40px sans-serif;
  padding-left: 15px;
  color: #fff;
  text-transform: uppercase;
}
#m-header-wrapper .m-toggle-nav .search-box {
  padding: 15px 15px 35px;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .search-box input[type="text"] {
  width: 100%;
  height: 30px;
  border: none;
  outline: none;
  padding: 0 40px 0 10px;
  font: 12px sans-serif;
  color: #333;
}
#m-header-wrapper .m-toggle-nav .search-box button {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 15px;
  border: none;
  outline: none;
  text-align: center;
  background: #000;
}
#m-header-wrapper .m-toggle-nav .search-box button i {
  font-size: 12px;
  line-height: 30px;
  color: #fff;
}
#m-header-wrapper .m-toggle-nav .lan h1 {
  padding-bottom: 10px;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .lan h2 {
  padding-bottom: 10px;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .lan h1 i.fa-angle-down {
  position: absolute;
  right: 15px;
  top: 1px;
  font-size: 16px;
  color: #fff;
  transition: 300ms;
}
#m-header-wrapper .m-toggle-nav .lan h2 i.fa-angle-down {
  position: absolute;
  right: 15px;
  top: 1px;
  font-size: 16px;
  color: #fff;
  transition: 300ms;
}
#m-header-wrapper .m-toggle-nav .lan h1 i.fa-angle-down.active {
  transform: rotate(180deg);
}
#m-header-wrapper .m-toggle-nav .lan h2 i.fa-angle-down.active {
  transform: rotate(180deg);
}
#m-header-wrapper .m-toggle-nav .lan ul {
  background: #000;
  display: none;
}
#m-header-wrapper .m-toggle-nav .lan ul li a {
  display: block;
  font: 12px/30px sans-serif;
  color: #fff;
  padding-left: 15px;
}
@media screen and (max-width: 1100px) {
#m-header-wrapper{
  display: block;
}
}



@media screen and (max-width: 1230px) {
  .container {
    width: 970px;
  }
  .i-history ul li h3 {
    font-size: 26px;
}
.i-history ul li p {
    height: 130px;overflow: hidden;
}
.cta h2 {
    margin-bottom: 30px;
    font-size: 28px;
}
.prodet-page .prodet-details .prodet-details-information table{
    display: block;
}
  
}
@media (max-width: 1400px) {
  .inner-page .init-1 .grid-box .column{
      width:100%;
      padding:0;
      margin:0 0 10px;
  }
  .inner-page .sidebar ul.darklinks li .children li a{
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .inner-page.product-page .sidebar{
    display: none;
  }
  .inner-banner{
    height: auto;
    padding-top: 0 !important;
  }
  .news-page .sidebar-box .sidebar{
    display: none;
  }
  .inner-page .page-right{
    width: 100% !important;
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .about-page #gardeners {
    padding: 60px 0 20px;
  }
  .about-page #gardeners .txt {
    text-align: center;
  }
  .about-page #gardeners .txt ul {
    text-align: left;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media screen and (max-width: 970px) {
  .container {
    width: 768px;
  }
  .i-history .history-list .swiper-slide .news-text h3 {
    font-size: 38px;
  }
  .about-page #page-about .txt .grid-box .column.col-md-7 {
    width: 58%;
    padding-left: 3%;
  }
  .about-page #page-about h2 span,
  .about-page #page-about h2 {
    font-size: 26px;
    margin-bottom: 0;
  }

  .contact-page .grid-box.four>.column {
    width: 50%;
}
}
@media screen and (max-width: 768px) {
  .container {
    width: 700px;
  }
  .three-part .column h3 {
    font-size: 18px;
  }
  .three-part .column p {
    line-height: 25px;
    font-size: 14px;
  }
  .inner-page .page-right .products li {
    padding: 0 20px;
    margin-bottom: 30px;
    width: 50% !important;
  }
  .contact-page .part1 .grid-box .i-fl {
    width: 100%;
  }
  .contact-page .part1 .grid-box .i-fr {
    width: 100%;
  }
  .contact-page .part2 .column {
    /*padding: 20px;*/
    width: 50%;
  }
  .contact-page .part1 .grid-box .i-fr {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
}
.inner-banner h2 {
    font-size: 25px;
    margin-top: 0px;
}
.inner-banner {
    padding-top: 100px;
}
.i-product .pro-list > .column {
    margin-bottom: 19px;
    width: 32.3%;
    margin-right: 1%;
}
.inner-page .init-1 .grid-box .column {
    margin-bottom: 30px; width:100%;
}
.inner-page .init-1 .grid-box .column h2,.about-page .p61-s03 h2,.sec-title h2,
#history h2,.cta h2{
    font-size: 30px;
    font-weight: 700;
}
.inner-page .page-right .products li .item-content {
    padding: 10px;
    border-bottom: 2px solid var(--color);
}
.inner-page .page-right .products li .item-content h3 {
    margin-bottom: 0;
}
.inner-page .page-right .products li .item-content h3 a{
    font-size: 14px;
}
.inner-page .sidebar ul.darklinks li a {
    font-size: 14px;
}
.blog-all-titles .blog-title a {
    font-size: 20px;
    font-weight: 600;
}
  .inner-page .sidebar {
    width: 100% !important;
  }
  .inner-page .page-right {
    width: 100% !important;
    padding-left: 0;
  }
  .inner-page .sidebar .hot {
    padding: 20px 0;
}
.about-page #gardeners .txt ul {
    text-align: left;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    margin-left: 15%;
  }
  .about-page #gardeners .item {
    margin: 0 auto 30px;
  }

}
@media screen and (max-width: 700px) {
  #footer .footer-top .top,
  .banner-list .text h2,
  .inner-page.about-page .cta{
    display: none;
  }
  .banner-list .text{
    top:20%;
  }
  .container {
    width: 100%;
  }
  .three-part .column h3 {
    font-size: 13px;
  }
  .three-part .grid-box {
    width: 100%;
  }
  .three-part .grid-box.three > .column {
    width: 100%;
  }
  .three-part .column p {
    min-height: 75px;
  }
  .i-history h2 {
    font-size: 24px;
  }
  .i-history .history-list .swiper-slide .news-text h3 {
    font-size: 30px;
  }
  .inner-page {
    padding: 60px 0 20px;
  }
  .about-page #page-about .txt .grid-box .column.col-md-5 {
    width: 100%;
  }
  .about-page #page-about .txt .grid-box .column.col-md-7 {
    width: 100%;
    padding-left: 0%;
  }
  .about-page #page-about .txt img {
    margin-top: 0;
    margin-bottom: 0;
  }
  .about-page #countUp .row > div {
    padding-top: 60px;
    width: 50%;
  }
  .about-page #countUp .row > div span {
    font-size: 25px;
  }
  .about-page #countUp .row > div p {
    font-size: 18px;
  }
  .about-page #countUp .row > div {
    height: 145px;
  }
  .about-page #clients-logos a {
    width: 33.3%;
  }
  .about-page #page-about #gardeners .column {
    padding: 0 20px;
    width: 50%;
  }

  .inner-page .sidebar .widget-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .inner-page .page-right .products li .item-content {
    background: var(--color);
    padding: 20px 8px;
    border-bottom: 3px solid var(--color);
  }
  .inner-page .page-right .products li {
    padding: 0px 5px;
    margin-bottom: 30px;
    width: 50% !important;
  }
  .init-1 .grid-box.two > .column {
    width: 100%;
  }
  .prodet-page .init-3 .tit {
    font-size: 20px;
  }
  .blog-all-titles .blog-title a {
    font-size: 20px;
    font-weight: 600;
  }
  .faq-page .page-right .tit span,
  .faq-page .page-right .tit {
    font-weight: 600;
    font-size: 24px;
  }
  .contact-page .part1 .grid-box .i-fr h2 {
    font-size: 24px;
  }
  .contact-page .part1 .grid-box .i-fr form ul li {
    float: left;
    width: 100%;
    margin-right: 0;
  }
  .contact-page .part2 {
    margin-top: 10px;
  }
  .contact-page .part2 .column {
    padding: 20px;
    width: 100%;
  }
	.inner-banner h2 {
    font-size: 20px;
    margin-top: 0px;
}
.about-page{
    padding-bottom:0;
}
.inner-page .init-1 .grid-box .column h2,.about-page .p61-s03 h2,.sec-title h2,.cta h2{
    font-size: 20px;
}
.inner-page .init-1 .grid-box .column:nth-child(1), 
.inner-page .init-1 .grid-box .column:nth-child(4) {
    padding-right:0;
}
.inner-page .init-1 .grid-box .column {
    margin-bottom: 20px;
}
.breadCrumbs .side-menu{
    margin-top:10px;
}
.i-product .pro-list > .column {
    width: 49%;
}
.contact-page .part1 .grid-box .i-fr {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
}
.contact-page .part2 .column {
    padding: 10px 0;
    width: 100%;
}
.inner-page .init-1 .grid-box .column h2,.about-page .p61-s03 h2,.sec-title h2,
#history h2,.cta h2{
    font-size: 20px;
}
.about-page h4 {
    margin: 20px 0 20px;
    font-size: 20px;
}
.about-page .p61-s04 h4 {
    font-size: 18px;
    line-height: 30px;
}
.inner-page .sidebar{
    display:none;
}
.prodet-page .prodet-details .prodet-details-tit h4{
    padding:0 12px;
}
.prodet-page .prodet-details .prodet-details-information {
    padding: 20px 10px;
}
.faq-page .faq-list li .faq-a {
    padding: 19px 55px 19px 32px;
    font-size: 16px;
}
.faq-page .faq-list li .fa {
    font-size: 1.2rem;
    right: 18px;
    top: 21px;
}
.contact-page .part2 .column .text .address-text h3 {
    font-size: 18px;
    margin: 0 0 10px;
}
.contact-page .grid-box.four>.column {
    width: 100%;
}
}
#cs {
  width: 100%;
  margin-bottom: 20px;
}
#cs td,#cs th{
  padding: 5px 10px;
  border: none;
  width: 50%;
}
#cs tr:nth-child(even){
  background: #efefef;
}
#cs tr:nth-child(odd){
  background: #dadada;
}
#cs td:first-child {
  color: #000;
}
#cs td:last-child {
  color: #000;
}

table {
  word-break: normal;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  min-width: 100%;
}
table td,
table th{
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}
table tr {
  width: auto !important;
  height: auto !important;
}
table tr:nth-child(even) {
  background: white;
}
@media screen and (max-width:1600px) {
  .i-product .pro-list > .column{
    width: 33.333333333%;
    margin-right: 0;
  }
}
@media screen and (max-width:1300px) {
  table {
    white-space: nowrap;
  }
  .banner-list .text h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .banner-list .text a.more {
    margin-top: 20px;
  }
  .banner-list .text {
    top: 20%;
  }
}
@media screen and (max-width:1000px) {
  .i-product .pro-list{
    margin: 0 -15px;
  }
  .i-product .pro-list > .column{
    width: 50%;
    padding: 0 15px;
  }
  .product-page .i-product{
    padding: 0;
    width: 100% !important;
  }
}
@media screen and (max-width:500px) {
  .i-product .pro-list > .column{
    width: 100%;
  }
  .prodet-page .prodet-details .prodet-details-tit h4{
    font-size: 14px;
  }
}
.download {
    background: #fff;
    /*padding: 50px 0;*/
    background: url(/template/en/images/bg.png)
}

.download ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    border: 1px solid #e2e2e2;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,.15);
    border-radius: 10px
}

.download ul li .left {
    display: flex
}

.download ul li .time {
    font-family: ArialMT;
    color: var(--color);
    padding-right: 30px;
    border-right: 2px solid var(--color);
    margin-right: 20px
}

.download ul li .down_btn {
    display: flex;
    align-items: center
}

.download ul li .down_btn:hover {
    color: var(--color)
}

.download ul li .down_btn img {
    width: 25px;
    margin-right: 20px
}

@media screen and (max-width: 1280px) {
    .download ul li {
        font-size:18px
    }
}

@media screen and (max-width: 1100px) {
    .download ul li {
        font-size:16px
    }
}

@media screen and (max-width: 1000px) {
    .download ul li {
        flex-wrap:wrap;
        justify-content: end
    }

    .download ul li .left {
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 10px
    }

    .download ul li .left .down_tit {
        width: 100%
    }

    .download ul li .left .time {
        border: none;
        margin-bottom: 10px
    }
}

    .seoPublic .title {
        font-size: 32px;
        font-weight: bold;
        line-height: 1.4;
        margin-bottom: 2em;
    }

    .seoPublic > div {
        padding: 30px 0;
    }

    /*.seoPublic > div:nth-child(odd) {
        background: #fafafa;
    }*/

    .seoPublic .Auxil-about .box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

    .seoPublic .Auxil-about .box .left {
        width: 40%;
    }

    .seoPublic .Auxil-about .box .left .img {
        height: 100%;
        background-size: cover;
        background-position: center center;
        display: block;
    }

    .seoPublic .Auxil-about .box .right {
        width: 60%;
        padding-left: 5%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: 24px;
        font-weight: normal;
        line-height: 1.6;
        margin-bottom: 1em;
    }

    .seoPublic .Auxil-about .box .right .text {
        font-size: 16px;
        line-height: 2;
        color: #666;
        max-height: 400px;
        overflow: auto;
    }

    .seoPublic .Auxil-honor .list ul {
        margin: -10px;
    }

    .seoPublic .Auxil-honor .list ul li {
        padding: 10px;
    }

    .seoPublic .Auxil-honor .list ul li a {
        display: block;
    }

    .seoPublic .Auxil-honor .list ul li a img {
        width: 100%;
    }

    .seoPublic .Auxil-news .list ul {
        margin: -13px;
    }

    .seoPublic .Auxil-news .list ul li {
        padding: 13px;
    }

    .seoPublic .Auxil-news .list ul li a.img-box {
        display: block;
        height: 240px;
        background-size: cover;
        background-position: center center;
    }

    .seoPublic .Auxil-news .list ul li .content {
        margin-top: 30px;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: 22px;
        line-height: 1.8;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-news .list ul li .content time {
        font-size: 14px;
        margin-top: .5em;
        display: block;
    }

    .seoPublic .Auxil-news .list ul li .content p {
        font-weight: 300;
        font-size: 16px;
        line-height: 2;
        margin: 1em 0;
    }

    .seoPublic .Auxil-news .list ul li .content a.link {
        font-weight: 300;
        font-size: 16px;
        text-transform: uppercase;
        line-height: 1;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        border-bottom: 1px solid transparent;
        display: inline-block;
    }

    .seoPublic .Auxil-news .list ul li .content a.link:hover {
        border-color: var(--color);
        color: var(--color);
    }

    .seoPublic .Auxil-form .form ul {
        margin: -10px;
    }

    .seoPublic .Auxil-form .form ul li {
        padding: 10px;
    }

    .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea {
        display: block;
        width: 100%;
        border: 1px solid #eee;
        font-size: 16px;
        padding: 8px 15px;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-form .form ul li textarea {
        height: 100px;
    }

    .seoPublic .Auxil-form .form ul li input:focus,
    .seoPublic .Auxil-form .form ul li textarea:focus {
        border-color: var(--color);
    }

    .seoPublic .Auxil-form .form ul li.wid-100 {
        width: 100%;
    }

    .seoPublic .Auxil-form .form ul li input[type="submit"] {
        width: auto;
        display: inline-block;
        padding-left: 25px;
        padding-right: 25px;
        background: var(--color);
        color: whitesmoke;
        border: none;
    }

    .seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
        background: #222;
    }

    .seoPublic .seoIndustry .text {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
    }


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

    .seoPublic .Auxil-through {
        padding: 15px 0;
        background: none !important;
    }

    .seoPublic .Auxil-through a {
        display: inline-block;
        line-height: 40px;
        height: 40px;
        padding: 0 25px;
        font-size: 14px;
        color: black;
        border: 1px solid #eee;
        background: #f8f8f8;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-through a:hover {
        background: var(--color);
        color: white;
    }

    .seoPublic .Auxil-related .list ul {
        margin: -20px -25px;
    }

    .seoPublic .Auxil-related .list ul li {
        padding: 20px 25px;
    }

    .seoPublic .Auxil-related .list ul li .box {
        display: block;
        background: white;
        -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    }

    .seoPublic .Auxil-related .list ul li .box a.img-box {
        display: block;
    }

    .seoPublic .Auxil-related .list ul li .box .content {
        display: block;
        padding: 20px;
        text-align: center;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: 22px;
        line-height: 1.8;
        color: #111;
        font-weight: 500;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content p {
        display: block;
        font-size: 16px;
        color: #888;
        line-height: 2;
        font-weight: 400;
        margin: .5em 0;
        height: 4.8em;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        height: 40px;
        padding: 0 20px;
        border: 1px solid var(--color);
        font-size: 16px;
        font-weight: 700;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more i {
        margin-left: 5px;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more:hover {
        color: white;
        background: var(--color);
    }

    @media screen and (max-width: 1400px) {
        .seoPublic .title {
            font-size: 28px;
            margin-bottom: 1.5em;
        }

        .seoPublic .Auxil-about .box .right div.title,
        .seoPublic .Auxil-related .list ul li .box .content div.h3 {
            font-size: 20px;
        }

        .seoPublic .Auxil-form .form ul li input,
        .seoPublic .Auxil-form .form ul li textarea,
        .seoPublic .Auxil-about .box .right .text,
        .seoPublic .Auxil-news .list ul li .content p,
        .seoPublic .seoIndustry .text,
        .seoPublic .Auxil-related .list ul li .box .content p {
            font-size: 14px;
        }

        .seoPublic .Auxil-news .list ul li .content div.h6 {
            font-size: 18px;
        }

        .seoPublic .Auxil-related .list ul li .box .content a.more {
            font-size: 14px;
            line-height: 34px;
            height: 34px;
            padding: 0 15px;
        }

        .seoPublic .Auxil-related .list ul li {
            padding: 15px;
        }

        .seoPublic .Auxil-related .list ul {
            margin: -15px;
        }
    }

    @media screen and (max-width: 1000px) {
        .seoPublic .title {
            font-size: 24px;
            margin-bottom: 1em;
        }

        #cp-Nav {
            display: block;
        }

        #cp-Nav .nav {
            padding: 15px;
        }
.about-page .about-1{
  padding-top:0px!important;
}
        #cp-Nav .nav div.title {
            font-size: 18px;
            line-height: 32px;
            font-weight: bold;
            padding: 8px 10px;
            background: var(--color);
            border-radius: 5px;
            color: white;
            display: flex;
            align-items: center;
          justify-content: space-between;
          margin-bottom: 30px;
        }
        #cp-Nav .nav div.title::after{
          content:"\f107";
          font-family: 'FontAwesome';
          font-size: 20px;
          color:white;
        } 

        #cp-Nav .nav i.mask {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 230;
            background: rgba(0, 0, 0, 0.2);
        }

        #cp-Nav .nav > ul {
            display: none;
        }

        #cp-Nav .nav ul {
            position: fixed;
            top: 10%;
            max-height: 80%;
            left: 5%;
            width: 90%;
            padding: 20px;
            border-radius: 5px;
            background: white;
            z-index: 300;
            font-size: 16px;
            overflow: auto;
        }

        #cp-Nav .nav ul ul {
            padding: 0 10px;
            font-size: 14px;
            position: static;
            max-height: none;
            width: 100%;
            margin: 10px 0;
        }

        #cp-Nav .nav ul li a {
            display: block;
            padding: 5px 0;
            font-size: 16px;
line-height: 30px;
        }

       .pt-160{
         padding-top: 40px;
       }
       .inner-banner{
         height: auto;
         padding: 60px 0;

       }
       .inner-banner .content{
         position: relative;
         top: 0;
         transform: none;
       }
    }

.video-page {
    padding: 30px 0 60px;
    text-align: center
}

.video-page p {
    max-width: 690px;
    text-align: center;
    color: #222;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 auto;
    margin-bottom: 50px
}

.video-page ul {
    margin: 0 -15px;
    text-align: left
}

.video-page ul li {
    padding: 25px
}

.video-page ul li .imgbox {
    overflow: hidden;
    position: relative;
    min-height:250px;
}
.video-page ul li .imgbox .img_box{
  width: 100%;
}
.video-page ul li .imgbox .img_box video{
  width: 100%;
  height: auto;
}
.video-page ul li p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: var(--color);
    color: #fff;
    margin-bottom: 0
}

.video-page ul li .imgbox .textbox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    background: rgba(0,0,0,.5);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all
}

.video-page ul li .imgbox .textbox i {
    font-size: 45px;
    color: #fff
}

.video-page ul li .imgbox .textbox i:hover {
    cursor: pointer
}

.video-page ul li .imgbox .textbox h4 {
    font-size: 20px;
    line-height: 1.3em;
    color: #fff;
    padding: 5px 20px;
    background: rgba(0,0,0,.5);
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    min-width: 100px;
    text-align: center
}

.video-page ul li .imgbox .textbox h4:hover {
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    background: #000
}

.video-page ul li:hover {
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all
}

.video-page ul li:hover .imgbox .textbox {
    top: 0
}

.video-page .list {
    margin-top: 20px
}

.video-page .list ul {
    margin: -7px;
    padding: 0 20px
}

.video-page .list ul li {
    padding: 7px
}

.video-page .list ul li .img-box {
    overflow: hidden
}

.video-page .list ul li .img-box img {
    width: 100%
}

.video-page .list ul .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 45%;
    width: 21px;
    height: 37px;
    border: 0;
    zoom:.7}

.video-page .list ul .slick-prev {
    left: 0;
    background: url(/template/en/images/icon-prev.png) no-repeat center;
    filter: brightness(0) opacity(.5)
}

.video-page .list ul .slick-next {
    right: 0;
    background: url(/template/en/images/icon-next.png) no-repeat center;
    filter: brightness(0) opacity(.5)
}

.service-page h6 {
    color: #177324;
    font-size: 22px;
    line-height: 1.2
}

.service-page h2 {
    color: #177324;
    font-weight: 700;
    font-size: 35px;
    margin-top: 20px;
    line-height: 1.3;
    font-family: 'Playfair-Regular'
}

.video_box video,.video_box iframe {
    min-width: 900px;
    min-height: 500px
}

@media screen and (max-width: 1000px) {
    .video_box video,.video_box iframe {
        min-width:600px;
        display: block;
        max-height: 340px !important
    }
}

@media screen and (max-width: 700px) {
    .video_box video,.video_box iframe {
        min-width:400px;
        display: block;
        max-height: 240px !important
    }
}

@media screen and (max-width: 500px) {
    .video_box video,.video_box iframe {
        min-width:300px;
        display: block;
        max-height: 170px !important
    }
}
#Pop_UpsBtn{
  z-index: 150 !important
}