@font-face {
  font-family: 'Poppins-Medium';
  src: url(../fonts/Poppins-Medium.ttf) format('truetype'), url(../fonts/Poppins-Medium.eot) format('eot'), url(../fonts/Poppins-Medium.woff) format('woff'), url(../fonts/Poppins-Medium.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-Regular';
  src: url(../fonts/Poppins-Regular.ttf) format('truetype'), url(../fonts/Poppins-Regular.eot) format('eot'), url(../fonts/Poppins-Regular.woff) format('woff'), url(../fonts/Poppins-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-SemiBold';
  src: url(../fonts/Poppins-SemiBold.ttf) format('truetype'), url(../fonts/Poppins-SemiBold.eot) format('eot'), url(../fonts/Poppins-SemiBold.woff) format('woff'), url(../fonts/Poppins-SemiBold.woff2) format('woff2');
}
@font-face {
  font-family: 'MicrogrammaD-BoldExte';
  src: url(../fonts/MicrogrammaD-BoldExte.ttf) format('truetype'), url(../fonts/MicrogrammaD-BoldExte.eot) format('eot'), url(../fonts/MicrogrammaD-BoldExte.woff) format('woff'), url(../fonts/MicrogrammaD-BoldExte.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-Light';
  src: url(../fonts/Poppins-Light.ttf) format('truetype'), url(../fonts/Poppins-Light.eot) format('eot'), url(../fonts/Poppins-Light.woff) format('woff'), url(../fonts/Poppins-Light.woff2) format('woff2');
}
@font-face {
  font-family: 'Raleway-Light';
  src: url(../fonts/Raleway-Light.ttf) format('truetype'), url(../fonts/Raleway-Light.eot) format('eot'), url(../fonts/Raleway-Light.woff) format('woff'), url(../fonts/Raleway-Light.woff2) format('woff2');
}
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;
  padding: 0;
  --color: #68c3cd;
  --yellow: #fccf1b;
  font-family: 'Poppins-Regular';
  --font: 'Poppins-SemiBold';
  background-color: #fff;
  max-width: 1920px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1430px;
  margin: 0 auto;
  position: relative;
}
#header.active {
  background-color: #000;
  top: 0;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 40px;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: transparent;
}
#header .nav {
  position: relative;
  padding-left: 60px;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 50px;
  font-size: 18px;
  color: #fff;
  -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;
  font-family: Poppins-Light;
}
#header .nav .ui.menu .menu-box ul.menu > li::before {
  content: "";
  display: block;
  position: absolute;
  width: 38px;
  height: 35px;
  background-color: var(--color);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(30% 0, 100% 0%, 70% 100%, 0% 100%);
  clip-path: polygon(30% 0, 100% 0%, 70% 100%, 0% 100%);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover::before {
  opacity: 1;
}
#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: 100%;
  left: -10px;
  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: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-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: 12px;
  -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;
}
#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 .header-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 .header-right .h-search {
  cursor: pointer;
}
#header .nav .header-right .h-inquiry {
  width: 220px;
  height: 65px;
  background-color: var(--color);
  color: white;
  -webkit-clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
  text-transform: uppercase;
  cursor: pointer;
}
.language-box {
  margin: 0 20px;
}
.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: 110px;
  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;
}
.home-title p {
  font-size: 24px;
  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;
  margin-bottom: 25px;
  color: rgba(0, 0, 0, 0.5);
}
.home-title p::before {
  content: "";
  display: block;
  width: 52px;
  height: 32px;
  background: url("../images/h-icon.png") no-repeat;
  margin-right: 15px;
}
.home-title h3 {
  font-family: 'MicrogrammaD-BoldExte';
  line-height: 1;
  font-size: 48px;
  text-transform: uppercase;
}
.home-title h3 span {
  color: var(--color);
}
.btn-go {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 240px;
  height: 65px;
  -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;
  background-color: white;
  -webkit-clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  position: relative;
  overflow: hidden;
}
.btn-go:hover::before {
  left: 0;
}
.btn-go:hover span,
.btn-go:hover i {
  color: white;
}
.btn-go::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color);
  position: absolute;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  left: 83%;
  top: 0;
  -webkit-clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}
.btn-go span {
  font-size: 18px;
  margin-right: 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  z-index: 2;
  color: var(--color);
}
.btn-go i {
  font-size: 20px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  color: var(--color);
}
.text-h:hover {
  color: var(--color);
}
.text-color {
  color: var(--color);
}
.text-family {
  font-family: var(--font);
}
@-webkit-keyframes bth-float {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes bth-float {
  0% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bth-float {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
.submit {
  width: 195px;
  height: 50px;
  background: var(--color);
  border-radius: 35px;
  border: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  text-align: center;
}
.submit input[type="submit"] {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: 'RanyBold';
  color: white;
  line-height: 55px;
  position: relative;
  z-index: 2;
  background-color: transparent;
  border: none;
}
.submit::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  right: 0;
  top: 0;
  -webkit-transform: translateX(-400px);
  -moz-transform: translateX(-400px);
  -ms-transform: translateX(-400px);
  transform: translateX(-400px);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.submit:hover::before {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .content {
  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%);
  color: white;
  z-index: 5;
}
#banner .banner-content ul li .content .box {
  position: relative;
  max-width: 1000px;
}
#banner .banner-content ul li .content .box .pro {
  position: absolute;
  right: -100px;
  bottom: -24%;
}
#banner .banner-content ul li .content h2 {
  font-size: 88px;
  font-family: 'MicrogrammaD-BoldExte';
  color: white;
  line-height: 0.9;
  margin-bottom: 140px;
  background-image: url("../images/text-bg.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#banner .banner-content ul .slick-dots {
  width: 205px;
  height: 90px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: white;
  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 .slick-dots li.slick-active {
  background-color: white;
  border: 2px solid var(--color);
}
#banner .banner-content ul .slick-dots li {
  margin-right: 35px;
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #bfbfbf;
  border: 2px solid transparent;
}
#banner .banner-content ul .slick-dots li:last-child {
  margin-right: 0;
}
#banner .banner-content ul .slick-dots li button {
  display: none;
}
@-webkit-keyframes img_fly {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(600px);
    transform: translateY(600px);
  }
}
@-moz-keyframes img_fly {
  0% {
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -moz-transform: translateY(600px);
    transform: translateY(600px);
  }
}
@keyframes img_fly {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(600px);
    -moz-transform: translateY(600px);
    transform: translateY(600px);
  }
}
@-webkit-keyframes img_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes img_rotate {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes img_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes img_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-moz-keyframes img_scale {
  0% {
    -moz-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
  }
  100% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes img_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    -moz-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
#index-body .category {
  padding: 165px 0 0;
  position: relative;
}
#index-body .category .category-title p {
  max-width: 450px;
}
#index-body .category .category-content {
  background: url("../images/category-cover-img.png") no-repeat;
  background-size: cover;
  margin-top: 90px;
}
#index-body .category .category-content ul {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -100px;
  justify-content: space-between;
}
#index-body .category .category-content ul li {
  width: 50%;
  height: 825px;
  position: relative;
  color: white;
  -webkit-transform: skew(-13deg);
  -moz-transform: skew(-13deg);
  -ms-transform: skew(-13deg);
  transform: skew(-13deg);
  background-color: transparent;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
#index-body .category .category-content ul li:last-child{
  -webkit-transform: skew(13deg);
  -moz-transform: skew(13deg);
  -ms-transform: skew(13deg);
  transform: skew(13deg);
}
#index-body .category .category-content ul li:hover {
  background-color: rgba(104, 195, 205, 0.8);
}
#index-body .category .category-content ul li:hover .pro_box {
  opacity: 0;
}
#index-body .category .category-content ul li:hover .img_box {
  -webkit-transform: translateX(50%) skew(13deg) rotateY(0deg);
  -moz-transform: translateX(50%) skew(13deg) rotateY(0deg);
  transform: translateX(50%) skew(13deg) rotateY(0deg);
}
#index-body .category .category-content ul li:hover .box {
  opacity: 1;
}
#index-body .category .category-content ul li:last-child .box{
  -webkit-transform: skew(-13deg);
  -moz-transform: skew(-13deg);
  -ms-transform: skew(-13deg);
  transform: skew(-13deg);
}
#index-body .category .category-content ul li:last-child .img_box {
    left: 0;
    right: unset;
    -webkit-transform: translateX(50%) skew(-13deg) rotateY(90deg);
    -moz-transform: translateX(50%) skew(-13deg) rotateY(90deg);
    transform: translateX(-50%) skew(-13deg) rotateY(-90deg);
    transform-origin: right;
}
#index-body .category .category-content ul li:last-child:hover .img_box {
    -webkit-transform: translateX(50%) skew(-13deg) rotateY(0deg);
    -moz-transform: translateX(50%) skew(-13deg) rotateY(0deg);
    transform: translateX(-50%) skew(-13deg) rotateY(0deg);
}
#index-body .category .category-content ul li .box {
  max-width: 400px;
  -webkit-transform: skew(13deg);
  -moz-transform: skew(13deg);
  -ms-transform: skew(13deg);
  transform: skew(13deg);
  margin-left: 150px;
  margin-top: 150px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#index-body .category .category-content ul li:last-child .box{
  margin-left: auto;
  margin-right: 150px;
}
#index-body .category .category-content ul li .box h4 {
  font-size: 48px;
  font-family: 'MicrogrammaD-BoldExte';
  line-height: 0.9;
  text-transform: uppercase;
}
#index-body .category .category-content ul li:last-child .box h4,
#index-body .category .category-content ul li:last-child .box p{
  text-align: right;
  margin-left: auto;
}
#index-body .category .category-content ul li .box p {
  font-size: 18px;
  margin: 20px 0 95px;
  max-width: 250px;
      display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#index-body .category .category-content ul li .box .category-btn {
  width: 60px;
  height: 65px;
  text-align: center;
  line-height: 65px;
  display: block;
  background-color: white;
  border: 1px solid transparent;
  -webkit-transform: skew(-13deg);
  -moz-transform: skew(-13deg);
  -ms-transform: skew(-13deg);
  transform: skew(-13deg);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .category-content ul li:last-child .box .category-btn{
  margin-left: auto;
}
#index-body .category .category-content ul li .box .category-btn:hover {
  border: 1px solid white;
  background-color: transparent;
}
#index-body .category .category-content ul li .box .category-btn:hover i {
  color: white;
}
#index-body .category .category-content ul li .box .category-btn i {
  font-size: 22px;
  color: var(--color);
  -webkit-transform: skew(13deg);
  -moz-transform: skew(13deg);
  -ms-transform: skew(13deg);
  transform: skew(13deg);
  display: block;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .category-content ul li .img_box {
  position: absolute;
  bottom: 95px;
  right: 0;
  -webkit-transform: translateX(50%) skew(13deg) rotateY(-90deg);
  -moz-transform: translateX(50%) skew(13deg) rotateY(-90deg);
  transform: translateX(50%) skew(13deg) rotateY(-90deg);
  -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;
}
#index-body .category .category-content ul li .pro_box {
  -webkit-transform: skew(13deg) translateX(-50%);
  -moz-transform: skew(13deg) translateX(-50%);
  -ms-transform: skew(13deg) translateX(-50%);
  transform: skew(13deg) translateX(-50%);
  bottom: 60px;
  position: absolute;
  left: 65%;
  width: 50%;
  text-align: center;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#index-body .category .category-content ul li:last-child .pro_box{
  -webkit-transform: skew(-13deg) translateX(50%);
  -moz-transform: skew(-13deg) translateX(50%);
  -ms-transform: skew(-13deg) translateX(50%);
  transform: skew(-13deg) translateX(50%);
  left:unset;
  right: 65%;
}
#index-body .category .category-content ul li .pro_box span {
  display: block;
  margin: 10px 0 -5px;
  font-family: Poppins-Light;
}
#index-body .category .category-content ul li .pro_box h4 {
  font-family: MicrogrammaD-BoldExte;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 10px;
}
#index-body .product {
  padding: 160px 0 150px;
  position: relative;
}
#index-body .product .pro-category {
  margin: 50px auto 75px;
}
#index-body .product .pro-category ul {
  margin: 0 -35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
#index-body .product .pro-category ul li {
  padding: 0 15px;
  width: 33.33333%;
  cursor: pointer;
}
#index-body .product .pro-category ul li:hover .box::before,
#index-body .product .pro-category ul li.active .box::before {
  opacity: 1;
}
#index-body .product .pro-category ul li .box {
  position: relative;
  height: 110px;
}
#index-body .product .pro-category ul li .box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) skew(-15deg);
  -moz-transform: translate(-50%, -50%) skew(-15deg);
  -ms-transform: translate(-50%, -50%) skew(-15deg);
  transform: translate(-50%, -50%) skew(-15deg);
  width: 100%;
  height: 110px;
  border: 1px solid var(--color);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content {
  width: 1610px;
  margin: 0 auto;
  position: relative;
}
#index-body .product .product-content ul li {
  position: relative;
  padding-top: 140px;
}
#index-body .product .product-content ul li:hover .box {
  background-color: transparent;
}
#index-body .product .product-content ul li:hover .box .bg {
  opacity: 1;
}
#index-body .product .product-content ul li:hover .box .title h4,
#index-body .product .product-content ul li:hover .box .title p {
  color: white;
}
#index-body .product .product-content ul li .img_box {
  max-width: 240px;
  position: absolute;
  left: 70px;
  top: 0;
  z-index: 5;
}
#index-body .product .product-content ul li .img_box img{
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,.4));
}
#index-body .product .product-content ul li .box {
  height: 410px;
  background-color: #f3f6f9;
  -webkit-clip-path: polygon(22% 0%, 100% 0%, 78% 100%, 0% 100%);
  clip-path: polygon(22% 0%, 100% 0%, 78% 100%, 0% 100%);
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#index-body .product .product-content ul li .box .bg {
  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%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
      height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#index-body .product .product-content ul li .box .title {
  margin-bottom: 30px;
  text-align: left;
  margin-left: 65px;
  position: relative;
  z-index: 10;
}
#index-body .product .product-content ul li .box .title h4 {
  color: #707070;
  font-family: var(--font);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  max-width: 220px;
  font-size: 24px;
  line-height: 1.3;
}
#index-body .product .product-content ul li .box .title p {
  color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
/*#index-body .product .pro-btn {
  margin-top: 75px;
  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;
}*/
#index-body .product .slick-arrow {
  display: block !important;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
}
#index-body .product .slick-arrow.prev{
  left:-40px;
}
#index-body .product .slick-arrow.next{
  right:-40px;
}
#index-body .product .slick-arrow:hover::before {
  background-color: var(--color);
}
#index-body .product .slick-arrow:hover i {
  color: white;
}
#index-body .product .slick-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) skew(-15deg);
  -moz-transform: translate(-50%, -50%) skew(-15deg);
  -ms-transform: translate(-50%, -50%) skew(-15deg);
  transform: translate(-50%, -50%) skew(-15deg);
  width: 55px;
  height: 65px;
  border: 1px solid var(--color);
  background-color: transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .slick-arrow i {
  color: var(--color);
  font-size: 20px;
  position: relative;
  z-index: 10;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .about {
  height: 940px;
  position: relative;
  background: url("../images/about-bg.jpg") no-repeat center right;
  background-size: cover;
  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;
}
#index-body .about .img_box {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 15;
  overflow: hidden;
  width: 50%;
  height: 100%;
  background-color: black;
}
#index-body .about .img_box video{
  width: 100%;
  height: 100%;
}
#index-body .about .img_box .player {
  position: absolute;
  left: 41%;
  top: 54.5%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index-body .about .img_box .player .play {
  position: relative;
  width: 200px;
  height: 200px;
  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;
}
#index-body .about .img_box .player .play img {
  position: relative;
  z-index: 10;
}
#index-body .about .img_box .player .play::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(125, 202, 205, 0.8);
  z-index: 2;
  -webkit-animation: img_scale 1s infinite linear;
  -moz-animation: img_scale 1s infinite linear;
  animation: img_scale 1s infinite linear;
}
#index-body .about .img_box .player .play::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(125, 202, 205, 0.4);
  z-index: 1;
  -webkit-animation: img_scale 1s infinite linear;
  -moz-animation: img_scale 1s infinite linear;
  animation: img_scale 1s infinite linear;
}
#index-body .about .about-content .right {
  max-width: 560px;
  margin-left: auto;
  color: white;
}
#index-body .about .about-content .right .home-title h3,
#index-body .about .about-content .right .home-title p {
  color: white;
}
#index-body .about .about-content .right .text {
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: Poppins-Light;
  line-height: 30px;
  margin: 65px 0 70px;
}
#index-body .about .about-content .right ul {
  margin: 0 0 0 -35px;
  -webkit-transform: translateX(35px);
  -moz-transform: translateX(35px);
  -ms-transform: translateX(35px);
  transform: translateX(35px);
}
#index-body .about .about-content .right ul li{
  text-align: center;
}
#index-body .about .about-content .right ul li h4 {
  font-size: 36px;
  font-family: MicrogrammaD-BoldExte;
  margin-bottom: 5px;
}
#index-body .about .about-content .right ul li span {
  font-size: 12px;
  font-family: Rany-Light;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 4px;
}
#index-body .i-equipment{
  padding: 100px 0 0;
}

#index-body .i-equipment ul {
  margin:50px -15px 0;
  position: relative;
}
#index-body .i-equipment ul li {
  padding: 15px;
}


#index-body .i-equipment .slick-arrow {
  display: block !important;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
}
#index-body .i-equipment .slick-arrow.prev{
  left:-70px;
}
#index-body .i-equipment .slick-arrow.next{
  right:-70px;
}
#index-body .i-equipment .slick-arrow:hover::before {
  background-color: var(--color);
}
#index-body .i-equipment .slick-arrow:hover i {
  color: white;
}
#index-body .i-equipment .slick-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) skew(-15deg);
  -moz-transform: translate(-50%, -50%) skew(-15deg);
  -ms-transform: translate(-50%, -50%) skew(-15deg);
  transform: translate(-50%, -50%) skew(-15deg);
  width: 55px;
  height: 65px;
  border: 1px solid var(--color);
  background-color: transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .i-equipment .slick-arrow i {
  color: var(--color);
  font-size: 20px;
  position: relative;
  z-index: 10;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

#index-body .i-application{
  padding: 100px 0;
}
#index-body .i-application ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin:50px -13px 0;
}
#index-body .i-application ul li {
  padding: 13px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1;
  -moz-box-flex: 0;
  -ms-flex: 0 0 1;
  flex: 0 0 1;
  width: 45%;
  -webkit-transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  overflow: hidden;
}
#index-body .i-application ul li .box {
  position: relative;
  height: 664px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
}
#index-body .i-application ul li .box .img_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  -webkit-transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
#index-body .i-application ul li .box .img_box img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.06) translateZ(0);
  -moz-transform: scale(1.06) translateZ(0);
  transform: scale(1.06) translateZ(0);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -moz-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -moz-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
#index-body .i-application ul li .box .content {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  padding: 0 25px;
}
#index-body .i-application ul li .box .content .h5 {
  font-size: 18px;
  line-height: 32px;
  font-family: var(--font);
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  top: 10px;
  opacity: 0;
}
#index-body .i-application ul li .box .content .title {
  display: block;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  top: 10px;
  opacity: 0;
  left: 10px;
}
#index-body .i-application ul li .box .content .mores {
  font-size: 20px;
  line-height: 36px;
  font-weight: bold;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  top: 10px;
  opacity: 0;
}
#index-body .i-application ul li .box .content .mores::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: black;
}
#index-body .i-application ul li .box .content .mores:hover{
  color: var(--color);
}
#index-body .i-application ul li .box .content .mores:hover::after{
  background: var(--color);
}
/*#index-body .i-application ul li.active {
  width: 100% !important;
}*/
#index-body .i-application ul li{
  width: 17% !important;
}
#index-body .i-application ul li.active{
  width: 49% !important;
}
#index-body .i-application ul li.active .img_box {
  height: 510px;
}
#index-body .i-application ul li.active .img_box img {
  -webkit-transform: scale(1) translateZ(0);
  -moz-transform: scale(1) translateZ(0);
  transform: scale(1) translateZ(0);
}
#index-body .i-application ul li.active .content {
  opacity: 1;
}
#index-body .i-application ul li.active .content .h5 {
  top: 0;
  opacity: 1;
  -webkit-transition-delay: 0.1;
  -moz-transition-delay: 0.1;
  transition-delay: 0.1;
}
#index-body .i-application ul li.active .content .title {
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  color: var(--color);
}
#index-body .i-application ul li.active .content .mores {
  top: 0;
  opacity: 1;
}
#index-body .advantage {
  width: 100%;
  height: 1215px;
  padding-top: 160px;
  position: relative;
  background: url("../images/adv-bg.jpg") no-repeat top center;
}
#index-body .advantage .center {
  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%);
}
#index-body .advantage .advantage-content {
  background: url("../images/adv-center.png") no-repeat 45% center;
}
#index-body .advantage .advantage-content ul {
  margin-top: 90px;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .advantage .advantage-content ul li {
  width: 50%;
  margin-bottom: 80px;
}
#index-body .advantage .advantage-content ul li:nth-child(even) .box {
  max-width: 380px;
  margin-left: auto;
}
#index-body .advantage .advantage-content ul li:nth-child(n + 5) {
  margin-bottom: 0;
}
#index-body .advantage .advantage-content ul li .box {
  max-width: 390px;
}
#index-body .advantage .advantage-content ul li .box .title {
  margin-bottom: 25px;
}
#index-body .advantage .advantage-content ul li .box .title h4 {
  font-size: 25px;
  font-family: MicrogrammaD-BoldExte;
  color: #474747;
  text-transform: uppercase;
  margin-left: 15px;
}
#index-body .advantage .advantage-content ul li .box p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.6);
}
#index-body .news .home-title h3 {
  font-family: var(--font);
}
#index-body .news .home-title h3,
#index-body .news .home-title p {
  text-transform: uppercase;
}
#index-body .news .news-content {
  margin-top: 100px;
}
#index-body .news .news-content ul {
  margin: 0 -55px;
}
#index-body .news .news-content ul li {
  padding: 0 55px;
}
#index-body .news .news-content ul li .box .date {
  border-bottom: 4px solid var(--color);
  padding-bottom: 10px;
}
#index-body .news .news-content ul li .box h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .news .news-content ul li .box p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 20px 0 40px;
}
#index-body .userinfo {
  height: 400px;
  background: url("../images/userinfo-bg.jpg") no-repeat;
  background-size: cover;
  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;
}
#index-body .userinfo form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .userinfo form input[type='text'] {
  width: -webkit-calc((100% - 740px)/3);
  width: -moz-calc((100% - 740px)/3);
  width: calc((100% - 740px)/3);
  height: 70px;
  border-radius: 10px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  margin-right: 10px;
  padding: 0 20px;
  font-family: Poppins-Light;
}
#index-body .userinfo form input::-webkit-input-placeholder {
  color: white;
}
#index-body .userinfo form input::-moz-placeholder {
  color: white;
}
#index-body .userinfo form input:-moz-placeholder {
  color: white;
}
#index-body .userinfo form input:-ms-input-placeholder {
  color: white;
}
#index-body .userinfo form input[name='content'] {
  width: 510px;
  margin-right: 20px;
}
#index-body .userinfo form input[type='submit'] {
  width: 210px;
  height: 70px;
  border-radius: 20px;
  background-color: white;
  color: var(--color);
  text-transform: uppercase;
  font-size: 28px;
  font-family: var(--font);
  border: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .userinfo form input[type='submit']:hover {
  color: white;
  border: 1px solid white;
  background-color: transparent;
}
#footer {
  position: relative;
  background: url("../images/footer-bg.jpg") no-repeat;
  background-size: cover;
}
#footer .footer-t {
  padding: 90px 15px 50px;
}
#footer .footer-t > ul li.logo {
  max-width: 410px;
}
#footer .footer-t > ul li.logo p {
  font-size: 16px;
  line-height: 30px;
}
#footer .footer-t > ul li.link span:hover {
  color: var(--color);
}
#footer .footer-t > ul li {
  color: white;
}
#footer .footer-t > ul li .box #ewm img,
#footer .footer-t > ul li .box #ewm canvas {
  width: 165px;
  height: auto;
  border: 8px solid #fff;
}
#footer .footer-t > ul li .box .line {
  width: 185px;
  height: 1px;
  background-color: #636363;
  position: relative;
  margin: 30px 0;
}
#footer .footer-t > ul li .box .line:before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#footer .footer-t > ul li .box h4 {
  font-size: 20px;
  font-family: var(--font);
  text-transform: uppercase;
  color: white;
}
#footer .footer-t > ul li .box span {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.2;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  transition: color 0.5s;
  color: rgba(255, 255, 255, 0.4);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-family: Poppins-Light;
}
#footer .footer-t > ul li .box span:last-child {
  margin-bottom: 0px;
}
#footer .footer-t .f-contact ul {
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -15px;
}
#footer .footer-t .f-contact ul li {
  padding: 0 15px;
  width: 25%;
}
#footer .footer-t .f-contact ul li .box {
  width: 100%;
  height: 145px;
  background-size: 100% 100%;
  background: url("../images/conatct-border.jpg") no-repeat 1px center;
  padding: 30px 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: white;
  position: relative;
}
#footer .footer-t .f-contact ul li .box .small-icon {
  position: relative;
  z-index: 5;
}
#footer .footer-t .f-contact ul li .box .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#footer .footer-t .f-contact ul li .box h4 {
  font-size: 16px;
  font-family: MicrogrammaD-BoldExte;
  text-transform: uppercase;
}
#footer .footer-t .f-contact ul li .box .text {
  font-size: 16px;
  font-family: Poppins-Light;
  max-width: 235px;
  margin-left: 20px;
  position: relative;
  z-index: 5;
}
#footer .footer-t .f-contact ul li .box .text p {
  line-height: 1.5;
  font-size: 14px;
}
#footer .footer-b {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .footer-b .footer-b-box {
  height: 105px;
}
#footer .footer-b .footer-b-box span {
  display: block;
  font-size: 15px;
  color: white;
  text-transform: uppercase;
}
#footer .footer-b .footer-b-box img {
  width: 260px;
  height: auto;
  padding-top: 4px;
  margin-left: 3px;
}
#footer .footer-b .footer-b-box .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .footer-b .footer-b-box .share a {
  width: 50px;
  height: 50px;
  display: block;
  background-color: transparent;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid #484848;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  text-align: center;
  line-height: 50px;
}
#footer .footer-b .footer-b-box .share a:last-child {
  margin-right: 0;
}
#footer .footer-b .footer-b-box .share a i {
  font-size: 20px;
  color: #484848;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-b .footer-b-box .share a:hover {
  background-color: var(--color);
  border: 1px solid var(--color);
}
#footer .footer-b .footer-b-box .share a:hover i {
  color: white;
}
@media (max-width: 1900px) {
  #index-body .category .category-content ul li .img_box {
    max-width: 70%;
  }
}
@media (max-width: 1770px) {
  #index-body .product .product-content{
    width:85%;
  }
  #index-body .product .product-content ul li .box .title h4 {
    font-size: 24px;
  }
  #index-body .i-equipment .wraper{
    width: 85%;
  }
  #index-body .i-equipment .slick-arrow::before {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  #index-body .product .product-content ul li .box .title h4 {
    font-size: 24px;
  }
  #banner .banner-content ul li .content .box .pro {
    bottom: -10%;
    max-width: 60%;
  }
  
  #index-body .product .pro-category ul {
    margin: 0 -15px;
  }
  #index-body .product .pro-category ul li {
    padding: 0 15px;
  }

  #index-body .product .product-content ul li .img_box {
    max-width: 80%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
  }
  #index-body .about .about-content .right ul {
    margin: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
  }
    #index-body .i-application ul li .box {
    height: 570px;
  }

  #index-body .i-application ul li.active .img_box {
    height: 420px;
  }

  #index-body .i-application ul li .box .content .title {
    font-size: 26px;
  }
}
@media (max-width: 1400px) {
  .ui.container{
    width: 1200px;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 60px;
    margin-bottom: 60px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 30px;
  }
  #banner .banner-content ul li .content .box .pro {
    bottom: -35%;
    max-width: 60%;
    right: 30px;
  }

  #index-body .category .category-content ul li .pro_box {
    width: 100%;
  }
  #index-body .category .category-content ul li .box h4 {
    font-size: 50px;
  }
  #index-body .about .about-content .right {
    max-width: 45%;
  }
  #index-body .product .pro-category ul li .box {
    padding: 0 30px;
  }
  #index-body .product .pro-category ul li .box h4 {
    font-size: 24px;
  }
  #index-body .about .about-content .right .text {
    margin: 35px 0;
  }
  #index-body .about {
    height: auto;
    padding: 80px 15px;
  }
  #index-body .advantage .advantage-content {
    background-size: 45%;
  }
  #index-body .advantage {
    height: auto;
    padding: 100px 0;
  }
  #index-body .advantage .advantage-content ul li .box p {
    font-size: 16px;
  }
  #index-body .advantage .advantage-content ul li .box .title img {
    max-width: 55px;
  }
  #footer .footer-t > ul li.logo {
    max-width: 280px;
  }
  
  #index-body .i-application ul li .box {
    height: 530px;
  }

  #index-body .i-application ul li.active .img_box {
    height: 380px;
  }
    #index-body .product .slick-arrow{
    display: block !important;
  }
  #index-body .product .product-content ul li .box .title h4 {
    font-size: 20px;
    max-width: 180px;
  }
  #footer .footer-t .f-contact ul li {
    width: 22%;
  }
  #footer .footer-t .f-contact ul li:first-child {
    width: 34%;
  }
  #footer .footer-t .f-contact ul li .box .text {
    font-size: 14px;
  }
  #footer .footer-t .f-contact ul li:first-child .box .text {
    max-width: calc(100% - 70px);
  }
  #footer .footer-t .f-contact ul li .box .text p {
    line-height: 1.6;
    margin-top: 5px;
  }
  #index-body .i-equipment .slick-arrow.prev {
    left: -50px;
  }
  #index-body .i-equipment .slick-arrow.next {
    right: -50px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #index-body .product .slick-arrow i {
    font-size: 16px;
  }
  #index-body .product .slick-arrow::before {
    width: 45px;
    height: 45px;
  }

  #index-body .product .slick-arrow::before {
    width: 45px;
    height: 45px;
  }
  #banner .banner-content ul li .content .box .pro {
    display: none;
  }
  #index-body .category {
    padding: 75px 0 0;
  }
  .home-title h3 {
    font-size: 30px;
  }
  #index-body .category .category-content ul li {
    height: 550px;
  }
  #index-body .category .category-content ul li .box h4 {
    font-size: 35px;
  }
  #index-body .category .category-content ul li .box p {
    font-size: 18px;
    margin: 20px 0 55px;
  }
  #index-body .category .category-content ul li .box {
    margin-top: 50px;
  }
  #index-body .category .category-content ul li .img_box {
    bottom: 65px;
  }
  #index-body .product .pro-category ul li .box h4 {
    font-size: 20px;
    line-height: 1.2;
  }
  #index-body .product .pro-category ul li .box img {
    max-width: 35px;
  }
  #index-body .product .pro-category ul li .box::before {
    height: 80px;
  }
  #index-body .product .product-content ul li .box {
    height: 340px;
  }
  #index-body .product .product-content ul li .box .title {
    margin-left: 45px;
  }
  #index-body .product .pro-category {
    margin: 50px auto;
  }
  #index-body .product {
    padding: 100px 0;
  }
  #index-body .about .img_box {
    position: relative;
    max-width: 100%;
    width: 100%;
  }
  #index-body .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  #index-body .about .about-content .right {
    max-width: 100%;
    margin: 0 auto 60px;
  }
  #index-body .about {
    padding: 80px 0;
  }
  #index-body .about .img_box {
    height: auto;
  }
  #index-body .about .img_box .player {
    position: absolute;
    left: 50%;
    top: 50%;
  }
  #index-body .advantage .advantage-content {
    background-size: 30%;
  }
  #index-body .userinfo form input[type='text'] {
    width: -webkit-calc((100% - 230px)/4);
    width: -moz-calc((100% - 230px)/4);
    width: calc((100% - 230px)/4);
  }
  #footer .footer-t > ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #footer .footer-t > ul li {
    margin-right: 30px;
    max-width: 30%;
    width: 30%;
    margin-bottom: 60px;
  }
  #footer .footer-t > ul li.logo img {
    max-width: 200px;
  }
  #footer .footer-t .f-contact ul li {
    width: 49% !important;
    margin: 15px 0;
  }
  #footer .footer-t .f-contact ul li .box {
    background-size: 100%;
    background-position: 2px;
  }
  #header .nav {
    padding-left: 20px;
  }
  #header .nav .header-right .h-inquiry {
    width: 200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 20px;
    font-size: 16px;
  }
  #header .nav .logo {
    max-width: 150px;
  }
  #header {
    top: 0;
  }
  #index-body .i-application ul li .box .content .title {
    font-size: 22px;
    line-height: 40px;
  }
  #index-body .about {
    padding: 80px 0 0;
  }
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block !important;
  }
  .ui.container,
  #index-body .product .product-content {
    width: 700px;
  }
  #index-body .category .category-title p {
    max-width: 100%;
    margin-top: 0;
  }
  #index-body .i-equipment .prev,
  #index-body .i-equipment .next{
    display: none;
  }
  #index-body .category .category-content ul li .pro_box {
    width: 60%;
  }
  #index-body .category .home-title {
    margin-bottom: 60px;
  }
  #index-body .product .pro-category ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .product .pro-category ul li {
    width: 50%;
    margin: 15px 0;
  }
  #index-body .advantage .advantage-content {
    background: none;
  }
  #index-body .advantage .advantage-content ul li {
    width: 45%;
  }
  #index-body .advantage .advantage-content ul li .box .title h4 {
    font-size: 20px;
  }
  #index-body .userinfo form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .userinfo form input[type='text'] {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #index-body .userinfo {
    height: auto;
    padding: 80px 0 ;
  }
  #footer .footer-t > ul li.link {
    display: none;
  }
  #footer .footer-t > ul li.logo {
    max-width: 50%;
    width: 50%;
  }
  #footer .footer-b .footer-b-box {
    height: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 15px;
  }
  #footer .footer-b .footer-b-box span {
    margin-bottom: 10px;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }
    #index-body .i-application ul li .box {
    height: 400px;
  }

  #index-body .i-application ul li.active .img_box {
    height: 240px;
  }

  #index-body .i-application ul li .box .content .mores {
    font-size: 16px;
  }
  #footer .footer-t .f-contact ul li .box .text {
    font-size: 12px;
  }
  #footer .footer-t .f-contact ul li:first-child .box .text {
    max-width: calc(100% - 30px);
  }
}
@media (max-width: 700px) {
  .ui.container,
  #index-body .product .product-content{
    width: 500px;
  }
  #index-body .category .category-content ul li:last-child .box h4, 
  #index-body .category .category-content ul li:last-child .box p{
    text-align: center;
    margin: 0;
  }
  #index-body .category .category-content ul li:last-child .box .category-btn {
    margin: 0 auto;
  }
  #index-body .category .category-content ul li .box p {
    margin: 20px 0 !important;
    width: 100%;
    max-width: 100%;
  }
  #index-body .category .category-content ul li:last-child .pro_box {
    transform: translateX(50%);
    right: 50%;
  }
  #index-body .category .category-content ul li:last-child .pro_box img{
    margin: 0 auto;
  }
  #index-body .category .category-content ul li:last-child .box {
    margin-left: auto;
    margin-right: auto;
  }
  #index-body .category .category-content ul li .box,
  #index-body .category .category-content ul li{
    transform: unset !important;
  }
  #index-body .category .category-content ul li .img_box {
    display: none;
  }
  #index-body .product .pro-category ul li {
    width: 100%;
  }
  #index-body .advantage {
    display: none;
  }
  #footer .footer-t .f-contact {
    margin-bottom: 0;
  }
  #footer .footer-t .f-contact ul {
    margin-top: 0;
  }
  #footer .footer-t .f-contact ul li {
    width: 100% !important;
    max-width: 100%;
  }
  #footer .footer-t .f-contact ul li .box .text {
    font-size: 15px;
  }
  #footer .footer-t > ul li.logo {
    max-width: 50%;
    width: 50%;
    margin-bottom: 0;
  }
  #footer .footer-b .footer-b-box span {
    text-align: center;
  }
    #index-body .i-application ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #index-body .i-application ul li.active,
  #index-body .i-application ul li {
    width: 100% !important;
  }

  #index-body .i-application ul li .box {
    height: auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #index-body .i-application ul li .box .img_box {
    position: relative;
    width: 100%;
  }

  #index-body .i-application ul li .img_box,
  #index-body .i-application ul li.active .img_box {
    height: auto;
    position: relative;
    width: 100%;
  }

  #index-body .i-application ul li .content {
    width: 100%;
  }

  #index-body .i-application ul li .box .content {
    opacity: 1;
    margin-top: 20px;
  }

  #index-body .i-application ul li .box .content .h5,
  #index-body .i-application ul li .box .content .title,
  #index-body .i-application ul li .box .content .mores {
    opacity: 1;
    top: 0;
    left: 0;
  }
  
}
@media (max-width: 500px) {
  .ui.container,
  #index-body .product .product-content {
    width: 100%;
  }
  #index-body .category .category-content ul li .box{
    padding: 0 60px;
  }
  #banner .banner-content ul li .content .box .btn-go {
    display: none;
  }
  #index-body .about .about-content .right ul {
    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;
  }
  #index-body .about .about-content .right ul li {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  #footer .footer-t > ul li,
  #footer .footer-t > ul li.logo {
    max-width: 100%;
    width: 100%;
  }
  #banner .banner-content ul li .content p {
    display: none;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 25px;
    margin-bottom: 0;
  }
}






.more_btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.more_btn .more {
    position: relative;
    font-size: 18px;
    font-weight: 300;
    color: #000;
    padding: 0 30px;
    overflow: hidden;
    height: 55px;
    line-height: 55px;
    border-radius: 27px;
    border: 1px solid #000;
    display: inline-block
}

.more_btn .more span {
    position: relative;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    display: block
}

.more_btn .more:after {
    content: attr(data-text);
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: inherit;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px)
}

.more_btn .arrow {
    background-color: #000;
    display: inline-block;
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    margin-left: -20px;
    z-index: 2;
    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
}

.more_btn .arrow img {
    vertical-align: middle;
    -webkit-filter: invert(1);
    filter: invert(1);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.more_btn:hover span {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0
}

.more_btn:hover .more:after {
    top: 0;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.more_btn:hover .arrow {
    background-color: var(--color)
}

.more_btn:hover .arrow img {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.i-tag {
  font-size: 20px;
  font-weight: 600;
  color: #68c3cd;
}
.i-tag i {
  display: inline-block;
  vertical-align: middle;
  background-color: #68c3cd;
  width: 40px;
  height: 1px;
  margin-right: 20px;
}
.i-title {
  line-height: 1.1;
}

.inner-banner {
  position: relative;
}
.inner-banner .ui.container {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.inner-banner .ui.container h2 {
  font-size: 30px;
  line-height: 1.2;
  font-family: 'Poppins-SemiBold';
  color: white;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.inner-banner .ui.container .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 25px 0 45px;
}
.inner-banner .ui.container .box .mbx {
  font-size: 18px;
  color: white;
}
.inner-banner .ui.container .box .mbx a {
  position: relative;
  padding-right: 15px;
}
.inner-banner .ui.container .box .mbx a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--color);
}
.inner-banner .ui.container .box .more_btn .more {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}
.inner-banner .ui.container .box .more_btn .arrow {
  background: var(--color);
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.about-page .about-1 {
  padding-top: 110px;
}
.about-page .about-1 .top {
  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;
  padding-left: 100px;
}
.about-page .about-1 .top .i-title {
  margin-left: 40px;
}
.about-page .about-1 .box {
  position: relative;
  background: -webkit-gradient(linear, right top, left top, color-stop(66%, #fafafa), color-stop(66%, transparent));
  background: -webkit-linear-gradient(right, #fafafa 66%, transparent 66% 100%);
  background: -moz-linear-gradient(right, #fafafa 66%, transparent 66% 100%);
  background: linear-gradient(to left, #fafafa 66%, transparent 66% 100%);
  padding: 100px 0;
  margin-top: 65px;
}
.about-page .about-1 .box ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
}
.about-page .about-1 .box ul li {
  width: 30%;
  background: #1a1a1a;
  margin: 0 10px;
  color: white;
  padding: 25px 20px 60px;
}
.about-page .about-1 .box ul li .h3 {
  font-size: 20px;
  font-family: 'Poppins-SemiBold';
  line-height: 1;
  margin: 34px 0 3px;
}
.about-page .about-1 .box ul li .h3 em {
  font-size: 49px;
}
.about-page .about-1 .box ul li p {
  font-size: 16px;
}
.about-page .about-1 .box ul li:first-child {
  background: var(--color);
}
.about-page .about-1 .box .play {
  width: 165px;
  height: 165px;
  border-radius: 100%;
  text-align: center;
  line-height: 165px;
  position: relative;
  cursor: pointer;
  position: absolute;
  right: 250px;
  top: -110px;
}
.about-page .about-1 .box .play img {
  vertical-align: middle;
}
.about-page .about-1 .box .play::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/about-page-circle.png) no-repeat;
  -webkit-animation: 20s 0.3s rotate linear infinite;
  -moz-animation: 20s 0.3s rotate linear infinite;
  animation: 20s 0.3s rotate linear infinite;
}
.about-page .about-1 .box .wrap .left {
  width: 40%;
}
.about-page .about-1 .box .wrap .right {
  width: 60%;
  padding-left: 50px;
  padding-right: 260px;
}
.about-page .about-1 .box .wrap .right .content {
  font-size: 18px;
  line-height: 30px;
  opacity: 0.73;
}
.about-page .about-2 {
  background: url(../images/factory-bg.jpg) center;
  background-size: cover;
  color: white;
  padding-top: 130px;
  padding-bottom: 80px;
}
.about-page .about-2 .top {
  position: relative;
  margin-bottom: 80px;
}
.about-page .about-2 .top .i-tag {
  padding-top: 20px;
}
.about-page .about-2 .top .i-title {
  width: 45%;
  margin-left: 40px;
}
.about-page .about-2 .top .more_btn {
  position: absolute;
  right: 0;
}
.about-page .about-2 .top .more_btn .arrow {
  background: white;
}
.about-page .about-2 .top .more_btn .arrow img {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.about-page .about-2 .top .more_btn .more {
  border-color: white;
  color: white;
}
.about-page .about-2 .list {
  padding-left: 230px;
}
.about-page .about-2 .list ul {
  margin: -11px;
}
.about-page .about-2 .list ul .slick-list {
  padding-right: 30%;
}
.about-page .about-2 .list ul li {
  padding: 11px;
}
.about-page .about-2 .list ul li .box {
  position: relative;
  border-bottom: 2px solid var(--color);
}
.about-page .about-2 .list ul li .box .h4 {
  font-size: 24px;
  line-height: 1;
  font-family: 'Poppins-SemiBold';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 80px 20px 10px;
}
.about-page .about-2 .list ul li .box .arrow {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  border-radius: 100%;
  display: inline-block;
  background: white;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.about-page .about-2 .list ul li .box .arrow img {
  vertical-align: middle;
  display: inline-block;
}
.about-page .about-2 .list .btn {
  margin-top: 20px;
}
.about-page .about-2 .list .btn span {
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  background: white;
  margin-right: 15px;
  cursor: pointer;
}
.about-page .about-2 .list .btn span img {
  vertical-align: middle;
}
.about-page .about-2 .list .btn span.prev img {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.about-page .about-2 .list .btn span.next img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.about-page #index-body .i-advantage {
  background: url(../images/about-page-3-bg.png) no-repeat right top;
}
.about-page #index-body .i-advantage.honor {
  background: white;
}
.about-page #index-body .i-advantage.honor .bg {
  height: 75%;
  width: 100%;
  top: 0;
  z-index: 0;
}
.about-page #index-body .i-advantage.honor .top {
  margin-bottom: 45px;
}
.about-page .about-3 {
  padding-bottom: 130px;
}
.about-page .about-3 .left {
  width: 20%;
  padding-top: 30px;
}
.about-page .about-3 .right {
  width: 80%;
}
.about-page .about-3 .right ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 30px 0;
  padding-right: 270px;
}
.about-page .about-3 .right ul li .h3 {
  font-size: 30px;
  font-family: 'Poppins-SemiBold';
  line-height: 1.2;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.about-page .about-3 .right ul li p {
  font-size: 16px;
  line-height: 25px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: #5e5e5e;
}
.about-page .about-3 .right ul li .time {
  font-size: 20px;
  background: var(--color);
  color: white;
  height: 40px;
  line-height: 44px;
  border-radius: 20px;
  position: absolute;
  right: 50px;
  top: 40px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding: 0 50px;
}
.about-page .about-3 .right ul li:first-child {
  padding-top: 0;
}
.about-page .about-3 .right ul li:hover .h3,
.about-page .about-3 .right ul li.active .h3 {
  font-size: 45px;
}
.about-page .about-3 .right ul li:hover p,
.about-page .about-3 .right ul li.active p {
  font-size: 20px;
}
.about-page .about-3 .right ul li:hover .time,
.about-page .about-3 .right ul li.active .time {
  opacity: 0;
}
.about-page .about-num {
  padding: 75px 0 90px;
}
.about-page .about-num ul {
  margin: -25px;
}
.about-page .about-num ul li {
  padding: 25px;
}
.about-page .about-num ul li p {
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 20px;
  margin-bottom: 17px;
}
.about-page .about-num ul li .h2 {
  font-size: 20px;
  font-family: 'Poppins-SemiBold';
  color: var(--color);
  line-height: 1;
}
.about-page .about-num ul li .h2 em {
  font-size: 50px;
}
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-moz-keyframes fade-in-left {
  0% {
    -moz-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-moz-keyframes fade-in-right {
  0% {
    -moz-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.product-yd-page {
  padding: 150px 0 120px;
}
.product-yd-page .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 120px;
}
.product-yd-page .item .content {
  width: 50%;
}
.product-yd-page .item .content .i-title {
  margin: 19px 0 13px;
}
.product-yd-page .item .content .txt {
  font-size: 20px;
  line-height: 25px;
  color: #5e5e5e;
  margin-bottom: 55px;
}
.product-yd-page .item .content ul {
  margin: -10px;
  margin-bottom: 70px;
}
.product-yd-page .item .content ul li {
  padding: 10px;
  text-align: center;
}
.product-yd-page .item .content ul li .img-box {
  position: relative;
}
.product-yd-page .item .content ul li .img-box img {
  max-width: 150px;
  margin: 30px auto 0;
}
.product-yd-page .item .content ul li .img-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #f6f6f6;
  z-index: -1;
}
.product-yd-page .item .content ul li h6 {
  font-size: 16px;
  line-height: 21px;
  margin-top: 20px;
}
.product-yd-page .item .content .more_btn .more::after {
  color: black;
}
.product-yd-page .item .img {
  width: 50%;
  position: relative;
}
.product-yd-page .item .img .small-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.product-yd-page .item:last-child {
  margin-bottom: 0;
}
.product-yd-page .item:nth-child(2n-1) .content {
  padding: 0 40px 0 260px;
}
.product-yd-page .item:nth-child(2n-1) .img .big-img img {
  margin-left: auto;
  display: block;
}
.product-yd-page .item:nth-child(2n-1) .img .small-img {
  left: 0;
}
.product-yd-page .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.product-yd-page .item:nth-child(2n) .content {
  padding: 0 260px 0 40px;
}
.product-yd-page .item:nth-child(2n) .img .big-img img {
  display: block;
}
.product-yd-page .item:nth-child(2n) .img .small-img {
  right: 0;
}
.m-page {
  text-align: center;
  margin-top: 50px;
}
.m-page a,
.m-page span {
  width: 50px;
  height: 50px;
  background: #dfdfdf;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: white;
  border-radius: 100%;
  display: inline-block;
  margin: 0 12px;
  cursor: pointer;
  line-height: 50px;
  font-size: 18px;
}
.m-page a:hover,
.m-page span {
  background: var(--color);
}
.product-page {
  padding-top: 100px;
}
.product-page .sideLeft {
  width: 30% !important;
}
.product-page .sideLeft .top {
  background: #292929;
  padding: 35px 0 50px;
  margin-bottom: 20px;
}
.product-page .sideLeft .top .form {
  padding: 0 15px;
}
.product-page .sideLeft .top .form form {
  position: relative;
  height: 70px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 5px;
}
.product-page .sideLeft .top .form input {
  width: 100%;
  height: 100%;
  background: transparent;
  color: white;
  font-size: 18px;
  border: none;
  padding: 0 20px;
}
.product-page .sideLeft .top .form input[type="submit"] {
  position: absolute;
  right: 5px;
  border-radius: 100%;
  width: 58px;
  height: 58px;
  background: url(../images/search.png) no-repeat center var(--color);
  padding: 0;
}
.product-page .sideLeft .top .nav .font-30 {
  color: white;
  line-height: 1.1;
  padding: 0 15px;
  margin: 30px 0;
}
.product-page .sideLeft .top .nav ul li > a {
  position: relative;
  padding: 15px 15px;
  color: white;
  font-size: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.product-page .sideLeft .top .nav ul li>a img{
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sideLeft .top .nav ul li >a img.active{
   -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.product-page .sideLeft .top .nav ul li > a::before {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 100%;
  border-left: 0px solid transparent;
  border-bottom: 0px solid #a48b00;
  border-right: 9px solid #a48b00;
  border-top: 9px solid transparent;
  opacity: 0;
}
.product-page .sideLeft .top .nav ul li > a::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 9px;
  height: 100%;
  background: var(--color);
  opacity: 0;
}
.product-page .sideLeft .top .nav ul li:hover > a,
.product-page .sideLeft .top .nav ul li.active > a {
  background: -webkit-gradient(linear, left top, right top, from(var(--color)), to(transparent));
  background: -webkit-linear-gradient(left, var(--color), transparent);
  background: -moz-linear-gradient(left, var(--color), transparent);
  background: linear-gradient(to right, var(--color), transparent);
}
.product-page .sideLeft .top .nav ul li:hover > a::before,
.product-page .sideLeft .top .nav ul li.active > a::before,
.product-page .sideLeft .top .nav ul li:hover > a::after,
.product-page .sideLeft .top .nav ul li.active > a::after {
  opacity: 1;
}
.product-page .sideLeft .top .nav ul li ul li a{
  font-size: 18px;
  padding-left: 30px;
}
.product-page .sideLeft .top .nav ul li ul li:nth-child(1) a::before{
  content: none;
}
.product-page .sideLeft .top .nav ul li.active > ul{
  display: block;
}
.product-page .sideLeft .bottom {
  background: url(../images/product-side-bg.jpg) no-repeat;
  background-size: cover;
  padding: 365px 15px 20px;
}
.product-page .sideLeft .bottom p {
  font-size: 19px;
  line-height: 24px;
  color: white;
  font-family: 'Poppins-SemiBold';
  text-align: center;
}
.product-page .sideRight {
  width: 70% !important;
  padding-left: 75px;
}
.product-page .sideRight .Auxil-catdes {
  line-height: 30px;
  opacity: 0.51;
  margin: 20px 0 45px;
}
.product-page .sideRight ul {
  margin: -10px;
}
.product-page .sideRight ul li {
  padding: 10px;
  text-align: center;
}
.product-page .sideRight ul li .img-box {
  border-radius: 10px;
  background: #f5f5f5;
  /*padding: 36px 50px;*/
}
.product-page .sideRight ul li p {
  font-size: 16px;
  line-height: 28px;
  color: #6d6d6d;
  margin: 15px 0 30px;
}
.prodet-page .prodet-1 {
  padding: 130px 0 80px;
}
.prodet-page .prodet-1 .left {
  width: 35%;
}
.prodet-page .prodet-1 .left a {
  background: #f5f5f5;
  border-radius: 10px;
  display: block;
  text-align: center;
  padding: 77px 50px;
}
.prodet-page .prodet-1 .right {
  width: 65%;
  padding-left: 48px;
  position: relative;
}
.prodet-page .prodet-1 .right h1{
  padding-right: 260px;
}
.prodet-page .prodet-1 .right .content {
  font-size: 18px;
  line-height: 30px;
  opacity: 0.51;
  margin: 25px 0 60px;
}
.prodet-page .prodet-1 .right .gallery {
  margin-bottom: 40px;
}
.prodet-page .prodet-1 .right .gallery ul {
  margin: -10px;
}
.prodet-page .prodet-1 .right .gallery ul .slick-track{
  margin-left: 0;
}
.prodet-page .prodet-1 .right .gallery ul li {
  padding: 10px;
}
.prodet-page .prodet-1 .right .gallery ul li a {
  border-radius: 10px;
  display: block;
  background: #f5f5f5;
  padding: 10px 20px;
}
.prodet-page .prodet-1 .right .gallery ul li a img {
  width: auto;
  margin: auto;
}
.prodet-page .prodet-1 .right .more_btn{
  position: absolute;
  right: 0;
  top: 0;
}
.prodet-page .prodet-1 .right .more_btn .more::after {
  color: black;
}
.prodet-page .prodet-2 ul.options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: #f6f6f6;
  height: 96px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.prodet-page .prodet-2 ul.options li {
  font-size: 18px;
  padding: 0 60px;
  height: 100%;
  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;
  border-radius: 0 0 50px 0;
  position: relative;
}
.prodet-page .prodet-2 ul.options li a {
  position: relative;
}
.prodet-page .prodet-2 ul.options li a::after {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--color);
}
.prodet-page .prodet-2 ul.options li.active {
  background: var(--color);
  color: white;
}
.prodet-page .prodet-2 ul.options li.active a::after {
  background: white;
}
.prodet-page .prodet-2 .box {
  padding: 70px 0;
}
.prodet-page .prodet-2 .box .content {
  font-size: 18px;
}

.prodet-page .prodet-2 .list {
  padding: 70px 0;
}
.prodet-page .prodet-2 .list ul {
  margin: -15px;
}
.prodet-page .prodet-2 .list ul li {
  padding: 15px;
  text-align: center;
}
.prodet-page .prodet-2 .list ul li .img-box {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 50px;
}
.prodet-page .prodet-2 .list ul li p {
  font-size: 18px;
  line-height: 2;
  margin-top: 15px;
  opacity: 0.51;
}
.w-100 {
  width: 100%;
}
.hose-page .hose-1 {
  padding-top: 160px;
}
.hose-page .hose-1 .left {
  width: 30%;
  padding-top: 20px;
}
.hose-page .hose-1 .right {
  width: 70%;
}
.hose-page .hose-1 .right .content {
  font-size: 18px;
  line-height: 26px;
  color: #5e5e5e;
  margin-top: 45px;
}
.hose-page .hose-2 {
  padding-top: 90px;
}
.hose-page .hose-2 .h2 {
  position: absolute;
  font-size: 60px;
  line-height: 1;
  left: 43px;
  bottom: -22px;
  z-index: 11;
}
.hose-page .hose-3 {
  padding-top: 150px;
  padding-bottom: 110px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, #f5f5f5), color-stop(35%, transparent));
  background: -webkit-linear-gradient(bottom, #f5f5f5 35%, transparent 35% 100%);
  background: -moz-linear-gradient(bottom, #f5f5f5 35%, transparent 35% 100%);
  background: linear-gradient(to top, #f5f5f5 35%, transparent 35% 100%);
}
.hose-page .hose-3 .left {
  width: 30%;
}
.hose-page .hose-3 .right {
  width: 70%;
}
.hose-page .hose-3 .right .txt {
  font-size: 18px;
  line-height: 26px;
  color: #5e5e5e;
  margin-bottom: 100px;
}
.hose-page .hose-3 ul {
  margin: -10px;
}
.hose-page .hose-3 ul li {
  padding: 10px;
}
.hose-page .hose-3 ul li .content {
  background: white;
  padding: 30px 30px 50px;
}
.hose-page .hose-3 ul li .content .des {
  font-size: 18px;
  line-height: 26px;
  color: #5e5e5e;
  margin-top: 10px;
}
.hose-page .hose-4 .left {
  vertical-align: middle;
}
.hose-page .hose-4 .right {
  padding: 0 260px 0 130px;
  vertical-align: middle;
}
.hose-page .hose-4 .right .i-title {
  margin: 18px 0 20px;
}
.hose-page .hose-4 .right .txt {
  font-size: 18px;
  line-height: 25px;
  color: #5e5e5e;
}
.hose-page .hose-4 .right ul li {
  border-top: 1px solid #eee;
  position: relative;
  padding-left: 112px;
  padding-top: 60px;
  padding-bottom: 47px;
}
.hose-page .hose-4 .right ul li .h5 {
  font-size: 30px;
  font-family: 'Poppins-SemiBold';
  line-height: 1.2;
}
.hose-page .hose-4 .right ul li p {
  font-size: 20px;
  line-height: 25px;
  color: #5e5e5e;
  margin-top: 12px;
}
.hose-page .hose-4 .right ul li:first-child {
  border-top: none;
}
.hose-page .hose-4 .right ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 92px;
  height: 100%;
  /*background: url(../images/icon.png) no-repeat left center;*/
}
.hose-page .hose-4 .right ul li:nth-child(1)::after{
  background: url(../images/a-a.png) no-repeat left center;
}
.hose-page .hose-4 .right ul li:nth-child(2)::after{
  background: url(../images/b-b.png) no-repeat left center;
}
.hose-page .hose-5 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(83%, #111111), color-stop(83%, white));
  background: -webkit-linear-gradient(top, #111111 83%, white 83% 100%);
  background: -moz-linear-gradient(top, #111111 83%, white 83% 100%);
  background: linear-gradient(to bottom, #111111 83%, white 83% 100%);
  padding-top: 110px;
}
.hose-page .hose-5 .top {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  margin-bottom: 65px;
}
.hose-page .hose-5 .top .i-tag {
  padding-top: 20px;
  margin-right: 40px;
}
.hose-page .hose-5 .top .more_btn {
  position: absolute;
  right: 0;
  top: 15px;
}
.hose-page .hose-5 .top .more_btn .more {
  border-color: white;
  color: white;
}
.hose-page .hose-5 .top .more_btn .arrow {
  background: white;
}
.hose-page .hose-5 .top .more_btn .arrow img {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.hose-page .hose-5 ul .slick-list {
  padding-bottom: 110px;
}
.hose-page .hose-5 ul li {
  position: relative;
}
.hose-page .hose-5 ul li .content {
  position: absolute;
  left: 0;
  top: 53%;
  width: 35%;
  border-bottom: 3px solid #fccf15;
  background: white;
  padding: 120px 45px 45px;
}
.hose-page .hose-5 ul li .content .h4 {
  font-size: 37px;
  line-height: 45px;
  font-family: 'Poppins-SemiBold';
  margin-bottom: 90px;
}
.hose-page .hose-5 ul li .content .more_btn .more::after {
  color: black;
}
.hose-page .hose-5 ul .slick-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
.hose-page .hose-5 ul .slick-dots li {
  width: 50%;
  margin: 0 10px;
  height: 1px;
  background: #acacac;
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.hose-page .hose-5 ul .slick-dots li button {
  position: absolute;
  left: 0;
  bottom: 5px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: 'Poppins-SemiBold';
  color: var(--color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.hose-page .hose-5 ul .slick-dots li.slick-active {
  background: var(--color);
}
.hose-page .hose-5 ul .slick-dots li.slick-active button {
  opacity: 1;
}
.hose-page .hose-6 {
  padding: 100px 0 200px;
  background: url(../images/hose-form-bg.png) no-repeat left bottom;
}
.hose-page .hose-6 .top {
  width: 50%;
  margin-bottom: 30px;
}
.hose-page .hose-6 .top .i-title {
  margin: 25px 0 12px;
}
.hose-page .hose-6 .top .txt {
  font-size: 20px;
  line-height: 25px;
  color: #5e5e5e;
}
.hose-page .hose-6 .form {
  padding-right: 310px;
  position: relative;
}
.hose-page .hose-6 .form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hose-page .hose-6 .form form input {
  width: 48%;
  font-size: 18px;
  margin-bottom: 20px;
  border: 1px solid #a6a6a6;
  background-color: transparent;
  height: 50px;
  padding: 0 20px;
}
.hose-page .hose-6 .form form input[name="content"] {
  width: 100%;
}
.hose-page .hose-6 .form form .more_btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hose-page .hose-6 .form form .more_btn .more::after {
  color: black;
}
.elementor-widget-container {
  margin: 80px 0 0;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline:before {
  content: "";
  width: 1px;
  height: -webkit-calc(100% - 5px);
  height: -moz-calc(100% - 5px);
  height: calc(100% - 5px);
  background-color: #dfe1e7;
  position: absolute;
  top: 5px;
  left: -webkit-calc(50% + 50px);
  left: -moz-calc(50% + 50px);
  left: calc(50% + 50px);
  bottom: 0;
  overflow: hidden;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.elementor-widget-rebuilto-scroll-timeline .timeline-content-image {
  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: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-basis: -webkit-calc(50% - 60px);
  -ms-flex-preferred-size: calc(50% - 60px);
  flex-basis: -moz-calc(50% - 60px);
  flex-basis: calc(50% - 60px);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-list {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item {
  padding: 0 0 37px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-image {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: -webkit-calc(50% - 60px);
  width: -moz-calc(50% - 60px);
  width: calc(50% - 60px);
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-image img {
  /*height: 100%;*/
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  opacity: 0;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  will-change: transform;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .scroll-timeline-image img,
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .scroll-timeline-info {
  opacity: 1;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-number {
  margin-right: 50px;
  margin-top: 5px;
}
.elementor-widget-rebuilto-scroll-timeline .timeline-number {
  height: 60px;
  line-height: 60px;
  width: 60px;
  -webkit-box-shadow: 0 0 0 1px #dfe1e7;
  box-shadow: 0 0 0 1px #dfe1e7;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  color: var(--text);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .timeline-number {
  -webkit-box-shadow: 0 0 0 1px var(--color);
  box-shadow: 0 0 0 1px var(--color);
}
.elementor-widget-rebuilto-scroll-timeline .timeline-number span {
  opacity: .2;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .timeline-number span {
  opacity: 1;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-info .scroll-timeline-desc {
  font-size: 16px;
  line-height: 26px;
  color: #5e5e5e;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .scroll-timeline-image img,
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .scroll-timeline-info {
  opacity: 1;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-subheading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text_light);
  margin-bottom: 7px;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-heading {
  font-size: 24px;
  font-family: 'Poppins-SemiBold';
  margin-bottom: 15px;
}
.elementor-widget-rebuilto-scroll-timeline .timeline-line {
  width: 1px;
  background-color: var(--color);
  position: absolute;
  top: 5px;
  left: -webkit-calc(50% + 50px);
  left: -moz-calc(50% + 50px);
  left: calc(50% + 50px);
  overflow: hidden;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item.timeline-active .scroll-timeline-image {
  -webkit-transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: auto;
  z-index: 4;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item.timeline-active .scroll-timeline-image * {
  opacity: 1;
  z-index: 10;
  -webkit-transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.elementor-widget-rebuilto-scroll-timeline .timeline-active .timeline-number {
  -webkit-box-shadow: 0 0 0 1px var(--color);
  box-shadow: 0 0 0 1px var(--color);
}
.contact-page .contact-2 ul {
  margin: 0 -70px;
  padding: 70px 0;
  border-radius: 0 0 50px 50px;
}
.contact-page .contact-2 ul li {
  padding: 0 70px;
  text-align: center;
}
.contact-page .contact-2 ul li .h4 {
  font-size: 30px;
  font-family: 'Poppins-SemiBold';
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.contact-page .contact-2 ul li p {
  font-size: 18px;
  line-height: 23px;
  padding-top: 26px;
}
.faq-page {
  padding: 100px 0;
}
.faq-page .left {
  width: 25% !important;
}
.faq-page .right {
  width: 75% !important;
}
.faq-page .right .i-title {
  margin-bottom: 60px;
}
.faq-page .right ul li {
  border: 1px solid #d5d8dc;
  padding: 20px;
  margin-bottom: 20px;
}
.faq-page .right ul li .h4 {
  font-size: 24px;
  font-family: 'Poppins-SemiBold';
  line-height: 1.5;
  position: relative;
}
.faq-page .right ul li .h4 span{
  width: calc(100% - 40px);
  display: block;
}
.faq-page .right ul li .h4 .fa {
  position: absolute;
  right: 0;
  top:50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.faq-page .right ul li .content {
  font-size: 18px;
  line-height: 28px;
  margin-top: 20px;
  display: none;
}
.news-page {
  padding: 100px 0;
}
.news-page ul {
  margin: -15px;
}
.news-page ul li {
  padding: 15px;
}
.news-page ul li .box {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 50px;
  border-radius: 12px;
}
.news-page ul li .box .time {
  font-size: 18px;
  opacity: 0.8;
}
.news-page ul li .box .h3 {
  font-size: 22px;
  font-family: 'Poppins-SemiBold';
  margin: 12px 0 20px;
 
}
.news-page ul li .box .content {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
.news-page ul li .box .more_btn .more::after {
  color: black;
}
.newdet-page {
  padding: 100px 0;
}
.newdet-page .newdet-1 {
  text-align: left;
}
.newdet-page .newdet-1 h1 {
  font-size: 45px;
  font-family: 'Poppins-SemiBold';
      line-height: 1.5;
}
.newdet-page .newdet-1 .time {
  font-size: 18px;
  opacity: 0.8;
  margin: 20px 0;
}
.newdet-page .newdet-1 .content {
  font-size: 18px;
  line-height: 34px;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 30px 0;
  text-align: left;
}

.newdet-page .newdet-1 .content p {
 margin-bottom: 15px;
}
.newdet-page .newdet-1 .m-link{
  text-align: left;
}
.gallery-page {
  padding: 100px 0;
}
.gallery-page ul{
  margin: -15px;
}
.gallery-page ul li{
  padding: 15px;
}
.gallery-page ul li p{
  font-size: 18px;
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 1600px) {
  .about-page .about-1 .box .wrap .right {
    padding-right: 120px;
  }
  .about-page .about-1 .box ul li {
    width: 40%;
  }
  .about-page .about-2 .list {
    padding-left: 90px;
  }
  .product-yd-page .item:nth-child(2n-1) .content {
    padding-left: 70px;
  }
  .product-yd-page .item:nth-child(2n) .content {
    padding-right: 70px;
  }
  .hose-page .hose-4 .right{
    padding: 0 50px;
  }
  .hose-page .hose-5 ul li .content .h4{
    font-size: 31px;
  }
}
@media screen and (max-width: 1400px) {
  .inner-banner .ui.container h2{
    font-size: 38px;
  }
  .about-page .about-1 .box ul li .h3 em {
    font-size: 30px;
  }
  .about-page .about-1 .box .play {
    right: 150px;
  }
  .about-page .about-3 .right ul li:hover .h3,
  .about-page .about-3 .right ul li.active .h3 {
    font-size: 34px;
  }
  .product-yd-page .item .content ul li .img-box img {
    max-width: 110px;
  }
  .hose-page .hose-5 ul li .content{
    padding: 50px 30px 45px;
  }
  .hose-page .hose-5 ul li .content .h4{
    margin-bottom: 45px;
  }
  .prodet-page .prodet-1 .left a{
    padding: 0;
  }
  .prodet-page .prodet-1 .right .more_btn{
    position: relative;
    left: 0;
  }
  .prodet-page .prodet-1 .right h1{
    padding-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .inner-banner .ui.container h2 {
    font-size: 30px;
  }
  .about-page .about-1 .box .wrap .right {
    padding-right: 60px;
  }
  .about-page .about-2 .list ul li .box .h4 {
    font-size: 20px;
  }
  .product-yd-page .item {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .product-yd-page .item .img .small-img {
    width: 48%;
  }
  .product-yd-page .item .content .txt {
    margin-bottom: 20px;
  }
  .product-yd-page .item .content ul {
    margin-bottom: 30px;
  }

  .hose-page .hose-2 .h2{
    font-size: 43px;
  }
  .hose-page .hose-3 .right .txt{
    margin-top: 15px;
  }
  .hose-page .hose-4 .right ul li .h5{
    font-size: 24px;
  }
  .news-page ul li{
    width: 50% !important;
  }
  .seoNews.news-page ul li{
    width: auto !important;
  }
  .prodet-page .prodet-2 ul.options li{
    padding: 0 45px;
  }
  .prodet-page .prodet-2 .box .content{
    width: 100%;
    overflow-x: auto;
    padding-bottom: 30px;
  }
  .prodet-page .prodet-2 .box .content table tr td{
    min-width: 120px;
  }
  .seoPublic .Auxil-form .form ul{
    margin: 0 !important;
  }
}
@media screen and (max-width: 1000px) {
  .prodet-page .prodet-2 ul.options li {
    font-size: 16px;
  }
  .about-page .about-1 .box .wrap .left {
    width: 100%;
  }
  .about-page .about-1 .box .wrap .right {
    width: 100%;
    margin-top: 30px;
  }
  .about-page .about-1 .top {
    padding-left: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-1 .top .i-title {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
        font-size: 25px;
  }
  .inner-banner .ui.container h2 {
    font-size: 26px;
  }
  .inner-banner .ui.container .box .mbx{
    font-size: 15px;
    line-height: 28px;
  }
  .about-page .about-1 .box ul {
    width: 75%;
  }
  .about-page .about-1 .box .play {
    right: 35px;
  }
  .about-page .about-2 .list {
    padding-left: 20px;
  }
  .about-page .about-2 .top .more_btn {
    position: relative;
    left: 0;
    top: 30px;
  }
  .about-page .about-2 .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-2 .top .i-title {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .about-page .about-3 .left {
    width: 100%;
    padding-top: 0;
  }
  .about-page .about-3 .right {
    width: 100%;
    margin-top: 30px;
  }
  .about-page .about-3 .right ul li .h3 {
    font-size: 24px;
  }
  .about-page .about-3 .right ul li:hover .h3,
  .about-page .about-3 .right ul li.active .h3 {
    font-size: 25px;
  }
  .about-page .about-3 .right ul li:hover p,
  .about-page .about-3 .right ul li.active p {
    font-size: 16px;
  }
  .about-page .about-2 .list ul .slick-list {
    padding-right: 0;
  }
  .product-yd-page .item .img {
    display: none;
  }
  .product-yd-page .item .content {
    width: 100%;
  }
  .product-page .sideLeft {
    display: none;
  }
  .product-page .sideRight {
    width: 100% !important;
    padding-left: 0;
  }
  .prodet-page .prodet-1 .left{
    width: 100%;
  }
  .prodet-page .prodet-1 .right{
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .hose-page .hose-1 .left{
    width: 100%;
  }
  .hose-page .hose-1 .right{
    width: 100%;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-image,
  .elementor-widget-rebuilto-scroll-timeline .timeline-content-image{
    display: none;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline:before,
  .elementor-widget-rebuilto-scroll-timeline .timeline-line{
    left: 30px;
  }
  .hose-page .hose-4 .left,
  .hose-page .hose-3 .left{
    width: 100%;
  }
  .hose-page .hose-3 .right{
    width: 100%;
  }
  .hose-page .hose-4 .right{
    width: 100%;
    padding: 0 15px;
    margin-top: 20px;
  }
  .hose-page .hose-5 .top{
        -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hose-page .hose-5 .top .more_btn{
    position: relative;
    left: 0;
    top: 0;
  }
  .hose-page .hose-5 ul li .content{
    width: 45%;
  }
  .hose-page .hose-5 ul li .content .h4{
    font-size: 24px;
    line-height: 1.2;
  }
  .hose-page .hose-6 .top{
    width: 100%;
  }
  .hose-page .hose-6{
    background: white;
    padding-bottom: 50px;
  }
  .contact-page .contact-2 ul li{
    padding: 0 15px;
  }
  .contact-page .contact-2 ul {
    margin: 0 -15px;
  }
  .newdet-page .newdet-1 h1{
    font-size: 34px;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner > img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .inner-banner .ui.container .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .inner-banner .ui.container .box .mbx {
    margin-bottom: 20px;
  }
  .newdet-page{padding: 40px 0;}
  .newdet-page .newdet-1 h1{
    font-size: 26px;
    line-height: 1.3;
  }
  .about-page .about-1 .box ul {
    width: 100%;
  }
  .about-page .about-1 .box .play {
    top: 25%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: none;
  }
  .about-page .about-1 .box .wrap .right {
    padding: 0 15px;
  }
  .about-page .about-3 .right ul li {
    padding-right: 0;
  }
  .about-page .about-3 .right ul li .time {
    position: relative;
    left: 0;
    display: inline-block;
    top: 12px;
  }
  .hose-page .hose-1{
    padding-top: 55px;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-number{
    margin-right: 25px;
  }
  .hose-page .hose-2 .h2{
    font-size: 30px;
  }
  .hose-page .hose-6 .form{
    padding-right: 0;
  }
  .hose-page .hose-6 .form form .more_btn{
    position: relative;
    top: 0;
        -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .hose-page .hose-5 ul li .content{
    position: relative;
    width: 100%;
  }
  .hose-page .hose-5 .top .more_btn{
    margin-top: 20px;
  }
  .news-page ul li{
    width: 100% !important;
  }
  .news-page ul li .box .h3{
    min-height: auto;
  }
  .faq-page .left,
  .faq-page .right{
    width: 100% !important;
  }
  .faq-page .right ul li .h4{
    font-size: 20px;
  }
  .faq-page .right ul li .content{
    font-size: 16px;
  }
  .prodet-page .prodet-2 ul.options {
    height: auto;
    flex-wrap: wrap;
  }
  .prodet-page .prodet-2 ul.options li {
    font-size: 16px;
    width: 50%;
    height: 85px;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner .ui.container h2 {
    font-size: 20px;

  }
  .prodet-page .prodet-1 {
    padding: 60px 0 80px !important;
}
  .inner-banner .ui.container h2.singtmai,
  .inner-banner .ui.container h2.catemai,
  #footer .footer-t > ul li.logo p,
   #footer .footer-t > ul li .box h4,
   #footer .footer-b .footer-b-box span a.footermai1,
   #footer .footer-b .footer-b-box span a.footermai2,
   .Auxil-industry {
    display: none !important;
}
.product-page {
    padding-top: 30px !important;
}
h1.Auxil-h1.font-30.font-bold {
    font-size: 24px;
}
  .product-yd-page .item .content {
    padding: 0 15px !important;
  }
  .product-yd-page .item .content ul li .img-box img {
    max-width: 74%;
  }
  .product-yd-page {
    padding: 70px 0;
  }
  .hose-page .hose-6 .form form{
        -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hose-page .hose-6 .form form input{
    width: 100%;
  }
}


.seoPublic .title {
    font-size: 32px;
    font-family: 'Poppins-SemiBold';
    line-height: 1.4;
    margin-bottom: 2em;
}

.seoPublic > div {
    padding: 60px 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.2;
    margin-bottom: 1em;
}

.seoPublic .Auxil-about .box .right .text {
    font-size: 16px;
    line-height: 1.8;
    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.4;
    -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: 1.4;
    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;
}

.mt-20 p{
  margin-bottom: 15px;
}


.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;
    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: 1.6;
    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;
        margin-top: 60px;
    }

    #cp-Nav .nav {
        padding: 0 15px;
    }

    #cp-Nav .nav div.title {
        font-size: 18px;
        font-family: 'Poppins-SemiBold';
        padding: 8px 10px;
        background: var(--color);
        border-radius: 5px;
        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;
        line-height: 28px;
    }

    .seoPublic .Auxil-about .box {
        display: block;
    }

    .seoPublic .Auxil-about .box .right {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .seoPublic .Auxil-about .box .left {
        width: 100%;
        padding: 0;
    }

    .seoPublic .Auxil-about .box .left .img {
        height: 300px;
    }

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: 18px;
    }

    .seoPublic > div {
        padding: 30px 0;
    }
    .seoPublic .Auxil-about .box .right .text {
        max-height: none;
    }
}


h1.zlfl {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

@media screen and (max-width: 1000px){
  .inner-banner{
    margin-top: 120px;
  }
}
