@font-face {
  font-family: 'poppins';
  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-weight: 300;
}
@font-face {
  font-family: 'poppins';
  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-weight: 400;
}
@font-face {
  font-family: 'poppins';
  src: url(../fonts/poppins-bold.ttf) format('truetype'), url(../fonts/poppins-bold.eot) format('eot'), url(../fonts/poppins-bold.woff) format('woff'), url(../fonts/poppins-bold.woff2) format('woff2');
  font-weight: bold;
}
@font-face {
  font-family: 'Impact';
  src: url(../fonts/Impact.ttf) format('truetype'), url(../fonts/Impact.eot) format('eot'), url(../fonts/Impact.woff) format('woff'), url(../fonts/Impact.woff2) format('woff2');
  font-weight: bold;
}

:root {
  --white: #fff;
  --black: #000;
  --primary: #d90223;
  --base: #ceb93e;
}


body {
  font-family: "poppins";
  font-weight: 400;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1550px;
}
@-webkit-keyframes stickySlideDown {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes stickySlideDown {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes stickySlideDown {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
#header {
  z-index: 200;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
#header.fixed {
  position: fixed;
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  -moz-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}
#header .h-top {
  height: 70px;
  line-height: 70px;
  position: relative;
  z-index: 2;
}
#header .h-top > div {
  display: inline-block;
  font-weight: 300;
}
#header .h-top .tel {
  color: #FFFFFF;
  background: url(../images/nav-tel.png) no-repeat left center;
}
#header .nav {
  display: inline-block;
  width: 100%;
}
#header .nav .ui.menu {
  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: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: flex;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 1;
}
#header .nav .ui.menu .menu-box ul.menu {
  display: inline-block;
  background-color: white;
  padding: 0 45px;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 45px;
  line-height: 60px;
  font-size: 18px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: 2px solid #d90223;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover::after {
  width: 100%;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  position: relative;
}
#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: 0;
  width: 240px;
  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);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#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: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 ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  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;
  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 .h-search {
  margin-left: 80px;
  font-size: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #d90223;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .h-search img {
  vertical-align: middle;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: #fd2318;
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: #fd2318;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: #fd2318;
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
  min-width: 700px;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
  word-break: initial;
}
table tr {
  width: auto !important;
  height: auto !important;
}
table tr:nth-child(odd) {
  background: #eee;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #fd2318 !important;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
  position: relative;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
}
#mobile .m-nav ul li a:hover {
  background: #eee;
  padding-left: 15px;
}
#mobile .m-nav ul li i{
  position: absolute;
  right: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#mobile .m-nav ul li i:before {
  content: "\f105";
  font-family: "FontAwesome";
}
#mobile .m-nav ul li.children > i:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > i:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
  display: none;
}
#mobile .m-nav ul li li a {
  padding-left: 30px;
  position: relative;
 font-size: 16px;
    line-height: 30px;
}
#mobile .m-nav ul li li a:after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
  padding-left: 30px;
}
#mobile .yuy {
  padding: 20px 0;
}
#mobile .yuy h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
#mobile .yuy ul li {
  width: auto;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  padding-right: 5px;
  border-right: 1px solid #eee;
  margin-bottom: 5px;
}
#mobile .yuy ul li img {
  max-width: 30px;
}
#mobile h6 {
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
#mobile #gotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
}
#mobile.active .m-btn i {
  margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
  opacity: 0;
}
#mobile.active .m-btn i.ie3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mobile.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#mobile.active .box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 120px;
  }
}
.hover-language .zhuyu {
  color: #FFFFFF;
  background: url(../images/earth.png) no-repeat left center;
}
.hover-language ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  right: 0;
  min-width: 100px;
  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;
}
.hover-language ul.sub-menu li a {
  text-align: left;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 16px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.hover-language ul.sub-menu li:hover a {
  background: #000000;
  color: white;
}
.hover-language:hover 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;
}
#banner {
  position: relative;
}
#banner li {
  position: relative;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 30%;
}
#banner h2 {
  font-size: 48px;
  line-height: 2;
  font-weight: bold;
  color: white;
}
#banner h2 span {
  display: inline-block;
}
#banner h2 span::before {
  content: url(../images/banner-after.png);
  position: absolute;
  z-index: -1;
  left: 490px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0;
}
#banner .scroll {
  bottom: 20%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner .scroll span {
  color: white;
  letter-spacing: 5px;
}
#banner .scroll-down {
  display: inline-block;
  z-index: 10;
  border: 1px solid white;
  border-radius: 20px;
  height: 70px;
  margin: 0 auto;
  width: 40px;
  -webkit-transition: -webkit-transform 180ms linear;
  transition: -webkit-transform 180ms linear;
  -moz-transition: transform 180ms linear, -moz-transform 180ms linear;
  transition: transform 180ms linear;
  transition: transform 180ms linear, -webkit-transform 180ms linear, -moz-transform 180ms linear;
}
#banner .scroll-down::after {
  -webkit-animation: scrollDownAnimation 2s infinite;
  -moz-animation: scrollDownAnimation 2s infinite;
  animation: scrollDownAnimation 2s infinite;
  background-color: white;
  border-radius: 3px;
  content: "";
  height: 13px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 10px;
  width: 6px;
}
@-webkit-keyframes scrollDownAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
    transform: translate(0, 35px);
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes scrollDownAnimation {
  0% {
    opacity: 0;
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -moz-transform: translate(0, 35px);
    transform: translate(0, 35px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollDownAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
    -moz-transform: translate(0, 35px);
    transform: translate(0, 35px);
  }
  100% {
    opacity: 0;
  }
}
.tit1 {
  font-size: 60px;
}
.tit1.line::before {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  margin: auto;
  background-color: #d90223;
}
.our-category .top > div {
  vertical-align: middle;
}
.our-category .top a {
  display: inline-block;
  line-height: 50px;
  padding: 0 30px;
  background-color: #efefef;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-category .top a:hover {
  color: white;
  background-color: #d90223;
}
.btn--bright span {
  display: inline-block;
  line-height: 36px;
  padding: 0 20px;
  background-color: white;
  border: 1px solid white;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.btn--bright span:hover {
  color: white;
  background-color: transparent;
}
.info-links__item {
  border: 1px solid rgba(52, 64, 20, 0.1);
  position: relative;
  overflow: hidden;
  height: 380px;
}
.info-links__item-title {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  -webkit-transition: color 320ms ease-out;
  -moz-transition: color 320ms ease-out;
  transition: color 320ms ease-out;
  margin: 30px 0 20px;
  line-height: 1.2;
}
.info-links__description {
  -webkit-transition: opacity 320ms ease-out;
  -moz-transition: opacity 320ms ease-out;
  transition: opacity 320ms ease-out;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.info-links__item-inner {
  height: 100%;
  padding: 20px;
  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;
}
.info-links__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: opacity 520ms ease-out;
  -moz-transition: opacity 520ms ease-out;
  transition: opacity 520ms ease-out;
}

.info-links__item-bg2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: opacity 520ms ease-out;
  -moz-transition: opacity 520ms ease-out;
  transition: opacity 520ms ease-out;
  opacity: 0;
}

.info-links__icon-a {
  position: absolute;
  top: 40px;
  left: 40px;
  -webkit-transition: opacity 320ms ease-out;
  -moz-transition: opacity 320ms ease-out;
  transition: opacity 320ms ease-out;
  display: none;
}
.info-links__icon-b {
  -webkit-transition: opacity 320ms ease-out;
  -moz-transition: opacity 320ms ease-out;
  transition: opacity 320ms ease-out;
  width: 80px;
}
.info-links__progress-bar {
  height: 5px;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
}
.info-links__item.active .info-links__item-title,
.info-links__item:hover .info-links__item-title {
  color: #fff;
}
.info-links__item.active .info-links__item-bg,
.info-links__item:hover .info-links__item-bg {
  opacity: 10;
}

.info-links__item.active .info-links__item-bg2,
.info-links__item:hover .info-links__item-bg2 {
  opacity: 0;
}

.info-links__item.active .info-links__item-inner,
.info-links__item:hover .info-links__item-inner {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.info-links__item.active .info-links__icon-a,
.info-links__item:hover .info-links__icon-a {
  opacity: 0;
}
.info-links__item.active .info-links__icon-b,
.info-links__item:hover .info-links__icon-b {
  opacity: 1;
}
.info-links__item.active .info-links__description,
.info-links__item:hover .info-links__description {
  opacity: 1;
}
@media (min-width: 768px) {
  .info-links__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 0;
    margin-left: 0;
  }
  .info-links__items > * {
    margin-bottom: 0;
  }
  .info-links__item-title {
    color: #3a3a3c;
    font-size: 26px;
  }
  .info-links__description {
    opacity: 0;
    line-height: 30px;
    font-size: 16px;
  }
  .info-links__item-inner {
    -webkit-transform: translateY(-webkit-calc(100% - 220px));
    -moz-transform: translateY(-moz-calc(100% - 220px));
    -ms-transform: translateY(calc(100% - 220px));
    transform: translateY(calc(100% - 220px));
    -webkit-transition: -webkit-transform 320ms ease-out;
    transition: -webkit-transform 320ms ease-out;
    -moz-transition: transform 320ms ease-out, -moz-transform 320ms ease-out;
    transition: transform 320ms ease-out;
    transition: transform 320ms ease-out, -webkit-transform 320ms ease-out, -moz-transform 320ms ease-out;
    padding: 40px;
  }
  .info-links__item-bg {
    opacity: 0;
  }
  .info-links__item-bg2 {
    opacity: 1;
  }
  .info-links__icon-a {
    display: block;
  }
  .info-links__icon-b {
    opacity: 0;
  }
  .info-links__item.active .info-links__play,
  .info-links__item:hover .info-links__play {
    top: 10px;
    opacity: 1;
  }
}
@media (min-width: 768px) and (min-width: 480px) {
  .info-links__items {
    margin-right: 0;
    margin-left: 0;
  }
  .info-links__items > * {
    -webkit-flex-basis: -webkit-calc((100% / 2) - 0px);
    -ms-flex-preferred-size: calc((100% / 2) - 0px);
    flex-basis: -moz-calc((100% / 2) - 0px);
    flex-basis: calc((100% / 2) - 0px);
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media (min-width: 1200px) {
  .info-links {
    margin-top: 10px;
    margin-bottom: 180px;
  }
  .info-links__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 0;
    margin-left: 0;
  }
  .info-links__items > * {
    margin-bottom: 0;
  }
  .info-links__item {
    height: 500px;
  }
}
@media (min-width: 1200px) and (min-width: 480px) {
  .info-links__items {
    margin-right: 0;
    margin-left: 0;
  }
  .info-links__items > * {
    -webkit-flex-basis: -webkit-calc((100% / 4) - 0px);
    -ms-flex-preferred-size: calc((100% / 4) - 0px);
    flex-basis: -moz-calc((100% / 4) - 0px);
    flex-basis: calc((100% / 4) - 0px);
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
.our-about .left {
  padding-right: 5%;
}
.our-about ul li h4 em {
  color: #d90223;
  font-size: 60px;
  font-family: 'Impact';
}
.our-about a.btn1 {
  display: inline-block;
  line-height: 50px;
  padding: 0 30px;
  background-color: #efefef;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-about a.btn1:hover {
  color: white;
  background-color: #d90223;
}
.our-solution .left {
  width: 45%;
}
.our-solution .right {
  width: 55%;
}
.our-solution .list ul {
  margin: -30px -65px;
}
.our-solution .list ul li {
  padding: 30px 65px;
}
.reviews {
  background-color: #f6f6f6;
  padding: 80px 0 100px;
}
.reviews .list {
  padding: 0 120px;
  position: relative;
}
.reviews .list > span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.reviews .list > span.arrow_l {
  left: 0;
}
.reviews .list > span.arrow_r {
  right: 0;
}
.reviews .list ul {
  margin: -40px;
}
.reviews .list ul li {
  padding: 40px;
}
.reviews .list .mml-text {
  background-color: white;
  padding: 30px;
  border-radius: 4px;
}
.reviews .list .mml-text .left {
  width: 100px;
}
.reviews .list .mml-text .left .user img {
  display: block;
  margin: auto;
}
.reviews .list .mml-text .left .starts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.reviews .list .mml-text .left .starts i {
  color: #d90223;
}
.reviews .list .mml-text .right {
  width: -webkit-calc(100% - 110px);
  width: -moz-calc(100% - 110px);
  width: calc(100% - 110px);
  margin-left: 10px;
}
.reviews .list .mml-text .right::before {
  content: "“";
  font-size: 60px;
  line-height: 1;
  opacity: .4;
  position: absolute;
  left: 0;
  top: 0;
}
.reviews .list .mml-text .right p {
  line-height: 30px;
}
.i-advantage {
  overflow: hidden;
}
.i-advantage .container {
  z-index: 3;
}
.i-advantage h4 {
  font-size: 40px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}
.i-advantage h2 {
  font-size: 36px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}
.i-advantage p {
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  color: white;
}
.man_image_bck {
  background-size: cover!important;
  background-position: center;
}
.man_adv_box_img {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
  z-index: 1;
}
.man_adv_box_img.active {
  z-index: 1;
  opacity: 1;
}
.man_adv_box_img.first-item {
  opacity: 1;
  z-index: 1;
}
.man_adv_box {
  height: 700px;
  position: relative;
  color: #fff!important;
}
.man_adv_box:before {
  height: 100%;
  width: 1px;
  content: '';
  display: block;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 0;
}
.man_adv_box_block {
  position: absolute;
  width: 100%;
  bottom: 20px;
  z-index: 3;
}
.man_adv_box_block {
  padding-right: 45px;
}
.man_wht_txt {
  color: #fff;
}
.man_adv_box_block_cont_wb {
  padding: 0 30px 15px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.man_adv_box:hover .man_adv_box_block_cont_wb {
  opacity: 0;
  -webkit-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  transform: translateY(-60px);
}
.man_adv_box_block_cont {
  background: #d90223;
  padding: 70px 40px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
}
.man_adv_box_block_cont h2 {
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.man_adv_box_block_cont h4 {
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.man_adv_box_block_cont p {
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.man_adv_box:hover .man_adv_box_block_cont {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.man_adv_box:hover .man_adv_box_block_cont h4,
.man_adv_box:hover .man_adv_box_block_cont h2,
.man_adv_box:hover .man_adv_box_block_cont p,
.man_adv_box:hover .man_adv_box_block_cont .btn {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.our-news {
  padding: 60px 0 100px;
}
.our-news .list {
  padding-top: 30px;
  padding-left: 110px;
}
.our-news .list::before {
  content: url(../images/news-before.png);
  position: absolute;
  left: 0;
  top: 0;
}
.our-news .list ul {
  margin-right: 200px;
}
.our-news .list .text time {
  color: white;
  background-color: #d90223;
  width: 70px;
  height: 70px;
  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-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;
  line-height: 1;
  border-radius: 3px;
}
.our-news .list .text p {
  padding-left: 130px;
}
.our-news .list .arrows {
  position: absolute;
  right: 0;
  bottom: 0;
}
.our-news .list .arrows span {
  width: 58px;
  height: 58px;
  line-height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
.our-news .list .arrows span img {
  vertical-align: middle;
}
.our-news .list .arrows span:hover {
  border-color: #d90223;
  background-color: #d90223;
}
.our-news .list .arrows span:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.touch {
  background-color: #f6f6f6;
  padding: 100px 0;
}
.touch form ul {
  margin: -20px -15px;
}
.touch form ul li {
  padding: 20px 15px;
}
.touch form ul li.wid-100 {
  width: 100%!important;
}
.touch form input,
.touch form textarea {
  font-size: 18px;
  width: 100%;
  border: none;
  background-color: white;
  padding-left: 80px;
  height: 60px;
  line-height: 60px;
}
.touch form input[type="submit"] {
  color: white;
  background-color: #d90223;
  height: 50px;
  line-height: initial;
  max-width: 163px;
  padding-left: 0;
  transition: .5s ease;
}
.touch form input[type="submit"]:hover{
  background-color: black;
}
.touch form textarea {
  height: 135px;
}
.touch form label {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.touch form label img {
  vertical-align: middle;
}
#footer .foot-top hr {
  margin: 25px 0;
  border: none;
  border-bottom: 1px solid #a4a4a4;
}

#footer .column.link{
  width: 20%;
}
#footer .column.product{
  width: 30%;
}


#footer .foot-top ul {
  padding-right: 150px;
}
#footer .foot-top ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
}
#footer .foot-top ul li span {
  white-space: nowrap;
  margin-right: 10px;
}
#footer .foot-bottom p,
#footer .foot-bottom a {
  display: inline-block;
  vertical-align: middle;
}
#footer .foot-bottom img {
  max-height: 16px;
  vertical-align: middle;
}
#footer #ewm {
  position: absolute;
  right: 0;
  top: 0;
  width: 130px;
  border: 5px solid white;
}
@media screen and (max-width: 1550px) {
  .ui.container {
    width: 1400px;
  }
  #banner h2 {
    font-size: 50px;
  }
  #banner .scroll {
    bottom: 20%;
  }
  #header .nav .ui.menu .menu-box ul.menu {
    padding: 0 30px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 30px;
  }
  .tit1 {
    font-size: 40px;
  }
  .our-about .left {
    padding-right: 5%;
  }
  .our-about ul li h4 em {
    font-size: 50px;
  }
}
@media screen and (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .h-search {
    margin-left: 40px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
  }
  #banner h2 {
    font-size: 40px;
  }
  #banner h2 span::before {
    display: none;
  }
  #banner .scroll {
    display: none;
  }
  #banner .content {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .our-solution .list ul {
    margin: -30px;
  }
  .our-solution .list ul li {
    padding: 30px;
  }
  .reviews .list {
    padding: 0 60px;
  }
}
@media screen and (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #banner h2 {
    font-size: 30px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 20px;
  }
  .info-links__item-inner {
    padding: 20px;
  }
  .info-links__icon-a {
    top: 20px;
    left: 20px;
  }
  .info-links__item-title {
    margin: 20px 0 10px;
  }
  #header .h-top {
    height: 50px;
    line-height: 50px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    line-height: 50px;
  }
  #header .nav .ui.menu .h-search {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  #header .nav .ui.menu .logo {
    width: 80px;
  }
  .font-24 {
    font-size: 20px;
  }
  .our-solution .list ul {
    margin: -15px;
  }
  .our-solution .list ul li {
    padding: 15px;
  }
  .reviews .list ul {
    margin: -15px;
  }
  .reviews .list ul li {
    padding: 15px;
  }
  .man_adv_box_block_cont h4 {
    font-size: 30px;
  }
  .i-advantage h2 {
    font-size: 24px;
  }
  .i-advantage p {
    font-size: 16px;
  }
  .man_adv_box_block_cont {
    padding: 30px 20px;
  }
  .man_adv_box_block {
    padding-right: 20px;
  }
  .man_adv_box {
    height: 600px;
  }
  .our-news .list ul {
    margin-right: 100px;
  }
  .our-news .list {
    padding-left: 60px;
  }
  #footer .foot-top ul {
    padding-right: 50px;
  }

  #ewm {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  .info-links__item-title {
    font-size: 20px;
  }
  .info-links__description {
   font-size: 16px;
    line-height: 30px;
  }
  .tit1 {
    font-size: 30px;
  }
  .our-about .left {
    width: 100%!important;
    padding: 0;
    margin-bottom: 40px;
  }
  .our-about .right {
    width: 100%!important;
  }
  .our-solution .left {
    width: 100%;
  }
  .our-solution .right {
    width: 100%;
  }
  .i-advantage p {
    font-size: 14px;
  }
  .i-advantage h4 {
    font-size: 30px;
  }
  .i-advantage h2 {
    font-size: 22px;
  }
  .our-news .list .text p {
    padding-left: 100px;
  }
  .font-30 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 36px;
  }
  .font-18 {
    font-size: 16px;
  }
  .touch .left {
    width: 100%!important;
    padding: 0;
  }
  .touch .right {
    width: 100%!important;
    padding: 0;
    display: none;
  }
  #footer .foot-bottom .fl,
  #footer .foot-bottom .fr {
    float: none;
    text-align: center;
  }
  
  #footer .foot-top ul {
    padding: 0;
  }
  #footer .column.contact {
    width: 100%;
  }
  #footer .column.link,
  #footer .column.product {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .ui.container {
    width: 100%;
  }
  #banner h2 {
    font-size: 24px;
  }
  .tit1 {
    font-size: 24px;
  }
  .our-about ul li h4 em {
    font-size: 40px;
  }
  .our-solution {
    display: none;
  }
  .reviews {
    display: none;
  }
  .i-advantage {
    display: none;
  }
  .our-news {
    padding: 60px 0;
  }
  .our-news .list .arrows {
    display: none;
  }
  .our-news .list ul {
    margin-right: 0;
  }
  .touch {
    padding: 60px 0;
  }
  .touch form ul {
    margin: -10px;
  }
  .touch form ul li {
    padding: 10px;
  }
  .touch form label {
    display: none;
  }
  .touch form input,
  .touch form textarea {
    font-size: 16px;
    padding: 15px;
    height: auto;
    line-height: initial;
  }
}
@media screen and (max-width: 500px) {
  #banner h2 {
    font-size: 18px;
    line-height: 32px;
  }
  .our-news .list {
    padding-left: 0;
    padding-top: 0;
  }
  .our-news .list::before {
    display: none;
  }
  .font-16 {
    font-size: 16px;
    line-height: 30px;
  }
  .font-36 {
    font-size: 24px;
  }
  .our-news .list .text time {
    width: 60px;
    height: 60px;
  }
  .our-news .list .text p {
   padding-left: 80px;
    font-size: 16px;
    line-height: 30px;
  }
  #footer .foot-bottom img {
    max-height: 14px;
  }
  .our-about ul li h4 em {
    font-size: 30px;
  }
}



.more {
  padding: 14px 23px;
  background: var(--primary);
  display: inline-block;
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  overflow: hidden;
  color: var(--black);
}
.more i {
  display: inline-block;
  vertical-align: middle;
  margin: -5px 0 0 9px;
}
.more::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transition: transform .5s ease;
  -moz-transition: transform .5s ease;
  -ms-transition: transform .5s ease;
  -o-transition: transform .5s ease;
  -webkit-transition: transform .5s ease;
  background: var(--black);
}
.more:hover {
  color: var(--white);
}
.more:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
}


.inner-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.inner-banner {
  display: block;
  height: 500px;
  padding-top: 180px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background: aliceblue;
  background-attachment: fixed;
}
.inner-banner:after {
  content: '';
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.inner-banner.active:after {
  opacity: 0.3;
  -webkit-transition: 1.2s 1s;
  -moz-transition: 1.2s 1s;
  -ms-transition: 1.2s 1s;
  -o-transition: 1.2s 1s;
  transition: 1.2s 1s;
}
.inner-banner .box {
  text-align: center;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
}
.inner-banner.active .box {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-banner .box .content {
  margin: 0 auto;
  text-align: left;
}
.inner-banner .box .mbx {
  display: block;
  font-size: 18px;
  line-height: 32px;
  position: relative;
  z-index: 2;
}
.inner-banner .box .content .mbx a,
.inner-banner .box .content .mbx span {
  display: inline-block;
  text-transform: capitalize;
}
.inner-banner .box h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  position: relative;
  margin: 10px 0;
  text-transform: capitalize;
  z-index: 1;
}
.inner-banner h2:after {
  content: attr(data-text);
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  line-height: 1;
  position: absolute;
  bottom: 0;
  left: -20%;
  z-index: -2;
  opacity: 0;
}
.inner-banner.active .box h2:after {
  left: 0;
  opacity: 1;
  -webkit-transition: 1.8s .5s;
  -moz-transition: 1.8s .5s;
  -ms-transition: 1.8s .5s;
  -o-transition: 1.8s .5s;
  transition: 1.8s .5s;
}
.inner-banner .btn {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.inner-banner .btn a.more {
  line-height: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 35px;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
}
.inner-banner .btn a.more.contact:hover{
  color: #fff;
}
.inner-banner .btn a.more:hover{
  color: #fff;
}
.inner-banner .btn a.more.contact {
  padding-left: 20px;
  background: #fff;
  color: #000;
  margin-left: 10px;
  padding: 0 0 0 10px;
}
.inner-banner .btn a.more {
  line-height: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 35px;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-banner .btn a.more.contact i {
  text-align: center;
  color: #fff;
  background: var(--primary);
  width: 50px;
  display: inline-block;
  height: 100%;
  vertical-align: top;
  padding-top: 15px;
  margin: 0 0 0 10px;
}
.inner-banner .box h6 {
  display: block;
  font-size: 30px;
  font-weight: bold;
  line-height: 2;
  margin-top: 20px;
}
.inner-banner .nav-list {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.inner-banner .nav-list ul {
  letter-spacing: -5px;
}
.inner-banner .nav-list ul li {
  display: inline-block;
  letter-spacing: 0;
  min-width: 320px;
  font-size: 18px;
  color: #fff;
  background: rgba(7, 66, 149, 0.6);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin: 0 1px;
}
.inner-banner .nav-list ul li a {
  display: block;
  padding: 30px;
  font-weight: bold;
}
.inner-banner .nav-list ul li:hover {
  background: var(--primary);
}
.inner-page .m-page {
  text-align: right;
  display: block;
}
.inner-page .m-page a,
.inner-page .m-page span {
  line-height: 50px;
  height: 50px;
  padding: 0 18px;
  display: inline-block;
  font-size: 28px;
  margin: 0 3px;
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 4px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page a:hover,
.inner-page .m-page span {
  background: white;
  color: var(--primary);
}
.inner-page .m-page span {
  margin: 0 3px;
}

@media screen and (max-width: 1600px) {
  .inner-banner .box {
    padding-left: 0;
  }
  .inner-banner {
    height: 600px;
    padding-top: 180px;
  }

  .inner-banner .box h6 {
    font-size: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .inner-banner {
    height: 480px;
    padding-top: 130px;
  }
  .inner-banner .box h2{
    font-size: 30px;
  }
  .inner-banner .btn{
    margin-top: 20px;
  }
  .inner-banner .box h6{
    font-size: 24px;
  }
}

@media screen and (max-width: 1000px) {
  .inner-banner {
    height: 400px;
  }
  .inner-banner h2:after{
    display: none;
  }
}

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

  .inner-banner {
        height: 260px;
    padding-top: 50px;
  }
  
.piao1, p.fup, a.senye, h1.piaozhih {
    display: none !important;
}


  .inner-banner .btn{
    display: none;
  }

  .inner-banner .box h2 {
    font-size: 28px;
  }

  .inner-banner .box h6 {
    font-size: 16px;
  }

  .inner-banner .box .mbx {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .inner-banner .box h6 {
    font-size: 20px;
  }

  .inner-banner .box h2 {
    font-size: 20px;
    line-height: 34px;
  }
}


.about-page h2.h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.about-page p.p {
  font-size: 18px;
  color: #fff;
}

.about-ab .top {
  padding-top: 80px;
}
.about-ab .top .left{
  position: relative;
  z-index: 1;
}
.about-ab .top h2 {
  color: var(--primary);
  font-size: 40px;
  text-align: left;
    margin-bottom: 30px;
}
.about-ab .top h3 {
  color: #000;
  font-size: 24px;
  margin-bottom: 0px;
  text-align: left;
}
.about-ab .top p {
  color: #363636;
  font-size: 18px;
  padding: 15px 0;
  line-height: 2;
}

.about-ab .about-factory .box img{
  width: 100%;
}
.about-ab .about-factory .box .play{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.about-page .about-ab .factory .content ul{
  margin: -10px;
}
.about-page .about-ab .factory .content ul li{
  padding: 10px;
}

.about-ab .about-factory .box:after {
  position: absolute;
  content: "";
  width: 402px;
  height: 389px;
  /*background: url(../images/about-after.png) no-repeat 100% 100%;*/
  left: -92px;
  top: -113px
}


.about-page .about-num ul {
    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
}

.about-page .about-num ul li {
    padding: 15px 1.85rem 5px 90px;
    position: relative;
    background: url(../images/a-icon.png) no-repeat left center
}


.about-page .about-num ul li:last-child {
    padding: 15px 0 5px 90px
}

.about-page .about-num ul li:last-child:after {
    display: none
}

.about-page .about-num ul li em {
    font-size: 48px;
    line-height: .9;
    color: var(--color);
    font-weight: 700
}

.about-page .about-num ul li p {
    font-size: 16px;
    color: #545252
}

.about-page .about-num ul li:nth-child(1) {
    background: url(/piaozhihua/2023/08/29/about-icon.png) no-repeat left center
}

.about-page .about-num ul li:nth-child(2) {
    background: url(/piaozhihua/2023/08/29/about-icon2.png) no-repeat left center
}

.about-page .about-num ul li:nth-child(3) {
    background: url(/piaozhihua/2023/08/29/about-icon3.png) no-repeat left center
}

.about-page .about-num ul li:nth-child(4) {
    background: url(/piaozhihua/2023/08/29/about-icon4.png) no-repeat left center
}


.corporate-culture {
  padding: 80px 0;
}
.corporate-culture .ui.container {
  display: flex;
  align-items: center;
}
.corporate-culture .left {
  width: 62%;
}
.corporate-culture .left h2 {
  color: var(--primary);
  font-size: 24px;
}
.corporate-culture .left h3 {
  color: #000;
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.2;
  margin-top: 10px;
}
.corporate-culture .left p {
  color: #7b7b7b;
  font-size: 18px;
  padding: 8px 50px 0 0;
  line-height: 1.8;
}
.corporate-culture .right {
  width: 50%;
}
.corporate-culture .left p em {
  color: #000;
  text-transform: capitalize;
  font-weight: bold;
}



.about-page .ab-2{
 background: url(../images/advantage-bg.jpg) no-repeat center center;
    padding-bottom: 100px;
}
.about-page .ab-2 .header{
  text-align: center;
  width: 56%;
  margin: 0 auto;
  padding-top: 80px;
}
.about-page .ab-2 .header span{
    font-size: 48px;
    color: #000;
    font-weight: 700;
}
.about-page .ab-2 .header h3{
  font-size: 36px;
  line-height: 1.1;
  /*margin-top: 23px;*/
}
.about-page .ab-2 .header p{
  font-size: 18px;
  line-height: 1.6;
  color: #8c8d8d;
  margin-top: 24px;
}
.about-page .ab-2 .header .mores{
  width: 133px;
	height: 44px;
  text-align: center;
  line-height: 44px;
  background: rgba(195,13,34);
  display: inline-block;
  color: #fff;
  font-size: 16px;
  margin-top: 36px;
      transition: all .5s ease;
}
.about-page .ab-2 .header .mores:hover {
    background: rgba(195,13,34,0.7);
        transition: all .5s ease;
}
.about-page .ab-2 .header .play{
  margin-top: 79px;
}
.about-page .ab-2 .header .play i{
  display: inline-block;
  position: relative;
  z-index: 1;
}
.about-page .ab-2 .header .play i::before,
.about-page .ab-2 .header .play i::after{
  position: absolute;
                z-index: -1;
                content: '';
                left: -12px;
                right: -12px;
                top: -12px;
                bottom: -12px;
                border-radius: 50%;
                background: rgba(0, 0, 0, 0.5);
                -webkit-animation: ks 2s linear infinite;
                -o-animation: ks 2s linear infinite;
                -ms-animation: ks 2s linear infinite;
                -moz-animation: ks 2s linear infinite;
                animation: ks 2s linear infinite;
}
.about-page .ab-2 .header .play i::before{
  -webkit-animation-delay: .6s;
                -o-animation-delay: .6s;
                -ms-animation-delay: .6s;
                -moz-animation-delay: .6s;
                animation-delay: .6s;
}
.about-page .ab-2 .content{
  padding-top: 70px;
  color: #fff;
}
.about-page .ab-2 .content ul{
  margin-right: -20px;
}
.about-page .ab-2 .content ul .slick-slide {
  margin-right: 20px;
}
.about-page .ab-2 .content ul .slick-slide:nth-child(1) li::after {
  right: -2%;
}
.about-page .ab-2 .content ul .slick-slide:nth-child(2) li::after {
  right: -4.5%;
}
.about-page .ab-2 .content ul .slick-slide:nth-child(3) li::after {
  right: -5%;
}
.about-page .ab-2 .content ul .slick-slide:last-child li::after {
  display: none;
}
.about-page .ab-2 .content ul li {
  padding: 0 10px;
  position: relative;
}
.about-page .ab-2 .content ul li::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.3);
}
.about-page .ab-2 .content ul li span {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.about-page .ab-2 .content ul li h4 {
  display: block;
  font-size: 24px;
 
  font-weight: bold;
  line-height: 1;
  margin: 22.5px 0 13px;
  font-style: italic;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

}
.about-page .ab-2 .content ul li p {
  display: block;
  font-size: 18px;
  line-height: 2;
  min-height: 56px;
}



.about-page .ab-2 .content ul li a.mores {
  display: inline-block;
  width: 17.5px;
  height: 17.5px;
  border: 1px solid white;
  line-height: 17.5px;
  text-align: center;
  font-size: 18px;
  margin-top: 40px;
  border-radius: 100%;
  background: transparent;
  color: #fff;
}
.about-page .ab-2 .content ul li a.mores::before {
  border-bottom-color: #fa582a;
}
.about-page .ab-2 .btn {
  padding: 46px 25px 0;
  display: block;
  text-align: right;
  color: #fff;
}
.about-page .ab-2 .btn div {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .ab-2 .btn div.next {
  margin-left: 15px;
}
.about-page .ab-2 .btn div::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 2px;
  background: white;
  margin-left: 0;
  margin-top: -4px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.about-page .ab-2 .btn div:hover::after {
  width: 18px;
  margin-left: 10px;
}



.about-page .i-semi {
  text-align: center;
  padding: 80px 0 60px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f1f7fc), color-stop(50%, #ffffff));
  background: -webkit-linear-gradient(#f1f7fc 50%, #ffffff 50%);
  background: -moz-linear-gradient(#f1f7fc 50%, #ffffff 50%);
  background: linear-gradient(#f1f7fc 50%, #ffffff 50%);
}
.about-page .i-semi p.p {
  color: #000;
}
.about-page .i-semi .semi-list {
  margin-top: 40px;
  position: relative;
}
.about-page .i-semi .semi-list ul {
  padding-bottom: 80px;
}
.about-page .i-semi .semi-list .slick-arrow {
  position: absolute;
  cursor: pointer;
  width: 49px;
  height: 48px;
  background: url(../images/factory-l.jpg) no-repeat center;
  bottom: 0;
  z-index: 8;
  color: rgba(255, 255, 255, 0);
  border: none;
}
.about-page .i-semi .semi-list .slick-prev {
  right: 50%;
  margin-right: 5px;
}
.about-page .i-semi .semi-list .slick-next {
  background: url(../images/factory-r.jpg) no-repeat center;
  left: 50%;
  margin-left: 5px;
}
.about-page .i-semi .semi-list ul li {
  padding: 0 10px;
}
.about-page .i-semi .semi-list ul li img {
  width: 100%;
}
.about-page .i-semi .semi-list ul li p {
  padding: 25px 0;
  font-size: 18px;
  display: none;
}


.his-bg .ui.container {
  display: flex;
  align-items: center;
}
.his-bg {
  background-repeat: no-repeat;
  /*background-attachment: fixed;*/
}
.his-bg .left-his {
  margin-left: -13%;
  width: 38%;
}
.his-bg .right-his {
  width: 70%;
  margin-left: 5%;
}
.his-bg .right-his .about-4 h3 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 50px;
  line-height: 1.2;
  margin-top: 10px;
}
.his-bg .right-his .about-4 h2 {
  color: #fff;
  font-size: 24px;
  text-transform: capitalize;
}

.about-page .about-4 .box ul {
  margin: 0 -15px;
}
.about-page .about-4 .box ul li {
  padding: 0 15px;
  position: relative;
}


.about-page .about-3 .offerBox ul{
  margin: -15px;
}
.about-page .about-3 .offerBox ul li{
  padding: 15px;
}


@media screen and (max-width: 1000px) {
  .about-ab .top .con{
    max-height: 500px;
    overflow: auto;
    padding-right: 10px;
  }
  .about-ab .top .con::-webkit-scrollbar-thumb{
    background: var(--primary);
  }
  .about-ab .about-factory .box:after{
    display: none;
  }

  .about-page .about-num ul {
    flex-wrap: wrap;
  }

  .about-page .about-num ul li {
    width: 50%;
    margin-bottom: 20px;
  }

  .about-page .about-num ul li:after {
    display: none;
  }

  .about-page .about-num ul li p {
    font-size: 14px;
  }

  .about-page .about-num ul li em {
    font-size: 24px;
  }

  .corporate-culture .ui.container{
    display: block;
  }
  .corporate-culture .left{
    width: 100%;
  }
  .corporate-culture .right{
    width: 100%;
    margin-top: 20px;
  }

  .about-page .ab-2 .header{
    width: 100%;
  }

  .about-page .ab-2 .header span{
    font-size: 24px;
  }

  .about-page .ab-2 .header h3{
    font-size: 16px;
  }

  .his-bg .right-his .about-4 h3{
    font-size: 29px;
    line-height: 44px;
    margin-bottom: 20px;
  }
}

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

  .corporate-culture{
    padding: 30px 0;
  }
  .corporate-culture .left ul{
    display: none;
  }
  .corporate-culture .right{
    width: 100%;
    display: none;
  }

  .corporate-culture .left h3{
    font-size: 30px;
  }


  .his-bg .ui.container{
    display: block;
  }
  .his-bg .left-his{
    width: 100%;
    margin-left: 0;
    display: none;
  }
  .his-bg .right-his{
    width: 100%;
    margin-left: 0;
    padding: 30px 0;
  }
}

@media screen and (max-width: 500px) {
  .about-ab .top h2{
    font-size: 20px;
  }
  .about-ab .top h3{
    font-size: 26px;
    line-height: 40px;
  }
  .about-ab .top p{
    font-size: 16px;
  }

  .about-page .about-num ul li {
    width: 100%;
  }


  .corporate-culture .left h2{
    font-size: 20px;
  }
  .corporate-culture .left h3{
    font-size: 29px;
  }

  .his-bg .right-his .about-4 h2{
    font-size: 20px;
  }
  .his-bg .right-his .about-4 h3{
    font-size: 29px;
    margin-bottom: 20px;
  }
}




.faq-page {
  padding: 90px 0;
}
.faq-page ul li {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}
.faq-page ul li h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  
}
.faq-page ul li .content {
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 17px;
  line-height: 1.6;
}
.faq-page ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .faq-page{
    padding: 60px 0;
  }
   .faq-page ul li h4 {
    font-size: 18px;
    line-height: 1.6;
  }
  .faq-page ul li .content {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .faq-page{
    padding: 30px 0;
  }
}



.factory-page {
  padding: 60px 0;
}
.factory-page img {
  display: block;
  margin: 0 auto;
}
.factory-page .list ul {
  margin: -15px;
}
.factory-page .list ul li {
  padding: 15px;
}




.inner-page .sideLeft {
  width: 30%;
  padding-right: 30px;
  position: sticky;
  top: 30px;
}
.inner-page .sideLeft .box {
  padding: 30px;
  background: #f7f7f7;
}
.inner-page .sideLeft .box h3 {
  display: block;
  padding: 30px 20px;
  background: var(--primary);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.inner-page .sideLeft .box .list ul li {
  margin-top: 6px;
  padding: 15px 20px;
  border-left: 4px solid var(--primary);
  font-size: 18px;
  color: black;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.inner-page .sideLeft .box .list ul li::before {
  content: '';
  width: 10px;
  height: 1px;
  background: #000;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.inner-page .sideLeft .box .list ul li ul li::before {
  display: none;
}
.inner-page .sideLeft .box .list ul li i {
  width: 60px;
  height: 60px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -10px;
  cursor: pointer;
}
.inner-page .sideLeft .box .list ul li .children {
  display: none;
}
.inner-page .sideLeft .box .list ul li.active .children {
  display: block;
}
.inner-page .sideLeft .box .list ul li .children li {
  border-left: 0;
}
.inner-page .sideLeft .box .list ul li img {
  max-width: 32px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
}
.inner-page .sideLeft .box .list ul li:hover,
.inner-page .sideLeft .box .list ul li.active {
  /*background: var(--primary);
  color: white;*/
  color: var(--primary);
}

.inner-page .sideLeft .img {
  display: block;
  margin-top: 40px;
  padding: 60px 5%;
  text-align: center;
  color: white;
}
.inner-page .sideLeft .img h4 {
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.inner-page .sideLeft .img p {
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin: 25px 0 45px;
}
.inner-page .sideLeft .img a.more {
  line-height: 36px;
  height: 36px;
  padding: 0 32px;
  border: 1px solid white;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: inline-block;
}
.inner-page .sideLeft .img a.more:hover {
  background: var(--primary);
  color: white;
}
.inner-page .sideRight {
  width: 70%;
}


.inner-page .sideLeft.column .inner-contact .c-box a:hover:after {
  width: 100%;
}
.inner-page .sideLeft.column .inner-contact .c-box a:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--primary);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.inner-page .sideLeft.column .inner-contact .c-box span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.inner-page .sideLeft.column .inner-contact .c-box a {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  /*font-weight: bold;*/
  background: #000;
  padding: 12px 30px;
  position: relative;
  /*-webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);*/
  margin-left: 5px;
}
.inner-page .sideLeft.column .inner-contact .c-box h6 {
  font-size: 20px;
  /*font-weight: 700;*/
  color: #fff;
  /*text-transform: uppercase;*/
  margin-bottom: 20px;
}
.inner-page .sideLeft.column .inner-contact .c-box h6 span {
  color: var(--primary);
  display: block;
}
.inner-page .sideLeft.column .inner-contact .c-box h5 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.inner-page .sideLeft.column .inner-contact {
  background: url(/piaozhihua/2023/08/29/product-bar-bg-2.jpg) no-repeat center center;
  padding: 215px 40px 125px;
  background-size: cover;
  margin-top: 40px;
}
.inner-page .sideLeft .box .list ul li .children li {
  border-left: 0;
  margin-top: 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 2;
}
.inner-page .sideLeft .box .list ul li .children li:hover {
  background: var(--primary);
  color: #fff;
}

.inner-page .sideLeft .box .list ul li ul {
  margin-top: 20px;
}
.inner-page .sideLeft .box .list ul li.active:before {
  background: #fff;
}

.inner-page .sideLeft .box .list ul li.active {
  color: var(--primary);
}
.inner-page .sideLeft .box .list ul li ul li.active {
  color: #fff;
  background: var(--primary);
}


@media screen and (max-width: 1600px) {
  .inner-page .sideLeft .box h3 {
    padding: 30px 15px;
    font-size: 28px;
    line-height: 1;
  }
  .inner-page .sideLeft .box .list ul li img {
    margin-right: 10px;
  }
  .inner-page .sideLeft .box .list ul li {
    padding: 5px 10px;
    font-size: 16px;
  }
  .inner-page .sideLeft .box {
    padding: 10px;
  }
  .inner-page .sideLeft .img p {
    margin: 20px 0 30px;
  }
  .inner-page .sideLeft .img {
    padding: 40px 15px;
  }
}


@media screen and (max-width: 1400px) {
  .inner-page .sideLeft.column .inner-contact {
    padding: 150px 40px 50px;
  }
}

@media screen and (max-width: 1400px) {
  .inner-page .sideLeft.column .inner-contact {
    padding: 50px 20px 50px;
  }
}

@media screen and (max-width: 1000px) {
  .inner-page .sideLeft {
    display: none;
  }
  .inner-page .sideRight {
    width: 100%;
  }
}




.product-page .productList {
  margin-bottom: 60px;
}

.productList ul {
  margin: -15px;
}
.productList ul li {
  padding: 15px;
}

.productList ul li h3:hover{
  color: var(--primary);
}

.productList ul li a.more3 {
    font-weight: 600;
    color: #d90223;
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 10px 30px;
    background: #fff;
    margin: 0 auto;
    font-size: 16px;
    z-index: 3;
    border: 1px solid #d90223;
}

.productList ul li a.more3 em {
    z-index: 3
}

.productList ul li a.more3:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #d90223;
    left: -100%;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    top: 0;
    z-index: -1
}

.productList ul li a.more3:hover:before {
    left: 0;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all
}

.productList ul li a.more3:hover {
    color: #fff
}





.prodet-page .prodet-1 .prodet-box {
  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;
}
.prodet-page .prodet-1 .prodet-box .left {
  width: 50%;
  padding-left: 10.5%;
  position: relative;
}
.prodet-page .prodet-1 .prodet-box .left .big {
  position: relative;
}
.prodet-page .prodet-1 .prodet-box .left .big .big-img {
  display: block;
  border: 1px solid #ececec;
  background: #f1f1f1;
}
.prodet-page .prodet-1 .prodet-box .left .big h4 {
  text-align: right;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  padding: 30px 0 12px;
}
.prodet-page .prodet-1 .prodet-box .left .big .arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
}
.prodet-page .prodet-1 .prodet-box .left .big .arrows button {
  width: 53px;
  height: 53px;
  border: none;
}
.prodet-page .prodet-1 .prodet-box .left .big .arrows .slick-prev {
  background: url(/yztransformer/2022/03/24/left.png) no-repeat center center;
  background-size: 100% 100%;
}
.prodet-page .prodet-1 .prodet-box .left .big .arrows .slick-next {
  background: url(/yztransformer/2022/03/24/right.png) no-repeat center center;
  background-size: 100% 100%;
  margin-left: 10px;
}
.prodet-page .prodet-1 .prodet-box .left .img-scroll {
  position: absolute;
  width: 17%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.prodet-page .prodet-1 .prodet-box .left .img-scroll ul{
  margin: -10px;
}
.prodet-page .prodet-1 .prodet-box .left .img-scroll ul li {
  padding: 10px;
}
.prodet-page .prodet-1 .prodet-box .left .img-scroll ul li a {
  display: inline-block;
  border-radius: 1px;
  overflow: hidden;
  border: 1px solid #ececec;
}
.prodet-page .prodet-1 .prodet-box .right {
  width: 50%;
  padding-left: 5%;
}
.prodet-page .prodet-1 .prodet-box .right h1.tit {
  font-size: 30px;
  color: #000;
}
.prodet-page .prodet-1 .prodet-box .right .content {
  padding: 15px 0 30px;
  font-size: 16px;
  line-height: 30px;
    color: #000;
    overflow: auto;
    height: 400px;
}

.prodet-page .prodet-1 .prodet-box .right .content strong{
  font-weight: bold;
}

.prodet-page .prodet-1 .prodet-box .right .sgs {
  margin: 30px 0 45px;
}
.prodet-page .prodet-1 .prodet-box .right .link a {
  display: inline-block;
  padding: 12px 0;
  border: 2px solid var(--primary);
  background: var(--primary);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  width: 160px;
  color: #fff;
}

.prodet-page .prodet-1 .prodet-box .right .link a.active,
.prodet-page .prodet-1 .prodet-box .right .link a:hover {
  background: #000;
  border: 2px solid #000;
}
.prodet-page .prodet-1 .prodet-box .right .link .inquiry {
  margin-left: 20px;
  background: none;
  color: #014099;
}
.prodet-page .prodet-1 .prodet-box .right .link .inquiry:hover {
  background: #014099;
  color: #fff;
  border: 2px solid #014099;
}
.prodet-page .prodet-1 .prodet-box .right .link .pdf {
  margin-left: 20px;
  background: 0 0;
  color: var(--primary);
}
.prodet-page .prodet-1 .prodet-box .right .link .pdf:hover {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.prodet-page .prodet-2 .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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.prodet-page .prodet-2 .box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 1px solid #d9d9d9;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.prodet-page .prodet-2 .box .left {
  background: #fff;
}
.prodet-page .prodet-2 .box .left ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.prodet-page .prodet-2 .box .left ul li {
  font-size: 16px;
  line-height: 1;
  color: #616161;
  padding: 0 30px;
  border-right: 1px solid #616161;
}
.prodet-page .prodet-2 .box .left ul li:last-child {
  border-right: 0 solid #616161;
}
.prodet-page .prodet-2 .box .left ul li:first-child {
  padding: 0 30px 0 0;
}
.prodet-page .prodet-2 .box .right {
  background: #fff;
  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: 15px;
}
.prodet-page .prodet-2 .box .right p {
  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;
  font-size: 14px;
  line-height: 1;
  color: #000000;
  margin-left: 65px;
}
.prodet-page .prodet-2 .box .right p:first-child {
  margin-left: 0;
}
.prodet-page .prodet-2 .box .right p img {
  margin-right: 15px;
}

.prodet-page .prodet-4 .relatedBox ul{
  margin: -10px;
}

.prodet-page .prodet-4 .relatedBox ul li{
  padding: 10px;
}

.prodet-page .prodet-4 .relatedBox ul li a {
  display: block;
  text-align: center;
}
.prodet-page .prodet-4 .relatedBox ul li h4 {
  font-size: 18px;
  color: #000000;
  padding: 15px 0 10px;
  min-height: 88px;
}

.prodet-page .prodet-4 .relatedBox ul li h4:hover{
  color: #d90223;
}

.prodet-page .prodet-5 {
  padding: 0px 0 50px;
}

.prodet-page .prodet-5 .content {
  font-size: 16px;
  line-height: 30px;
}
.prodet-page .prodet-5 .pro {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.prodet-page .prodet-5 .pro .pro-left {
  width: 50%;
  padding-right: 40px;
}
.prodet-page .prodet-5 .pro .pro-left p {
  font-size: 15px;
  padding: 5px 0;
}
.prodet-page .prodet-5 .pro .pro-right {
  width: 50%;
}

.inner-page.prodet-page .prodet-4 h5:before {
  content: '';
  width: 15px;
  height: 15px;
  background: var(--primary);
  display: inline-block;
  margin-right: 10px;
}
.inner-page.prodet-page .prodet-4 h5 {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: bold;
  margin-bottom: 30px;
}


@media (max-width:1000px) {
  .prodet-page .prodet-1 .prodet-box{
    display: block;
  }
  .prodet-page .prodet-1 .prodet-box .left .img-scroll{
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .prodet-page .prodet-1 .prodet-box .left{
    width: 100%;
    padding-left: 0;
  }
  .prodet-page .prodet-1 .prodet-box .right{
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width:700px) {
  .prodet-page .prodet-2 .box .left{
    display: none;
  }
  .prodet-page .prodet-2 .box::after{
    display: none;
  }
}

@media (max-width:500px) {
  .prodet-page .prodet-2 .box .right{
    display: block;
    padding-left: 0;
  }
  .prodet-page .prodet-2 .box .right p{
    margin: 10px 0;
  }
}

.p06-1-s5 .mml-row>ul>li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}
.p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.p06-1-s5 .mml-row>ul>li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {
    padding-right: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.p06-1-s5 h2 {
    margin-bottom: 30px;
    font-size:40px;
    font-weight: bold;
    color: #363636;
}

.p06-1-s5 p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.6;
}

.p06-1-s5 .img-wrap {
    max-width: 822px;
    width: 54%
}

.p06-1-s5 .text {
    max-width: 593px
}

.p06-1-s5 .swiper-pagination {
    position: absolute;
    margin-top: 0
}

.p06-1-s5 .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px
}

@media (max-width:1200px) {
    .p06-1-s2 .small {
        margin-top: 0;
        max-width: 100%
    }

    .p06-1-s4 .text {
        margin: 0
    }
}

@media (max-width:960px) {
    .p06-1-s2 .tab {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p06-1-s2 .tab li {
        width: calc(50% - 2px);
        margin-bottom: 2px
    }
}

@media (max-width:768px) {
    .p06-1-s1 {
        padding: 40px 0
    }

    .p06-1-s4 .text {
        padding: 10px
    }

    .p06-1-s5 {
        padding-bottom: 40px
    }

    .p06-1-s5 .mml-row>ul>li {
        margin-top: 20px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .img-wrap,.p06-1-s5 .mml-row>ul>li:nth-child(even) .img-wrap {
        width: 100%
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap,.p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {
        margin-top: 20px;
        padding: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text,.p06-1-s5 .mml-row>ul>li:nth-child(even) .text {
        max-width: 100%;
        text-align: center
    }
}

@media (max-width:540px) {
    .p06-1-s2 .tab li {
        width: 100%
    }
}


.p05 h2 {
    font-size: 46px;
    font-weight: bold;
    line-height: 1;
}
.p05 div,
.p05 p {
  font: inherit;
}
.white {
    color: #fff;
}


.p05 .support .item{
  display: flex;
  align-items: center;
  margin: 30px 0;
}


.p05 {
  font-size: 16px
}

.p05 h2 {
  margin-bottom: 40px
}

.p05 .samples,
.p05 .consultation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 120px auto
}

.p05 .samples .mml-text,
.p05 .consultation .mml-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  max-width: 50%;
  color: #565656;
  font-size: 18px;
}

.p05 .samples .mml-image,
.p05 .consultation .mml-image {
  margin: auto
}

.p05 .samples h2,
.p05 .consultation h2 {
  color: black;
  text-align: initial;
  line-height: 1.4;
}

.p05 .samples p,
.p05 .samples ul,
.p05 .consultation p,
.p05 .consultation ul {
  margin-top: 15px;
  line-height: 2;
}

.p05 .samples li,
.p05 .consultation li {
  margin: 5px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
}

.p05 .samples .green,
.p05 .consultation .green {
  margin-right: 5px;
  color: #56d079
}

.p05 .consultation {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  /*max-width: 1404px;*/
}

.p05 .stable {
  overflow: hidden;
  background-color: #19181d;
  text-align: center
}

.p05 .stable h2{
  color: white;
}

.p05 .stable p {
  margin: 0 auto 15px;
  max-width: 750px;
  color: gray;
  line-height: 1.6;
}

.p05 .slicker-stable {
  /*max-width: 1700px;*/
  margin: 60px 0 0;
  /*-webkit-transform: translate(25%, 0);
  -ms-transform: translate(25%, 0);
  transform: translate(25%, 0)*/
}


.p05 .slicker-stable .slick-slide {
  position: relative;
  margin: 0 20px
}


.p05 .slick-dots {
  max-width: 820px;
  width: 50%;
  margin: 40px auto 0;
}

.p05 .slick-dots > li {
  display: inline-block;
  margin:0 10px;
  width:12px;
  height:12px;
  background-color:#fff;
  border-radius:50%;
  cursor:pointer;
  -webkit-transition:all 0.24s;
  -o-transition:all 0.24s;
  transition:all 0.24s;
}

.p05 .slick-dots > li button{display:none}

.p05 .slick-dots > li.slick-active {
  background-color: var(--primary);
}


.p05 .honor .list ul{
  margin: -20px;
}

.p05 .honor .list ul li{
  padding: 20px;
}

.p05 .support {
  overflow: hidden;
  color: white
}

.p05 .support .mml-row {
  margin: 60px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}

.p05 .support .mml-row:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row
}

.p05 .support .mml-image {
  margin: auto
}

.p05 .support .mml-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px;
  max-width: 50%;
  color: #000;
  text-align: initial;
}

.p05 .support .sup-title {
  display: block;
  margin-top: 70px;
  color: #111;
  line-height: 1.4;
}

.p05 .support h3 {
  margin-bottom: 30px;
  font-size: 40px;
  margin-left: 80px;
  font-weight: 700;
}

.p05 .support p {
  margin-top: 15px;
  font-size: 18px;
  margin-left: 80px;
  line-height: 1.6;
}

@media (max-width:1200px) {
  .p05 .slicker-stable {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }

  .p05 .slick-dots {
    max-width: unset;
    width: unset
  }
}

@media (max-width:1000px) {

  .p05 .consultation,
  .p05 .samples {
    display: block
  }

  .p05 .consultation .mml-image,
  .p05 .samples .mml-image {
    width: unset
  }

  .p05 .consultation .mml-text,
  .p05 .samples .mml-text {
    margin: auto
  }
}

@media (max-width:780px) {
  .p05 .support .mml-row {
    display: block;
    margin: 40px auto
  }

  .p05 .support .mml-image {
    width: unset;
    max-width: unset
  }

  .p05 .support .mml-text {
    margin: auto
  }

  .p05 .support .sup-title {
    text-align: center
  }
}

@media (max-width:600px) {
  .p05 h2 {
    margin-bottom: 20px
  }

  .p05 .consultation,
  .p05 .samples {
    margin: 40px 0
  }

  .p05 .stable {
    padding: 40px 0
  }

  .p05 .slicker-stable,
  .p05 .slick-dots {
    margin-top: 20px
  }
}

@media only screen and (max-width:1000px){
  .p05 .samples .mml-text, .p05 .consultation .mml-text{
    max-width: 100%;
  }

  .p05 h2{
    font-size: 30px;
  }

  .p05 .support .item{
    display: block;
  }

  .p05 .support .mml-text{
    max-width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .p05 .consultation{
    display: block;
  }
  .p05 .samples, .p05 .consultation{
    display: block;
  }
  .p05 .samples .mml-image, .p05 .consultation .mml-image{
    width: 100%;
  }
  .p05 .support .mml-image img{
    width: 100%;
  }
  .p05 .samples .mml-image img, .p05 .consultation .mml-image img{
    width: 100%;
  }
}
@media screen and (max-width: 501px) {
  .p05 .slicker-stable .slick-list{
    padding-right: 100px !important;
  }
}


.i-why .list ul li {
  border: 1px solid #eaeaea;
}
.i-why .list .content {
  padding: 30px;
  background-color: #FFFFFF;
  line-height: 2;
    height: 360px;
}
.i-why .list .content .tags {
  min-height: 138px;
}
.i-why .list .content span {
  background: url(../images/why-yes.jpg) no-repeat left center;
}

.btn2 {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #1b1a1a;
    border-radius: 3px;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.btn2:hover {
    background-color: #d90223;
}

@media screen and (max-width: 1000px) {
  .i-why .list ul li {
    width: 50%!important;
  }
  .i-why {
    margin-bottom: 0;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 500px) {
  .i-why .list ul li {
    width: 100%!important;
  }
}



.technology-page .technology-1 h2.title {
  text-transform: none;
  text-align: center;
}
.technology-page .technology-1 h6 {
  font-weight: bold;
  font-size: 28px;
  color: #333;
  margin: 3em 0 1em;
}
.technology-page .technology-1 .list ul {
  margin: -8px;
}
.technology-page .technology-1 .list ul li {
  padding: 8px;
}
.technology-page .technology-1 .list ul li .box {
  background: #f5f5f5;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.technology-page .technology-1 .list ul li .box i.number {
  font-weight: 900;
  font-size: 135px;
  color: #858585;
  opacity: 0.08;
  right: 0.05em;
  top: 0.09em;
  line-height: .7;
  z-index: -1;
  position: absolute;
}
.technology-page .technology-1 .list ul li .box .text {
  margin: 1.5em;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 4.8em;
  position: relative;
  z-index: 1;
}
.technology-page .technology-1 .list ul li .box .img {
  height: 260px;
  background-size: cover;
  background-position: center center;
  display: block;
  position: relative;
}
.technology-page .technology-1 .list ul li .box .img i {
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.technology-page .technology-1 .list ul .slick-arrow {
  border-radius: 0;
  background-color: rgba(153, 153, 153, 0.5);
}
.technology-page .technology-1 .list ul .slick-arrow.slick-prev {
  left: auto;
  right: 104%;
}
.technology-page .technology-1 .list ul .slick-arrow.slick-next {
  right: auto;
  left: 104%;
}


.technology-page .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-radius: 100%;
  background-size: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
}
.technology-page .slick-arrow:after {
  content: '';
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  border-radius: inherit;
  background-repeat: no-repeat;
  background-position: center center;
}
.technology-page .slick-arrow.slick-prev {
  left: 3%;
}
.technology-page .slick-arrow.slick-prev:after {
  background-image: url("../images/icon-prev.png");
}
.technology-page .slick-arrow.slick-next {
  right: 3%;
}
.technology-page .slick-arrow.slick-next:after {
  background-image: url("../images/icon-next.png");
}
.technology-page .slick-arrow:hover {
  background: white;
}
.technology-page .slick-arrow:hover:after {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}


@media screen and (max-width: 1600px) {
  .technology-page .slick-arrow {
    width: 50px;
    height: 50px;
  }
  .technology-page .slick-arrow:after {
    background-size: 12px;
  }
  .technology-page .slick-arrow.slick-prev {
    left: 10px;
  }
  .technology-page .slick-arrow.slick-next {
    right: 10px;
  }
}

@media screen and (max-width: 500px) {
  .technology-page .slick-arrow {
    display: none !important;
  }
}


.news-page .news-1 {
  padding: 5rem 0 4rem;
}
.news-page .news-1 .navList ul {
  margin: -10px -25px;
}
.news-page .news-1 .navList ul li {
  display: inline-block;
  vertical-align: top;
  padding: 10px 25px;
}
.news-page .news-1 .navList ul li a {
  display: inline-block;
  line-height: 50px;
  height: 50px;
  padding: 0 40px;
  font-weight: 500;
  font-size: 24px;
  color: #301500;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .navList ul li a:hover,
.news-page .news-1 .navList ul li a.active {
  background: #d90223;
  color: white;
  border-radius: 6px;
}
.news-page .news-1 .list {
  margin-top: 15px;
}
.news-page .news-1 .list ul {
  margin: -30px -13px;
}
.news-page .news-1 .list ul li {
  padding: 30px 13px;
}
.news-page .news-1 .list ul li .box {
  padding: 20px 20px 40px 20px;;
  border-radius: 15px;
  -o-box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.07);
  box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.07);
}
.news-page .news-1 .list ul li .box a.img-box {
  border-radius: inherit;
  height: 260px;
  position: relative;
    background-size: cover;
    display: block;
    background-position: center center;
}
.news-page .news-1 .list ul li .box time {
  margin-top: 30px;
  font-weight: 500;
  font-size: 18px;
  color: #a0a0a0;
  display: block;
}
.news-page .news-1 .list ul li .box time img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -0.3em;
}
.news-page .news-1 .list ul li .box h6 {
  margin: 10px 0;
  font-size: 22px;
  color: #301500;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3em;
  font-weight: 600;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .list ul li .box h6:hover {
  color: #d90223;
}
.news-page .news-1 .list ul li .box p {
  font-size: 18px;
  line-height: 1.6;
  color: #a0a0a0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 4.8em;
}
.news-page .news-1 .list ul li .box a.link {
  margin-top: 20px;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: #d90223;
}
.news-page .news-1 .list ul li .box a.link img {
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  /*margin-top: -0.2em;*/
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  left: 0;
}
.news-page .news-1 .list ul li .box a.link:hover img {
  left: 10px;
}

.newdet-page{
  padding-bottom: 5rem;
}
.newdet-page .newdet-1 {
  padding: 4rem 0 0rem;
  text-align: center;
}
.newdet-page .newdet-1 h1 {
  font-size: 36px;
  color: #301500;
  font-weight: bold;
  line-height: 1.2;
}
.newdet-page .newdet-1 time {
  display: block;
  font-weight: 500;
  font-size: 20px;
  color: #a0a0a0;
  line-height: 1.2;
  margin-top: 20px;
}
.newdet-page .newdet-1 .text {
  margin: 40px 0 30px;
  padding: 40px 0;
  text-align: left;
  border-top: 1px #301500 dotted;
  border-bottom: 1px #301500 dotted;
  font-size: 18px;
  line-height: 32px;
}
.m-link {
  color: #767676
}
.newdet-page .newdet-1 .m-link {
  font-size: 18px;
  color: #a0a0a0;
  max-width: 50%;
  display: block;
  text-align: left;
  float: left;
}
.newdet-page .newdet-1 .m-link a {
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .newdet-1 .m-link a:hover {
  color: #d90223;
}
.newdet-page .newdet-1 .share {
  float: right;
  margin-top: 20px;
}
.newdet-page .newdet-1 .share a {
  font-size: 20px;
  color: #301500;
  margin-left: 18px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .newdet-1 .share a:hover {
  color: #d90223;
}
.newdet-page .newdet-2 {
  padding-bottom: 4.25rem;
}
.newdet-page .newdet-2 .productList {
  margin-top: 50px;
}

@media screen and (max-width: 1000px) {
  .news-page .news-1 .navList{
    display: none;
  }

  .newdet-page .newdet-1 h1{
    font-size: 24px;
    line-height: 36px;
  }

  .newdet-page .newdet-1 .text{
    font-size: 16px;
    line-height: 30px;
  }

  .newdet-page .newdet-1 .m-link{
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .newdet-page .newdet-1 .m-link{
    max-width: 100%;
  }
  .newdet-page .newdet-1 .share{
    float: none;
  }
  .newdet-page .newdet-1 .m-link{
    float: none;
  }
}

.contact-page .contact-1 {
  padding: 5rem 0;
}
.contact-page .contact-1 .header p {
  font-size: 18px;
  line-height: 1.6;
  color: #7b7b7b;
  margin-top: 1rem;
  width: 90%;
}
.contact-page .contact-1 .content {
  margin-top: 3.95rem;
}
.contact-page .contact-1 .content ul {
  margin-right: -6rem;
  margin-bottom: -5rem;
}
.contact-page .contact-1 .content ul li {
  padding-right: 6rem;
  margin-bottom: 5rem;
}
.contact-page .contact-1 .content ul li .img {
  display: inline-block;
  vertical-align: top;
}
.contact-page .contact-1 .content ul li .text {
  display: inline-block;
  width: 80%;
  padding-left: 1.45rem;
}
.contact-page .contact-1 .content ul li .text h4 {
  font-size: 24px;
  color: #282828;
  font-weight: 700;
  line-height: 1.4;
}
.contact-page .contact-1 .content ul li .text p {
  font-size: 18px;
  line-height: 1.6;
  color: #898989;
  margin-top: 0.8rem;
}
.contact-page .contact-2 {
  position: relative;
  z-index: 9;

}
.contact-page .contact-2 .box {
  background-color: #ffffff;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 4rem 6rem;
  margin-bottom: 100px;
}
.contact-page .contact-2 .box h3 {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}
.contact-page .contact-2 .box form {
  margin-top: 3rem;
}
.contact-page .contact-2 .box form ul {
  margin-right: -1rem;
}
.contact-page .contact-2 .box form ul li {
  padding-right: 1rem;
  margin-bottom: 20px;
}
 .contact-page .contact-2 .box form ul li label {
    font-size: 18px;
    margin-bottom: 10px
  }
.contact-page .contact-2 .box form ul li input[type="text"],
.contact-page .contact-2 .box form ul li textarea {
  width: 100%;
  height: 60px;
  background-color: #fafafa;
  color: #3d4459;
  text-indent: 0px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #fafafa;
  font-size: 15px;
  font-weight: 400;
  padding-left: 20px;
}
.contact-page .contact-2 .box form ul li input[type="text"]:focus,
.contact-page .contact-2 .box form ul li textarea:focus {
  border-color: #eee;
}
.contact-page .contact-2 .box form ul li input[type="text"]::placeholder,
.contact-page .contact-2 .box form ul li textarea::placeholder {
  color: #898989;
}
.contact-page .contact-2 .box form ul li input[type="text"]::-webkit-input-placeholder,
.contact-page .contact-2 .box form ul li textarea::-webkit-input-placeholder {
  color: #898989;
}
.contact-page .contact-2 .box form ul li input[type="text"]:-ms-input-placeholder,
.contact-page .contact-2 .box form ul li textarea:-ms-input-placeholder {
  color: #898989;
}
.contact-page .contact-2 .box form ul li textarea {
  height: 140px;
  padding-top: 20px;
}
.contact-page .contact-2 .box form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-2 .box form ul li input[type="submit"] {
  display: inline-block;
  color: #fff;
  width: 169px;
  height: 53px;
  text-align: center;
  border-radius: 25px;
  border: none;
  background: #d90223;
  font-size: 18px;
  margin: 0 0 0 auto;
  transition: .5s;
  -webkit-transition: .5s;
  -ms-transiton: .5s;
  -o-transition: .5s;
}
.contact-page .contact-2 .box form ul li input[type="submit"]:hover {
  background: #000;
}

.contact-page .contact-1 h2.title {font-size: 42px; font-weight: 700;}

@media screen and (max-width: 1200px) {
  .contact-page .contact-2 .box {
    padding: 4rem 2rem;
  }
  .contact-page .contact-1 .content ul {
    margin-right: -4rem;
  }
  .contact-page .contact-1 .content ul li {
    padding-right: 4rem;
  }
  .contact-page .contact-1 .content ul li .text {
    padding-left: 2rem;
    width: 76%;
  }
}

@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .content ul li .img {
    width: 100%;
  }
  .contact-page .contact-1 .content ul li .text {
    width: 100%;
    padding: 2rem 0 0 0;
  }
}

@media screen and (max-width: 700px) {
  .contact-page .contact-1 .header p {
    width: 100%;
    font-size: 14px;
  }
  .contact-page .contact-1 .content ul {
    margin-right: 0;
  }
  .contact-page .contact-1 .content ul li {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .contact-page .contact-1 .content ul li .text h4 {
    font-size: 20px;
  }
  .contact-page .contact-1 .content ul li .text p {
    font-size: 14px;
  }
  .contact-page .contact-2 .box {
    padding: 4rem 1rem;
  }
  .contact-page .contact-2 .box form ul {
    margin-right: 0;
  }
  .contact-page .contact-2 .box form ul li {
    width: 100%;
    padding-right: 0;
  }
}
a.senye {
    font-size: 16px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 450px;
    display: inline-block;
    vertical-align: middle;
}

#seo_public_from h4{font-size:24px;font-weight:bold;color:#333;}#seo_public_from .seo_public_from{margin-top:30px;}#seo_public_from .seo_public_from ul{margin:-10px;}#seo_public_from .seo_public_from ul li{padding:10px;}#seo_public_from .seo_public_from ul li.wid-100{width:100%;}#seo_public_from .seo_public_from ul li input,#seo_public_from .seo_public_from ul li textarea{width:100%;line-height:24px;padding:10px;border:1px solid #eee;font-size:18px;color:black;background:white;-webkit-transition:.5s;-moz-transition:.5s;-ms-transition:.5s;-o-transition:.5s;transition:.5s;}#seo_public_from .seo_public_from ul li input:focus,#seo_public_from .seo_public_from ul li textarea:focus{border-color:black;}#seo_public_from .seo_public_from ul li textarea{height:120px;}#seo_public_from .seo_public_from ul li input[type="submit"]{width:auto;display:inline-block;padding:10px 30px;background:#d90223;color:white;}#seo_public_from .seo_public_from ul li input[type="submit"]:hover{opacity:.7;}







.right_nav_list{position:fixed;bottom:120px;right:20px;z-index:10} 
.right_nav_list ul li{transition:all .5s;border-radius:50%;margin-top:10px;cursor:pointer;padding:0;position:relative;color:#fff;width:58px;height:58px;font-size:30px;background-color:#333;text-align:center;line-height:58px}
.right_nav_list ul li .text{padding:0;width:100%;height:100%}
.right_nav_list ul li:hover{background-color:#000}
.right_nav_list ul li .cont{position:absolute;left:-150px;top:0;width:150px;min-height:100%;padding:0 5px;-webkit-perspective:500px;-moz-perspective:500px;perspective:500px;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;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);opacity:0;-webkit-transition:opacity 0.3s,-webkit-transform 0.5s;transition:opacity 0.3s,-webkit-transform 0.5s;-o-transition:opacity 0.3s,-o-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,-o-transform 0.5s;transition:transform 0.5s,opacity 0.3s,-webkit-transform 0.5s;-webkit-transition:-webkit-transform 0.5s,opacity 0.3s;-moz-transition:-moz-transform 0.5s,opacity 0.3s;overflow:hidden;-webkit-transform-origin:top;-moz-transform-origin:top;-ms-transform-origin:top;-o-transform-origin:top;transform-origin:top}
.right_nav_list ul li .cont #ewm{width:100%;background-color:#fff;border-radius:5px;padding:8px;border:1px solid #ccc}
.right_nav_list ul li:hover .cont{-webkit-transform:rotate3d(0,0,0,-90deg);-moz-transform:rotate3d(0,0,0,-90deg);transform:rotate3d(0,0,0,-90deg);opacity:1}
@media (max-width:500px){.right_nav_list{right:5px;bottom:150px}
.right_nav_list ul li{width:40px;height:40px;margin-top:5px;font-size:25px;line-height:40px}
}#pups_shadow{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#000;opacity:0.6;z-index:21;display:none}
#seo_form_cont{position:fixed;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-height:80%;width:500px;max-width:90%;-o-box-shadow:0 0 10px rgba(0,0,0,0.1);-webkit-box-shadow:0 0 10px rgba(0,0,0,0.1);box-shadow:0 0 10px rgba(0,0,0,0.1);z-index:22;background:white;padding:30px;overflow:auto}
#seo_form_cont h4{font-size:18px;color:#222;text-transform:capitalize;line-height:1;font-weight:bold;position:absolute;left:0;width:100%;top:0;padding:15px 20px;background:#f5f5f5;-o-box-shadow:0 0 5px rgba(0,0,0,0.1);-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}
#seo_form_cont form{margin-top:40px}
#seo_form_cont i.close{width:30px;height:30px;position:absolute;top:10px;right:10px;background:#eee;cursor:pointer;cursor:hand;-webkit-transition:0.5s;transition:0.5s}
#seo_form_cont i.close::after,#seo_form_cont i.close::before{content:'';-webkit-transition:0.5s;transition:0.5s;width:70%;height:2px;margin-top:-1px;background:black;position:absolute;top:50%;left:15%;-webkit-transform:rotate(45deg);transform:rotate(45deg)}
#seo_form_cont i.close::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
#seo_form_cont i.close:hover{background:#1c5715}
#seo_form_cont i.close:hover::before,#seo_form_cont i.close:hover::after{background:white}
#seo_form_cont ul li{margin-bottom:10px;position:relative}
#seo_form_cont ul li label{font-size:14px;margin-bottom:10px;display:block}
#seo_form_cont ul li label em{color:red;margin-right:2px}
#seo_form_cont ul li input,#seo_form_cont ul li textarea{width:100%;line-height:24px;padding:6px 15px;border:1px solid #eee;-webkit-transition:0.5s;transition:0.5s;font-size:16px}
#seo_form_cont ul li input:focus,#seo_form_cont ul li textarea:focus{border-color:#1c5715}
#seo_form_cont ul li textarea{height:80px}
#seo_form_cont ul li input[type="submit"]{width:auto;padding:6px 40px;display:inline-block;background:#000000;color:white;-webkit-transition:0.5s;transition:0.5s;cursor:pointer}
#seo_form_cont ul li input[type="submit"]:hover{opacity:0.7}
#seo_form_cont ul li:last-child{margin-bottom:0}