@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;
}
body {
  font-family: "Poppins";
  font-weight: 400;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1400px;
}

#ewm{
  width: 100px;
}

#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
      box-shadow: 0px -0.4px 9px 3px rgb(0 0 0 / 8%);
}
#header .h-top .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 .h-top .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .h-top .ui.menu ul li {
  display: inline-block;
  margin-right: 40px;
}
#header .h-top .ui.menu ul li i {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#header .h-top .ui.menu span.Msgbtn {
  display: inline-block;
  padding: 5px 15px;
  color: white;
  background-color: #b60005;
  cursor: pointer;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#header .h-top .ui.menu span.Msgbtn:hover {
  background-color: black;
}
#header .line hr {
  margin: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}
#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 .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: auto;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  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;
}
#header .nav .ui.menu .menu-box ul.menu > li::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-35deg);
  -moz-transform: translate(-50%, -50%) rotate(-35deg);
  -ms-transform: translate(-50%, -50%) rotate(-35deg);
  transform: translate(-50%, -50%) rotate(-35deg);
  width: 0;
  height: 14px;
  background-color: #b60005;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, -webkit-calc(100% - 10px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 0, -moz-calc(100% - 10px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#header .nav .ui.menu .menu-box ul.menu > li + li {
  margin-left: 60px;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover::before {
  width: 46px;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  padding: 25px 0;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  min-width: 180px;
  white-space: nowrap;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #fd2318;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 14px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .social-links a {
  margin: 0 4px;
  font-size: 20px;
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: white;
  background-color: #a6a6a6;
  font-family: FontAwesome;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#header .nav .ui.menu .social-links a:hover {
  background-color: #b60005;
}
#header .nav .ui.menu .p-search {
  border: 1px solid #e8e8e8;
}
#header .nav .ui.menu .p-search input {
  font-size: 14px;
  height: 37px;
  width: 140px;
  border: none;
  padding: 0 10px;
}
#header .nav .ui.menu .p-search button {
  height: 37px;
  width: 51px;
  background-color: #b60005;
  border: none;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#header .nav .ui.menu .p-search button:hover {
  background-color: black;
}
#header .nav .ui.menu .h-search {
  display: none;
  vertical-align: middle;
  margin-left: 20px;
  margin-right: 20px;
  cursor: pointer;
  cursor: hand;
}
#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;
}
table tr {
  width: auto !important;
  height: auto !important;
}
table tr:nth-child(even) {
  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: #b60005;
  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: white;
  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: black;
  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;
  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: 14px;
}
#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 ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  right: 0;
  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 {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.hover-language ul.sub-menu li:hover a {
  background: #ffb11b;
  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 li {
  position: relative;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner h2 {
  margin-bottom: 30px;
  color: white;
  font-size: 59px;
  font-weight: bold;
}
#banner p {
  margin-bottom: 40px;
  color: white;
  font-size: 20px;
  padding-left: 30px;
  position: relative;
  line-height: 2;
}
#banner p::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background-color: #b30207;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b30207), to(#600305));
  background-image: -webkit-linear-gradient(#b30207, #600305);
  background-image: -moz-linear-gradient(#b30207, #600305);
  background-image: linear-gradient(#b30207, #600305);
}
.btns a {
  display: inline-block;
  vertical-align: middle;
  line-height: 42px;
  border: 1px solid #b60005;
  color: white;
  background-color: #b60005;
  text-align: center;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.btns a span {
  display: inline-block;
  vertical-align: top;
}
.btns a svg {
  display: inline-block;
  vertical-align: top;
}
.btns a.on {
  background-color: transparent;
  color: #b60005;
}
.btns a.play {
  padding: 0;
  width: 42px;
  font-family: FontAwesome;
}
.btns a:hover {
  color: white;
  background-color: black;
}
.baseTit {
  font-size: 70px;
}
.baseTit::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background-color: #b30207;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b30207), to(#600305));
  background-image: -webkit-linear-gradient(#b30207, #600305);
  background-image: -moz-linear-gradient(#b30207, #600305);
  background-image: linear-gradient(#b30207, #600305);
}
.our-about .left {
  padding-left: 40px;
  padding-right: 6%;
}
.our-about .left .desc {
  color: #767676;
  line-height: 2;
}
.our-about .left .desc h1 {
  display: inline;
}
.our-about .right ul {
  margin: -15px;
}
.our-about .right ul li {
  padding: 15px;
}
.our-about .right ul li .mml-text {
  padding: 30px;
  color: white;
  background-color: black;
}
.our-about .right ul li .mml-text .num {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 30px;
}
.our-about .right ul li .mml-text .num::after {
  content: "";
  display: block;
  width: 22px;
  border-bottom: 4px solid white;
  margin-top: 10px;
}
.our-about .right ul li .mml-text .num > sup {
  vertical-align: top;
  font-weight: 400;
}
.our-about .right ul li .mml-text p {
  line-height: 2;
}
.our-about .right ul li:nth-child(2) {
  margin-top: 30px;
}
.our-about .right ul li:nth-child(2) .mml-text {
  background-color: #b30207;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b30207), to(#600305));
  background-image: -webkit-linear-gradient(#b30207, #600305);
  background-image: -moz-linear-gradient(#b30207, #600305);
  background-image: linear-gradient(#b30207, #600305);
}
.i-category span.tag {
  color: #b60005;
}
.i-category ul li .mml-text {
  background-color: #d9d9d9;
  padding: 40px;
  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;
}
.i-category ul li .mml-text .text .num {
  font-size: 68px;
  line-height: 1;
  color: white;
  margin-top: -23px;
}
.i-category ul li .mml-text .text .name {
  margin-top: 23px;
  font-size: 30px;
  line-height: 1.5;
  min-height: 3em;
}
.i-category ul li .mml-text .text p {
  color: #767676;
  line-height: 2;
}
.i-category ul li .mml-text .text a.Btn {
  color: #b60406;
}
.i-category ul li .mml-text .text a.Btn span {
  vertical-align: middle;
}
.i-category ul li .mml-text .text a.Btn svg {
  vertical-align: middle;
}


.i-category ul li .mml-text.rev {
  background-color: #b30207;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b30207), to(#600305));
  background-image: -webkit-linear-gradient(#b30207, #600305);
  background-image: -moz-linear-gradient(#b30207, #600305);
  background-image: linear-gradient(#b30207, #600305);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-top: 55px;
}
.i-category ul li .mml-text.rev .num {
  opacity: .22;
}
.i-category ul li .mml-text.rev .name {
  color: white;
}
.i-category ul li .mml-text.rev p {
  color: white;
  line-height: 2;
}
.i-category ul li .mml-text.rev a.Btn {
  color: white;
}
.i-category ul li .mml-text.rev a.Btn svg path {
  fill: white;
}

/*.i-category ul li:nth-child(2) {
  margin-top: 55px;
}
.i-category ul li:nth-child(2) .mml-text {
  background-color: #b30207;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b30207), to(#600305));
  background-image: -webkit-linear-gradient(#b30207, #600305);
  background-image: -moz-linear-gradient(#b30207, #600305);
  background-image: linear-gradient(#b30207, #600305);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.i-category ul li:nth-child(2) .mml-text .num {
  opacity: .22;
}
.i-category ul li:nth-child(2) .mml-text .name {
  color: white;
}
.i-category ul li:nth-child(2) .mml-text p {
  color: white;
}
.i-category ul li:nth-child(2) .mml-text a.Btn {
  color: white;
}
.i-category ul li:nth-child(2) .mml-text a.Btn svg path {
  fill: white;
}*/
.i-advantage {
  background: url(../images/adv-bg.jpg) no-repeat center;
  background-size: cover;
  color: white;
  padding: 120px 0;
}
.i-advantage .left ul {
  border: 1px solid rgba(255, 255, 255, 0.64);
}
.i-advantage .left ul li .name {
  padding: 10px 60px;
  position: relative;
  cursor: pointer;
}
.i-advantage .left ul li .name::before {
  content: "+";
  font-weight: bold;
  position: absolute;
  width: 60px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: #b60005;
  font-size: 30px;
}
.i-advantage .left ul li .text {
  border-top: 1px solid rgba(255, 255, 255, 0.64);
  padding: 30px 60px;
  display: none;
  background-color: rgba(0, 0, 0, 0.64);
}
.i-advantage .left ul li .text p {
  line-height: 2;
  min-height: 4.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.i-advantage .left ul li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.64);
}
.i-advantage .left ul li.active .name {
  color: #b60005;
}
.i-advantage .left ul li.active .name::before {
  content: "-";
  color: white;
}
.i-advantage .right ul li + li {
  margin-top: 40px;
}
.i-advantage .right ul li p {
  padding-left: 50px;
}
.our-product {
  padding: 80px 0;
}
.our-product .list {
  margin-top: 70px;
}
.our-product .list ul {
  margin: -12px;
}
.our-product .list ul li {
  padding: 12px;
}
.our-product .list ul li .img-box {
  border: 1px solid #00000012;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .list ul li .name {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .list ul li:hover .img-box {
  border-color: #b60005;
}
.our-product .list ul li:hover .name {
  color: #b60005;
}
.our-product .dots ul {
  margin-top: 70px;
}
.our-product .dots ul li {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #b30207;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b30207), to(#600305));
  background-image: -webkit-linear-gradient(#b30207, #600305);
  background-image: -moz-linear-gradient(#b30207, #600305);
  background-image: linear-gradient(#b30207, #600305);
  opacity: .3;
}
.our-product .dots ul li.slick-active {
  opacity: 1;
}
.our-product .dots ul li button {
  display: none;
}
.i-application {
  background: url(../images/app-bg.jpg) no-repeat center;
  background-size: cover;
  color: white;
  padding: 120px 0;
}
.i-application .bg{
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: .5s ease;
}
.i-application .bg.active{
  opacity: 1;
}
.i-application .left {
  padding-right: 80px;
}
.i-application .left ul {
  margin: 90px 0 0;
}
.i-application .left ul li .name {
  font-size: 30px;
  font-weight: bold;
}
.i-application .left ul li p {
  color: #a7a7a7;
  line-height: 2;
}
.i-application .right {
  padding-left: 80px;
}
.i-application .right ul {
  margin: -12px;
  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;
}
.i-application .right ul li {
  padding: 12px;
}
.i-application .right ul li .mml-text {
  line-height: 120px;
  height: 120px;
  background-color: rgba(28, 28, 28, 0.7);
  cursor: pointer;
  position: relative;
}
.i-application .right ul li .mml-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #b30207;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b30207), to(#600305));
  background-image: -webkit-linear-gradient(#b30207, #600305);
  background-image: -moz-linear-gradient(#b30207, #600305);
  background-image: linear-gradient(#b30207, #600305);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-application .right ul li .mml-text:hover::before {
  opacity: 1;
}
.i-application .right ul li .mml-text > * {
  position: relative;
}
.i-application .right ul li .mml-text i {
  width: 40%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
.i-application .right ul li .mml-text i img {
  vertical-align: middle;
}
.i-application .right ul li .mml-text p {
  width: 60%;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5;
  padding: 15px;
}
.i-application .right ul li .mml-text span {
  vertical-align: middle;
}
.i-application .right ul li .mml-text svg {
  vertical-align: middle;
}
.i-application .right ul li.active .mml-text::before {
  opacity: 1;
}
.our-news {
  padding: 100px 0;
}
.our-news span.tag {
  color: #b60005;
}
.our-news .list ul {
  margin: -23px;
}
.our-news .list ul li {
  padding: 23px;
}
.our-news .list ul li .img a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(182, 0, 5, 0.5);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-news .list ul li .name {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  line-height: 2;
}
.our-news .list ul li:hover .img a::before {
  opacity: 1;
}
.our-news .list ul li:hover .name {
  color: #b60005;
}
.i-contact {
  background: url(../images/contact-bg.jpg) no-repeat center;
  background-size: cover;
  color: white;
  padding: 50px 0;
}
.i-contact .Tit {
  font-weight: bold;
}
.i-contact .Tit::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background-color: #b30207;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b30207), to(#600305));
  background-image: -webkit-linear-gradient(#b30207, #600305);
  background-image: -moz-linear-gradient(#b30207, #600305);
  background-image: linear-gradient(#b30207, #600305);
}
.i-contact .right .form {
  max-width: 560px;
}
.i-contact .right .form ul {
  margin: -15px;
}
.i-contact .right .form ul li {
  padding: 15px;
}
.i-contact .right .form ul li.wid-100 {
  width: 100%;
}
.i-contact .right .form input {
  font-size: 16px;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: none;
  color: black;
}
#footer {
  background-color: #1c1c1c;
  color: white;
}
#footer .foot-top .foot-content {
  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;
}
#footer .foot-top .foot-content .foot-block.one {
  max-width: 180px;
}
#footer .foot-top .foot-content .foot-block.two {
  max-width: 50%;
}
#footer .foot-top .foot-content .foot-block h4 {
  font-size: 25px;
  font-weight: bold;
}
#footer .foot-top .foot-content .foot-block ul {
  margin: -5px;
}
#footer .foot-top .foot-content .foot-block ul li {
  padding: 5px;
}
#footer .foot-top .foot-content .foot-block ul li a:hover {
  color: #b60005;
}
#footer .foot-bottom .box {
  border-top: 1px solid white;
}
#footer .foot-bottom p,
#footer .foot-bottom a {
  display: inline-block;
  vertical-align: middle;
}
#footer .foot-bottom img {
  max-height: 16px;
  vertical-align: middle;
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li + li {
    margin-left: 40px;
  }
  #banner h2 {
    font-size: 40px;
  }
  #banner p {
    font-size: 16px;
  }
  .font-18 {
    font-size: 16px;
  }
  .font-20 {
    font-size: 18px;
  }
  .our-about .right ul li .mml-text .num {
    font-size: 30px;
  }
  .baseTit {
    font-size: 50px;
  }
  .i-category ul li .mml-text {
    padding: 20px;
  }
  .i-category ul li .mml-text .text .num {
    font-size: 50px;
  }
  .i-category ul li .mml-text .text .name {
    font-size: 24px;
  }
  .i-application .right ul li .mml-text p {
    padding: 10px;
  }
  .our-news .list ul {
    margin: -15px;
  }
  .our-news .list ul li {
    padding: 15px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .ui.menu .p-search {
    display: none;
  }
  #header .nav .ui.menu .h-search {
    display: block;
  }
  #header .h-top .ui.menu span.Msgbtn {
    display: none;
  }
  #header .h-top .ui.menu ul li:last-child {
    margin-right: 0;
  }
  #header .h-top .ui.menu .logo {
    width: 150px;
  }
  #banner h2 {
    font-size: 30px;
  }
  .baseTit {
    font-size: 30px;
  }
  .our-about .right ul {
    margin: -10px;
  }
  .our-about .right ul li {
    padding: 10px;
  }
  .our-about .right ul li .mml-text {
    padding: 15px;
  }
  .our-about .left {
    padding-right: 15px;
  }
  .font-40 {
    font-size: 30px;
  }
  .i-category ul li .mml-text .text .name {
    font-size: 20px;
  }
  .i-application .left {
    padding-right: 40px;
  }
  .i-application .right {
    padding-left: 0;
  }
  .font-20 {
    font-size: 16px;
  }
  .i-application .left ul li .name {
    font-size: 20px;
  }
  .i-application .right ul li .mml-text {
    line-height: 100px;
    height: 100px;
  }
  #footer .foot-top .foot-content .foot-block h4 {
    font-size: 20px;
  }
  #footer .foot-top .foot-content .foot-block ul {
    width: auto;
  }
  #footer .foot-top .foot-content .foot-block ul li {
    width: auto!important;
    display: block;
  }
  #footer .foot-top .foot-content .foot-block.two {
    max-width: none;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #nav-height {
    display: none;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner h2 {
    font-size: 24px;
  }
  #banner p {
    font-size: 14px;
  }
  .font-16 {
    font-size: 14px;
  }
  .font-18 {
    font-size: 14px;
  }
  .font-20 {
    font-size: 14px;
  }
  .font-40 {
    font-size: 24px;
  }
  .baseTit {
    font-size: 24px;
  }
  .our-about {
    margin: 0;
  }
  .our-about .left {
    width: 100%!important;
    padding: 0;
    margin-bottom: 40px;
  }
  .our-about .right {
    width: 100%!important;
  }
  .i-category {
    margin: 0;
  }
  /*.i-category ul li {
    width: 50%!important;
  }*/
  /*.i-category ul li:nth-child(2) {
    margin-top: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
  }*/
  .i-advantage {
    padding: 60px 0;
  }
  .i-advantage .left {
    width: 100%!important;
    padding: 0;
    margin-bottom: 40px;
  }
  .i-advantage .right {
    width: 100%!important;
    padding: 0;
  }
  .our-product .list {
    margin-top: 40px;
  }
  .i-application .left {
    width: 100%!important;
    padding: 0;
    margin-bottom: 40px;
  }
  .i-application .left > div:nth-child(2) {
    padding: 0;
  }
  .i-application .right {
    width: 100%!important;
  }
  .i-application .left ul {
    margin: 40px 0 0;
  }
  .i-application {
    padding: 60px 0;
  }
  .our-news {
    padding: 60px 0;
  }
  .i-contact .left {
    width: 100%!important;
    display: none;
  }
  .i-contact .right {
    width: 100%!important;
  }
  .i-contact .right .form {
    max-width: 100%;
  }
  .i-contact .right .form input {
    font-size: 14px;
  }
  #footer .foot-top {
    padding: 40px 0;
  }
  #footer .foot-top .foot-content {
    display: block;
    text-align: center;
  }
  #footer .foot-top .foot-content .foot-block.one {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #footer .foot-top .foot-content .foot-block.two {
    display: none;
  }
  #footer .foot-bottom img {
    max-height: 14px;
  }
  .i-category ul li .mml-text .text .num {
    display: none;
  }
  .our-product {
    padding: 60px 0;
  }
  .i-contact .right .form {
    padding: 0;
  }
  .i-contact .right .form input {
    height: 40px;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  #banner p {
    display: none;
  }
  .our-about .right ul li .mml-text {
    background-color: #b30207;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#b30207), to(#600305));
    background-image: -webkit-linear-gradient(#b30207, #600305);
    background-image: -moz-linear-gradient(#b30207, #600305);
    background-image: linear-gradient(#b30207, #600305);
  }
  .our-about .right ul li:nth-child(2) {
    margin-top: 0;
  }
  .i-advantage {
    display: none;
  }
  .i-application {
    display: none;
  }

  .i-category ul li .mml-text.rev{
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  #banner li {
    height: 300px;
  }
  #banner li > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .btns a {
    padding: 0 15px;
  }
  .btns a span {
    margin-right: 10px;
  }
  .i-category ul li {
    width: 100%!important;
  }
  /*.i-category ul li:nth-child(2) {
    position: relative;
    top: auto;
  }*/
  .font-40 {
    font-size: 20px;
  }
  #banner h2 {
    font-size: 20px;
  }
  .baseTit {
    font-size: 20px;
    padding-left: 20px;
  }
  .i-contact .Tit {
    padding-left: 20px;
  }
  .our-about .right ul li .mml-text .num {
    margin-bottom: 15px;
  }
  .our-about .right ul li .mml-text p br {
    display: none;
  }
}


.font-60 {
    font-size: 60px;
    line-height: 1.2
}

.mt-130 {
    margin-top: 90px
}

.pt-90 {
    padding-top: 90px
}

.pb-90 {
    padding-bottom: 90px
}

.pt-80 {
    padding-top: 80px
}

.pt-70 {
    padding-top: 70px
}

.pb-70 {
    padding-bottom: 70px
}

.transition_1 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.img_bg {
  -o-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.img_sca {
  overflow: hidden;
  display: block;
}
.img_sca:hover .img_bg {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.more_cont {
  overflow: hidden;
  position: relative;
  background-color: #b60005;
  color: #fff;
  cursor: pointer;
}
.more_cont span,
.more_cont i {
  position: relative;
  z-index: 2;
}
.more_cont::before {
  background-color: #b60005;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  z-index: 1;
}
.more_cont:hover::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}


.sca_ani {
    -webkit-animation: sca_ani 2s linear infinite;
    -moz-animation: sca_ani 2s linear infinite;
    -o-animation: sca_ani 2s linear infinite;
    animation: sca_ani 2s linear infinite
}

@-webkit-keyframes sca_ani {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-moz-keyframes sca_ani {
    0% {
        -moz-transform: scale(1.2);
        transform: scale(1.2)
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1)
    }
}

@-o-keyframes sca_ani {
    0% {
        -o-transform: scale(1.2);
        transform: scale(1.2)
    }

    100% {
        -o-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes sca_ani {
    0% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2)
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
}

.sca_ani_2 {
    -webkit-animation: sca_ani_2 2s linear infinite;
    -moz-animation: sca_ani_2 2s linear infinite;
    -o-animation: sca_ani_2 2s linear infinite;
    animation: sca_ani_2 2s linear infinite
}

@-webkit-keyframes sca_ani_2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@-moz-keyframes sca_ani_2 {
    0% {
        -moz-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -moz-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@-o-keyframes sca_ani_2 {
    0% {
        -o-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -o-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@keyframes sca_ani_2 {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}


.inner-banner .cat_cont {
  height: 400px;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}
.inner-banner .cat_cont .container {
  height: 100%;
}
.inner-banner .cat_cont .container .cat_name {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  
  text-transform: uppercase;
  font-weight: 600;
}
.inner-banner .bottom_c {
  border-bottom: 1px solid #e5e5e5;
}
.inner-banner .bottom_c .left a {
  height: 70px;
  line-height: 70px;
  
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 26px;
  position: relative;
}
.inner-banner .bottom_c .left a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  display: block;
  background: #ccc;
  top: 50%;
  margin-top: -7px;
  right: 0px;
}
.inner-banner .bottom_c .left a::before {
  position: absolute;
  content: '';
  left: 50%;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background-color: rgba(218, 37, 28, 0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inner-banner .bottom_c .left a:hover,
.inner-banner .bottom_c .left a.active {
  color: #b60005;
}
.inner-banner .bottom_c .left a:hover::before,
.inner-banner .bottom_c .left a.active::before {
  width: 100%;
  background-color: #b60005;
  left: 0;
}
.inner-banner .bottom_c .left{
  vertical-align: middle;
}
.inner-banner .bottom_c .right {
  text-align: right;
  margin: 10px 0;
  font-size: 18px;
  /*font-weight: 500;
  text-transform: uppercase;*/
  color: #777;
  vertical-align: middle;
}
.inner-banner .bottom_c .right .img {
  width: 15px;
  margin-right: 8px;
  margin: 5px 12px 0 0;
}
.inner-banner .bottom_c .right a {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inner-banner .bottom_c .right a:hover {
  color: #b60005;
}
.suatainable-page .init-1 .container {
  height: 500px;
  position: relative;
}
.suatainable-page .init-1 .container .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.suatainable-page .init-1 .container .cont {
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  width: 780px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 600;
  
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 30px;
}
.suatainable-page .init-2 .container .title_c .left {
  font-weight: 600;
  text-transform: uppercase;
  
}
.suatainable-page .init-2 .container .title_c .left .tips {
  color: #b60005;
}
.suatainable-page .init-2 .container .title_c .left .line {
  width: 250px;
  height: 1px;
  background-color: #b60005;
  margin-bottom: 10px;
}
.suatainable-page .init-2 .container .title_c .right {
  font-size: 16px;
}
.suatainable-page .init-2 .container .content {
  margin: 30px -30px 0;
}
.suatainable-page .init-2 .container .content .list {
  margin-top: 30px;
  padding: 0 30px;
}
.suatainable-page .init-2 .container .content .list .box {
  position: relative;
}
.suatainable-page .init-2 .container .content .list .box .img {
  display: block;
  width: 100%;
}
.suatainable-page .init-2 .container .content .list .box .text {
  font-weight: 600;
  
  padding: 16px 30px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  color: #fff;
}
.suatainable-page .init-2 .container .content .list .box:hover .text {
  background-color: #000;
}
.suatainable-page .init-3 .container .tips {
  text-align: center;
  
  font-weight: 600;
  text-transform: uppercase;
  color: #181818;
}
.suatainable-page .init-3 .container .content .slick {
  margin: 40px -13px 0;
}
.suatainable-page .init-3 .container .content .slick .slick-track {
  margin-left: 0;
}
.suatainable-page .init-3 .container .content .slick li {
  padding: 0 13px;
}
.suatainable-page .init-3 .container .content .slick li .box {
  display: block;
  overflow: hidden;
}
.suatainable-page .init-3 .container .content .slick li .box img {
  width: 100%;
}
.about-page .init-1{
  overflow: hidden;
}
.about-page .init-1 .container {
  position: relative;
}
.about-page .init-1 .container .sub_img {
  position: absolute;
  width: 460px;
  bottom: 0;
  right: -200px;
  z-index: -1;
}
.about-page .init-1 .container .tips {
  font-weight: bold;
  
  text-transform: uppercase;
  color: #b60005;
  text-align: center;
}
.about-page .init-1 .container .des {
  margin-top: 26px;
  line-height: 1.8;
}
.about-page .init-1 .container .list_cont {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .init-1 .container .list_cont .list {
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin: 20px 0 0 0;
}
.about-page .init-1 .container .list_cont .list .num {
  font-size: 80px;
  color: #b60005;
  font-weight: bold;
  display: inline-block;
  line-height: 0.8;
}
.about-page .init-1 .container .list_cont .list .text {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 12px;
  line-height: 1.8;
}
.about-page .init-1 .container .list_cont .list2 {
  margin: 20px 20px 0;
}
.about-page .init-2 .container {
  position: relative;
}
.about-page .init-2 .container .img {
  height: 600px;
  background-size: inherit;
  background-attachment: fixed;
}
.about-page .init-2 .container .play {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 270px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.about-page .init-2 .container .play div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 22px;
  color: #fff;
  text-align: center;
  line-height: 60px;
}
.about-page .init-2 .container .play div i {
  margin-left: 2px;
}
.about-page .init-2 .container .play .ling {
  background-color: #fff;
}
.about-page .init-2 .container .play .ling:nth-child(2) {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.about-page .init-2 .container .play .cont {
  position: relative;
  z-index: 2;
}
.about-page .init-3 {
  padding-top: 40px;
}
.about-page .init-3 .container .list {
  margin-top: 60px;
}
.about-page .init-3 .container .list .column {
  vertical-align: middle;
  position: relative;
}
.about-page .init-3 .container .list .left img {
  width: 100%;
}
.about-page .init-3 .container .list .right {
  padding-left: 60px;
}
.about-page .init-3 .container .list .right .tips,
.about-page .init-3 .container .list .right .title {
  font-weight: 600;
  color: #b60005;
  
  text-transform: uppercase;
}
.about-page .init-3 .container .list .right .line {
  width: 250px;
  height: 1px;
  background-color: #b60005;
}
.about-page .init-3 .container .list .right .title {
  color: #181818;
  margin-top: 8px;
}
.about-page .init-3 .container .list .right .des {
  color: #262626;
  margin-top: 10px;
  line-height: 2;
}
.about-page .init-3 .container .list:nth-child(2n) .left {
  left: 50%;
}
.about-page .init-3 .container .list:nth-child(2n) .right {
  left: -50%;
  padding-left: 0;
  padding-right: 60px;
}
.about-page .init-4 .container {
  text-align: center;
}
.about-page .init-4 .container .tips,
.about-page .init-4 .container .title {
  font-weight: 600;
  
  color: #b60005;
  text-transform: uppercase;
}
.about-page .init-4 .container .line {
  width: 250px;
  height: 1px;
  background-color: #b60005;
  margin: auto;
}
.about-page .init-4 .container .title {
  color: #181818;
  margin-top: 10px;
}
.about-page .init-4 .container .content {
  margin: 40px -30px 0;
}
.about-page .init-4 .container .content .slick .slick-track {
  margin-left: 0;
}
.about-page .init-4 .container .content .slick li {
  padding: 0 30px;
}
.about-page .init-4 .container .content .slick li a {
  display: block;
  overflow: hidden;
}
.about-page .init-4 .container .content .slick li a img {
  width: 100%;
}
.about-page .init-4 .container .s_page {
  margin-top: 30px;
}
.about-page .init-4 .container .s_page li {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid #b60005;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
}
.about-page .init-4 .container .s_page li button {
  display: none;
}
.about-page .init-4 .container .s_page li.slick-active {
  background-color: #b60005;
}
.about-page .init-5 .container iframe{
  display: block;
  height: 700px;
  width: 100%;
}
.about-page .init-6 .container .column {
  vertical-align: middle;
}
.about-page .init-6 .container .left img {
  width: 100%;
}
.about-page .init-6 .container .right {
  padding-left: 60px;
}
.about-page .init-6 .container .right .tips {
  font-weight: 600;
  
  text-transform: uppercase;
}
.about-page .init-6 .container .right .tips span {
  color: #b60005;
}
.about-page .init-6 .container .right .des {
  margin-top: 10px;
  line-height: 2;
}
.honor-page {
  padding-bottom: 20px;
}
.honor-page .container .list {
  border-bottom: 1px dashed #999999;
  text-align: center;
  padding: 70px 160px;
}
.honor-page .container .list .title {
  font-weight: 500;
  
  text-transform: uppercase;
}
.honor-page .container .list .des {
  margin-top: 20px;
}
.honor-page .container .list .content {
  margin: 50px -30px 0;
}
.honor-page .container .list .content .slick {
  position: relative;
}
.honor-page .container .list .content .slick .slick-arrow {
  position: absolute;
  font-size: 46px;
  cursor: pointer;
  width: 16px;
  height: 40px;
  line-height: 40px;
  color: #333333;
  right: -100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.honor-page .container .list .content .slick .slick-arrow:hover {
  color: #b60005;
}
.honor-page .container .list .content .slick .slick-prev {
  left: -100px;
}
.honor-page ul{
  margin: -15px;
}
.honor-page ul li {
  padding: 15px;
}
.honor-page .container .list .content .slick li .box {
  overflow: hidden;
  display: block;
}
.honor-page .container .list .content .slick li .box img {
  width: 100%;
}
.honor-page .container .list:last-child {
  border-bottom: none;
}
.sidebar-box .sidebar-left {
  padding-right: 40px;
  width: 320px;
  text-transform: uppercase;
  font-weight: 500;
  
  position: sticky;
  top: 130px;
}
.sidebar-box .sidebar-left .tips {
  color: #b60005;
}
.sidebar-box .sidebar-left ul li {
  margin-top: 10px;
}
.sidebar-box .sidebar-left ul li a {
  display: block;
  /*border-bottom: 1px solid #b9b6b1;*/
  padding: 4px 0;
  position: relative;
}
.sidebar-box .sidebar-left ul li a::before{
  content: '';
  width: 100%;
  height: 1px;
  background: #b9b6b1;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .5s;
  transform-origin: left;
}
.sidebar-box .sidebar-left ul li a:hover::before{
  transform: scaleX(0);
}
.sidebar-box .sidebar-left ul li a:hover,
.sidebar-box .sidebar-left ul li a.active {
  color: #b60005;
}
.sidebar-box .sidebar-left .contact_info {
  margin-top: 50px;
  position: relative;
}
.sidebar-box .sidebar-left .contact_info .img {
  width: 100%;
}
.sidebar-box .sidebar-left .contact_info .more {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  font-weight: 600;
}
.sidebar-box .sidebar-right {
  width: -webkit-calc(-220%);
  width: -moz-calc(-220%);
  width: calc(100% - 320px);
}

.m-page {
  margin-top: 50px;
  text-align: center;
}
.m-page a,
.m-page span {
  color: #212121;
  display: inline-block;
  margin: 2px 6px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
}
.m-page a.current,
.m-page span.current {
  color: #fff;
  background-color: #b60005;
}
.m-page a.current::before,
.m-page span.current::before {
  opacity: 0;
}
.m-page a {
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-page a::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #212121;
  bottom: 0;
  left: 11px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-page a:hover,
.m-page a.current {
  color: #fff;
  background-color: #b60005;
}
.m-page a:hover::before,
.m-page a.current::before {
  opacity: 0;
}
.m-page .first::before,
.m-page .last::before,
.m-page .end::before,
.m-page .next::before {
  display: none;
}
.prodet-page .init-1 .container .left {
  padding-right: 100px;
}
.prodet-page .init-1 .container .left .big_img {
  position: relative;
}
.prodet-page .init-1 .container .left .big_img .btn {
  width: 46px;
  height: 46px;
  border: 1px solid #cecece;
  color: #333333;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  font-size: 34px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: -70px;
}
.prodet-page .init-1 .container .left .big_img .btn i {
  margin-left: 4px;
}
.prodet-page .init-1 .container .left .big_img .btn:hover {
  border-color: #b60005;
}
.prodet-page .init-1 .container .left .big_img .prev {
  left: -70px;
}
.prodet-page .init-1 .container .left .big_img .prev i {
  margin-left: -4px;
}
.prodet-page .init-1 .container .left .big_img .slick {
  border: 1px solid #cbcbcb;
}
.prodet-page .init-1 .container .left .big_img .slick li a {
  display: block;
}
.prodet-page .init-1 .container .left .big_img .slick li a img {
  width: 100%;
}
.prodet-page .init-1 .container .left .small_img {
  margin-top: 20px;
}
.prodet-page .init-1 .container .left .small_img .slick {
  margin: 0 -12px;
}
.prodet-page .init-1 .container .left .small_img .slick li {
  padding: 0 12px;
}
.prodet-page .init-1 .container .left .small_img .slick li .box {
  cursor: pointer;
  border: 1px solid #cbcbcb;
  display: block;
}
.prodet-page .init-1 .container .left .small_img .slick li .box img {
  width: 100%;
}
.prodet-page .init-1 .container .left .small_img .slick li .box:hover,
.prodet-page .init-1 .container .left .small_img .slick li .box.active {
  border: #b60005 1px solid;
}
.prodet-page .init-1 .container .right .title {
  font-weight: 600;
  
  color: #393939;
  line-height: 1.3;
  text-transform: uppercase;
}
.prodet-page .init-1 .container .right .des {
  margin-top: 20px;
  color: #393939;
  line-height: 1.8;
  max-height: 400px;
  padding-right: 4px;
  overflow-y: auto;
}
.prodet-page .init-1 .container .right .des img.wscnph{
    max-width: 50px;
    margin: 10px;
    display: inline-block;
}
.prodet-page .init-1 .container .right .img {
  margin-top: 20px;
}
.prodet-page .init-1 .container .right .more {
  display: inline-block;
  font-weight: 600;
  
  padding: 10px 20px;
  margin-top: 30px;
}
.prodet-page .init-1 .container .right .more span{
  vertical-align: middle;
}
.prodet-page .init-1 .container .right .more img {
  width: 16px;
  vertical-align: middle;
  margin-left: 30px;
  position: relative;
  z-index: 2;
}
.prodet-page .init-2 {
  margin-top: 50px;
}
.prodet-page .init-2 .container .tips {
  font-weight: 600;
  
  text-transform: uppercase;
  border-bottom: 1px solid #cbcbcb;
}
.prodet-page .init-2 .container .content {
  margin-top: 20px;
}
.prodet-page .init-3 {
  margin-top: 50px;
}
.prodet-page .init-3 .container .tips {
  font-weight: 600;
  
  text-transform: uppercase;
}
.prodet-page .init-3 .container .title_list {
  background-color: #f5f5f5;
  margin-top: 20px;
}
.prodet-page .init-3 .container .title_list .list {
  width: auto;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
  
  text-transform: uppercase;
  cursor: pointer;
}
.prodet-page .init-3 .container .title_list .list:hover,
.prodet-page .init-3 .container .title_list .list.active {
  background-color: #b60005;
  color: #fff;
}
.prodet-page .init-3 .container .content_list .list {
  padding-top: 40px;
  display: none;
}
.prodet-page .init-3 .container .content_list .list table tr td{
  min-width: 120px;
}
.prodet-page .init-4 {
  background-color: #f5f5f5;
}
.prodet-page .init-4 .container {
  font-weight: 600;
  
  text-transform: uppercase;
}
.prodet-page .init-4 .container .content {
  margin: 30px -15px 0;
}
.prodet-page .init-4 .container .content .slick .slick-track {
  margin-left: 0;
}
.prodet-page .init-4 .container .content .slick li {
  padding: 0 15px;
}
.prodet-page .init-4 .container .content .slick li .box .img {
  display: block;
  overflow: hidden;
  background-color: white;
}
.prodet-page .init-4 .container .content .slick li .box .img img {
  width: 100%;
}
.prodet-page .init-4 .container .content .slick li .box .text {
  display: block;
  margin-top: 16px;
  line-height: 2;
}
.prodet-page .init-4 .container .content .slick li .box .text:hover {
  color: #b60005;
}
.prodet-page .init-5 .container .tips {
  
  font-weight: 600;
  text-transform: uppercase;
}
.prodet-page .init-5 .container form input,
.prodet-page .init-5 .container form textarea {
  margin-top: 30px;
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 12px 60px;
  background-repeat: no-repeat;
  font-size: 16px;
  -o-background-size: 26px auto;
  background-size: 26px auto;
  background-position: 20px 12px;
}
.prodet-page .init-5 .container form .name,
.prodet-page .init-5 .container form .mail {
  width: -webkit-calc(25%);
  width: -moz-calc(25%);
  width: calc(50% - 25px);
}
.prodet-page .init-5 .container form .mail {
  margin-left: 50px;
}
.prodet-page .init-5 .container form .submit {
  width: auto;
  padding: 10px 60px;
  margin-top: 30px;
  font-size: 20px;
  
  font-weight: 600;
  text-transform: uppercase;
}
.product-new-page .init-1 {
  padding: 50px 0 60px 0;
}
.product-new-page .init-1 .container .column {
  vertical-align: middle;
}
.product-new-page .init-1 .container .left .tips {
  
  font-weight: 600;
  text-transform: uppercase;
}
.product-new-page .init-1 .container .left .tips .r {
  color: #b60005;
}
.product-new-page .init-1 .container .left .des {
  margin-top: 10px;
}
.product-new-page .init-1 .container .right {
  padding: 0 60px;
}
.product-new-page .init-1 .container .right img {
  width: 100%;
}
.product-new-page .init-2 {
  background-color: #f4f4f4;
}
.product-new-page .init-2 .container .tips {
  
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.product-new-page .init-2 .container .content {
  margin-top: 50px;
  position: relative;
}
.product-new-page .init-2 .container .content .btn{
  background: #fff;
  width: 50px;
  height: 50px;
  border: 1px solid #b60005;
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}
.product-new-page .init-2 .container .content .prev{
  left: -100px;
}
.product-new-page .init-2 .container .content .btn img{
  position: relative;
  z-index: 2;
  display: block;
  margin: 16px auto 0;
}
.product-new-page .init-2 .container .content .btn:hover img{
  filter: brightness(2);
}
.product-new-page .init-2 .container .content .slick {
  margin: 0 -15px;
}
/*.product-new-page .init-2 .container .content .slick .slick-track{
  display: flex;
}
.product-new-page .init-2 .container .content .slick .slick-slide{
  height: auto;
}
.product-new-page .init-2 .container .content .slick .slick-slide > div{
  height: 100%;
}
.product-new-page .init-2 .container .content .slick .slick-slide > div li,
.product-new-page .init-2 .container .content .slick .slick-slide > div li .box{
  height: 100%;
}*/
.product-new-page .init-2 .container .content .slick li {
  padding: 0 15px;
}
.product-new-page .init-2 .container .content .slick li .box {
  position: relative;
  background-color: #fff;
  padding: 20px 15px;
  
  font-weight: 500;
}
.product-new-page .init-2 .container .content .slick li .box .sub_c {
  position: absolute;
  top: 0;
  left: -8px;
  z-index: 2;
}
.product-new-page .init-2 .container .content .slick li .box .sub_c span {
  display: inline-block;
  width: 56px;
  height: 30px;
  background-color: #b60005;
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-weight: 500;
  
  text-transform: uppercase;
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
.product-new-page .init-2 .container .content .slick li .box .sub_c .sub {
  width: 0;
  height: 0;
  border-top: 8px solid #b60005;
  border-left: 8px solid transparent;
  position: relative;
  z-index: 2;
}
.product-new-page .init-2 .container .content .slick li .box .img {
  display: block;
  overflow: hidden;
}
.product-new-page .init-2 .container .content .slick li .box .img img {
  width: 100%;
}
.product-new-page .init-2 .container .content .slick li .box .line {
  height: 1px;
  background-color: #e7e7e7;
  margin-top: 20px;
}
.product-new-page .init-2 .container .content .slick li .box .text:hover {
  color: #b60005;
  display: block;
}
.product-new-page .init-2 .container .content .slick li .box .more {
  margin-top: 18px;
  display: inline-block;
  background-color: #fff;
  color: #181818;
  border-bottom: 1px solid #b60005;
}
.product-new-page .init-2 .container .content .slick li .box .more img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 40px;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  position: relative;
  z-index: 2;
}
.product-new-page .init-2 .container .content .slick li .box .more:hover {
  padding: 0 10px;
  color: #fff;
}
.product-new-page .init-2 .container .content .slick li .box .more:hover img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
.product-new-page .init-3 .top {
  -o-background-size: cover;
  background-size: cover;
}
.product-new-page .init-3 .top .cont {
  padding: 150px 0;
  max-width: 540px;
  margin-left: auto;
  color: #fff;
}
.product-new-page .init-3 .top .cont .tips {
  
  font-weight: 600;
  text-transform: uppercase;
}
.product-new-page .init-3 .top .cont .tips .r {
  color: #b60005;
}
.product-new-page .init-3 .top .cont .des {
  margin-top: 10px;
}
.product-new-page .init-3 .bottom {
  padding: 18px 0;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  background-color: #b60005;
  
  color: #fff;
}
.technology-page .init-1 {
  text-align: center;
}
.technology-page .init-1 .container .tips {
  
  font-weight: bold;
  text-transform: uppercase;
}
.technology-page .init-1 .container .content {
  margin-top: 100px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.technology-page .init-1 .container .content .list {
  position: relative;
  width: 348px;
}
.technology-page .init-1 .container .content .list .title_c {
  position: relative;
  width: 46px;
  height: 46px;
  margin: auto;
}
.technology-page .init-1 .container .content .list .title_c .ling {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #b60005;
  border-radius: 50%;
}
.technology-page .init-1 .container .content .list .title_c .ling:nth-child(2) {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.technology-page .init-1 .container .content .list .title_c .cont {
  position: relative;
  z-index: 2;
  background-color: #b60005;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 46px;
  
  font-weight: 600;
  color: #fff;
}
.technology-page .init-1 .container .content .list .des {
  margin-top: 40px;
  line-height: 2;
}
.technology-page .init-1 .container .content .list2 {
  margin: 0 40px;
}
.technology-page .init-1 .container .content .list2 .title_c::before,
.technology-page .init-1 .container .content .list2 .title_c::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 1px;
  top: 22px;
  left: 90px;
  border-top: 1px dashed #999999;
}
.technology-page .init-1 .container .content .list2 .title_c::before {
  left: -330px;
}
.technology-page .init-2 .container .list .column {
  position: relative;
  z-index: 1;
  vertical-align: middle;
}
.technology-page .init-2 .container .list .left img {
  width: 100%;
}
/*.technology-page .init-2 .container .list .right {
  padding-left: 60px;
}*/
.technology-page .init-2 .container .list .right .tips {
  font-weight: 600;
  
  text-transform: uppercase;
}
.technology-page .init-2 .container .list .right .des {
  margin-top: 10px;
}
/*.technology-page .init-2 .container .list:nth-child(2n) .left {
  left: 50%;
}
.technology-page .init-2 .container .list:nth-child(2n) .right {
  left: -50%;
  padding-left: 0;
  padding-right: 60px;
}*/
.application-page .container .tips {
  text-align: center;
  
  font-weight: 600;
  text-transform: uppercase;
}
.application-page .container .tips .r {
  color: #b60005;
}
.application-page .container .des {
  text-align: center;
  margin-top: 10px;
}
.application-page .container .content ul {
  margin: 0 -20px;
}
.application-page .container .content ul li {
  margin-top: 50px;
  padding: 0 20px;
}
.application-page .container .content ul li .box {
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.application-page .container .content ul li .box .title {
  font-weight: 500;
  text-align: center;
  
  text-transform: uppercase;
  padding: 10px 0;
}
.application-page .container .content ul li .box .img {
  display: block;
  overflow: hidden;
}
.application-page .container .content ul li .box .img img {
  width: 100%;
}
.patent-page {
  background-color: #f4f4f4;
}
.patent-page .patent-list {
  margin-top: -30px;
}
.patent-page .patent-list li {
  padding: 40px 30px;
  background-color: #fff;
  margin-top: 40px;
}
.patent-page .patent-list li .left {
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  width: 300px;
  border-right: 1px solid #cccccc;
  padding-right: 40px;
}
.patent-page .patent-list li .left img {
  width: 100%;
}
.patent-page .patent-list li .right {
  vertical-align: middle;
  width: -webkit-calc(-200%);
  width: -moz-calc(-200%);
  width: calc(100% - 300px);
  padding-left: 46px;
}
.patent-page .patent-list li .right .title a {
  font-weight: 500;
  
  color: #b60005;
  border-bottom: 1px solid #b60005;
  text-transform: uppercase;
}
.patent-page .patent-list li .right .title_2 {
  font-weight: 500;
  
  text-transform: uppercase;
  color: #b60005;
  margin-top: 10px;
}
.patent-page .patent-list li .right .des {
  margin-top: 16px;
}
.agent-page .init-1 .container .left {
  vertical-align: middle;
  padding-right: 80px;
}
.agent-page .init-1 .container .left .tips {
  font-weight: 600;
  
  text-transform: uppercase;
}
.agent-page .init-1 .container .left .tips .r {
  color: #b60005;
}
.agent-page .init-1 .container .left .des {
  margin-top: 10px;
}
.agent-page .init-1 .container .left .tips_2 {
  margin-top: 30px;
}
.agent-page .init-1 .container .left .mail_c {
  margin-top: 10px;
  background-color: #f4f4f4;
  display: inline-block;
  padding: 6px 30px 6px 10px;
  border-radius: 60px;
}
.agent-page .init-1 .container .left .mail_c div {
  display: inline-block;
  vertical-align: middle;
}
.agent-page .init-1 .container .left .mail_c .img {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  padding-top: 20px;
}
.agent-page .init-1 .container .left .mail_c .img img {
  width: 36px;
}
.agent-page .init-1 .container .left .mail_c .text {
  margin-left: 20px;
  color: #3c3c3c;
}
.agent-page .init-1 .container .right {
  vertical-align: middle;
}
.agent-page .init-1 .container .right img {
  width: 100%;
}
.agent-page .init-2 img {
  width: 100%;
}
.agent-page .init-3 {
  padding-top: 40px;
}
.agent-page .init-3 .container .tips {
  font-weight: 600;
  
  text-transform: uppercase;
}
.agent-page .init-3 .container .title_c {
  font-weight: 600;
  
  text-transform: uppercase;
}
.agent-page .init-3 .container .title_c .list {
  display: inline-block;
  margin-right: 60px;
  margin-top: 10px;
}
.agent-page .init-3 .container .title_c .list .r {
  color: #b60005;
}
.agent-page .init-3 .container .des {
  margin-top: 20px;
}
.agent-page .init-4 .container .tips {
  
  font-weight: 600;
  text-transform: uppercase;
}
.agent-page .init-4 .container form input,
.agent-page .init-4 .container form textarea {
  margin-top: 30px;
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 12px 60px;
  background-repeat: no-repeat;
  font-size: 16px;
  -o-background-size: 26px auto;
  background-size: 26px auto;
  background-position: 20px 12px;
}
.agent-page .init-4 .container form .name,
.agent-page .init-4 .container form .mail {
  width: -webkit-calc(25%);
  width: -moz-calc(25%);
  width: calc(50% - 25px);
}
.agent-page .init-4 .container form .mail {
  margin-left: 50px;
}
.agent-page .init-4 .container form .submit {
  width: auto;
  padding: 10px 60px;
  margin-top: 30px;
  font-size: 20px;
  
  font-weight: 600;
  text-transform: uppercase;
}
.service-page .init-1 .container .left .tips {
  
  font-weight: 600;
  text-transform: uppercase;
}
.service-page .init-1 .container .left .tips .r {
  color: #b60005;
}
.service-page .init-1 .container .left img {
  display: block;
  margin-top: 40px;
  width: 100%;
}
.service-page .init-1 .container .right {
  padding-left: 80px;
}
.service-page .init-1 .container .right .tips_des {
  color: rgba(0, 0, 0, 0.7);
  line-height: 2;
}
.service-page .init-1 .container .right .content_list {
  padding-top: 115px;
}
.service-page .init-1 .container .right .content_list .list {
  margin-top: 14px;
}
.service-page .init-1 .container .right .content_list .list .title {
  color: #b60005;
  text-transform: uppercase;
  
  font-weight: 600;
}
.service-page .init-1 .container .right .content_list .list .title span {
  border-bottom: 2px solid #b60005;
}
.service-page .init-1 .container .right .content_list .list .des {
  margin-top: 20px;
  color: #212121;
  line-height: 1.8;
}
.service-page .init-1 .container .right .bottom_c {
  margin-top: 40px;
  position: relative;
}
.service-page .init-1 .container .right .bottom_c .cont {
  color: #fff;
  position: relative;
  right: 44%;
  background-color: #b60005;
  width: 750px;
  padding: 40px 20px;
  text-align: center;
}
.service-page .init-1 .container .right .bottom_c .cont .list {
  width: 234px;
}
.service-page .init-1 .container .right .bottom_c .cont .list .top {
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  
}
.service-page .init-1 .container .right .bottom_c .cont .list .top .sub {
  margin-left: -10px;
}
.service-page .init-1 .container .right .bottom_c .cont .list .bottom {
  margin-top: 10px;
}
.service-page .init-2 .container .left {
  vertical-align: middle;
  padding-right: 70px;
}
.service-page .init-2 .container .left .tips {
  font-weight: 600;
  
  text-transform: uppercase;
}
.service-page .init-2 .container .left .des {
  margin-top: 20px;
  line-height: 2;
}
.service-page .init-2 .container .left .more {
  margin-top: 40px;
  display: inline-block;
  padding: 15px 25px 10px;;
  font-weight: 600;
  
  text-transform: uppercase;
}
.service-page .init-2 .container .left .more img {
  vertical-align: middle;
  display: inline-block;
  width: 16px;
  margin-left: 26px;
  position: relative;
  z-index: 2;
  margin-top: -4px;
}
.service-page .init-2 .container .right {
  vertical-align: middle;
}
.service-page .init-2 .container .right img {
  width: 100%;
}
.service-page .init-3 .container {
  color: #fff;
  text-align: center;
}
.service-page .init-3 .container .tips {
  font-weight: 600;
  
  text-transform: uppercase;
}
.service-page .init-3 .container .des {
  margin-top: 10px;
  font-weight: 300;
  line-height: 2;
}
.service-page .init-3 .container .more {
  margin-top: 24px;
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  
  text-transform: uppercase;
  line-height: 1.4;
}
.service-page .init-3 .container .more span {
  vertical-align: middle;
}
.service-page .init-3 .container .more img {
  vertical-align: middle;
  display: inline-block;
  margin-left: 20px;
  position: relative;
  z-index: 2;
}
.service-page .init-4 .container .tips {
  
  font-weight: 600;
  text-transform: uppercase;
}
.service-page .init-4 .container form input,
.service-page .init-4 .container form textarea {
  margin-top: 30px;
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 12px 60px;
  background-repeat: no-repeat;
  font-size: 16px;
  -o-background-size: 26px auto;
  background-size: 26px auto;
  background-position: 20px 12px;
}
.service-page .init-4 .container form .name,
.service-page .init-4 .container form .mail {
  width: -webkit-calc(25%);
  width: -moz-calc(25%);
  width: calc(50% - 25px);
}
.service-page .init-4 .container form .mail {
  margin-left: 50px;
}
.service-page .init-4 .container form .submit {
  width: auto;
  padding: 10px 60px;
  margin-top: 30px;
  font-size: 20px;
  
  font-weight: 600;
  text-transform: uppercase;
}
.download-page .container .tips {
  
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.download-page .container .tips .r {
  color: #b60005;
}
.download-page .container .content {
  margin-top: 20px;
}
.download-page .container .content ul {
  margin: 0 -25px;
}
.download-page .container .content ul li {
  margin-top: 30px;
  padding: 0 25px;
}
.download-page .container .content ul li .box .img {
  display: block;
  overflow: hidden;
}
.download-page .container .content ul li .box .img img {
  width: 100%;
}
.download-page .container .content ul li .box .text {
  display: block;
  margin-top: 20px;
  
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.download-page .pwd_cont{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 18;
  display: none;
}
.download-page .pwd_cont .set_pwd{
  display: none;
}
.download-page .pwd_cont .shadow{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.download-page .pwd_cont .cont{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  transform: translate(-50% , -50%);
  background: #fff;
}
.download-page .pwd_cont .cont .close{
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 34px;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  background: #eee;
  cursor: pointer;
  transition: all .5s;
}
.download-page .pwd_cont .cont .close:hover{
  color: #fff;
  background: #b60005;
}
.download-page .pwd_cont .cont .f_cont{
  padding: 30px 26px;
}
.download-page .pwd_cont .cont .f_cont input{
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 16px;
}
.download-page .pwd_cont .cont .f_cont .send_btn{
  width: auto;
  padding:  10px 40px;
  display: inline-block;
  background: #b60005;
  color: #fff;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}
.download-page .pwd_cont .cont .title{
    font-size: 18px;
    color: #222;
    text-transform: capitalize;
    line-height: 1;
    font-weight: 700;
    padding: 15px 20px;
    background: #f5f5f5;
    -o-box-shadow: 0 0 5px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.1);
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    padding-right: 50px;
}
.device-page .init-1 .container .left {
  vertical-align: middle;
}
.device-page .init-1 .container .left img {
  width: 100%;
}
.device-page .init-1 .container .right {
  vertical-align: middle;
  padding-left: 50px;
}
.device-page .init-1 .container .right .tips {
  text-transform: uppercase;
  
  font-weight: 600;
}
.device-page .init-1 .container .right .des {
  margin-top: 10px;
  line-height: 2;
}
.device-page .init-2 .container .tips {
  font-weight: 600;
  
  text-transform: uppercase;
  text-align: center;
}
.device-page .init-2 .container .tips .r {
  color: #b60005;
}
.device-page .init-2 .container .content ul {
  margin: 0 -15px;
}
.device-page .init-2 .container .content ul li {
  margin-top: 60px;
  padding: 0 15px;
}
.device-page .init-2 .container .content ul li .box .img {
  overflow: hidden;
}
.device-page .init-2 .container .content ul li .box .img img {
  width: 100%;
}
.device-page .init-2 .container .content ul li .box .cont {
  width: -webkit-calc(52%);
  width: -moz-calc(52%);
  width: calc(100% - 48px);
  background-color: #fff;
  padding: 7px 24px;
  position: relative;
  margin: -20px auto 0;
      box-shadow: inset 1px 0px 8px 3px rgb(0 0 0 / 8%);
}
.device-page .init-2 .container .content ul li .box .cont .sub {
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #b60005;
}
.device-page .init-2 .container .content ul li .box .cont .text {
  position: relative;
  z-index: 2;
}
.device-page .init-2 .container .content ul li .box:hover .cont .sub {
  width: 100%;
}
.device-page .init-2 .container .content ul li .box:hover .cont .text {
  color: #fff;
}
.device-page .init-3 .container .left {
  vertical-align: middle;
}
.device-page .init-3 .container .left img {
  width: 100%;
}
.device-page .init-3 .container .right {
  vertical-align: middle;
}
.device-page .init-3 .container .right .tips {
  text-transform: uppercase;
  font-weight: 600;
  
  color: #b60005;
}
.device-page .init-3 .container .right .line {
  width: 250px;
  height: 1px;
  background-color: #b60005;
}
.device-page .init-3 .container .right .tips_title {
  text-transform: uppercase;
  font-weight: 600;
  
  margin-top: 20px;
}
.device-page .init-3 .container .right .des {
  margin-top: 20px;
}
.faq-page .container ul li {
  margin: 10px 0 0;
  word-break: break-word;
  font-weight: 300;
}
.faq-page .container ul li .title {
  background: #f8f8f8;
  border: 1px solid #ebebeb;
  line-height: 2;
  margin: 0;
  padding: 15px 30px 15px 25px;
  cursor: pointer;
  cursor: hand;
  position: relative;
  font-weight: 600;
  
}
.faq-page .container ul li .title i {
  color: #bababa;
  float: right;
  position: absolute;
  top: 26px;
  right: 10px;
}
.faq-page .container ul li .cont {
  border: 1px solid #ebebeb;
  border-top: none;
  padding: 20px 25px;
  font-size: 18px;
  line-height: 2;
  display: none;
}
.news-page {
  background: #f8f8f8;
}
.news-page .container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.news-page .container ul li {
  margin-top: 30px;
  padding: 0 15px;
}
.news-page .container ul li .box {
  height: 100%;
  background-color: #fff;
  padding: 30px;
}
.news-page .container ul li .box .title {
  font-weight: 600;
  line-height: 2;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
}
.news-page .container ul li .box .title:hover {
  color: #b60005;
}
.news-page .container ul li .box .des {
  line-height: 2;
  margin-top: 14px;
}
.news-page .container ul li .box .time {
  margin-top: 10px;
  /*margin-left: 20px;*/
}
.newdet-page .container .title {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  
}
.newdet-page .container .time_c {
  margin-top: 14px;
  text-align: center;
}
.newdet-page .container .time_c .list {
  display: inline-block;
  margin: 0 8px;
}
.newdet-page .container .time_c .list img {
  vertical-align: middle;
  width: 16px;
}
.newdet-page .container .time_c .list span {
  vertical-align: middle;
  margin-left: 2px;
  position: relative;
  top: 1px;
  color: #999;
}
.newdet-page .container .content {
  margin-top: 50px;
  line-height: 2;
}
.m-link {
  margin-top: 50px;
}
.m-link a {
  margin-top: 6px;
  font-size: 16px;
  display: inline-block;
}
.m-link a:hover {
  color: #b60005;
  text-decoration: underline;
}
.contact-page .init-1 .container {
  /*border-bottom: 1px solid #eee;*/
}
.contact-page .init-1 .container .left .tips {
  font-weight: 600;
  margin-bottom: 32px;
  
  text-transform: uppercase;
}
.contact-page .init-1 .container .left .des {
  margin-top: 10px;
}
.contact-page .init-1 .container .left form .list {
  margin-top: 20px;
}
.contact-page .init-1 .container .left form .list .name {
  font-size: 16px;
  line-height: 2;
  color: #5e5e5e;
  display: block;
  margin-bottom: 5px;
}
.contact-page .init-1 .container .left form .list input,
.contact-page .init-1 .container .left form .list textarea {
  width: 100%;
  line-height: 2;
  border: 1px solid #c6cbc8;
  padding: 13px 15px;
  font-size: 16px;
  color: #333;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: #fff;
}
.contact-page .init-1 .container .left form .list input:focus,
.contact-page .init-1 .container .left form .list textarea:focus {
  border: 1px solid #b60005;
}
.contact-page .init-1 .container .left form .submit_c .submit_btn {
  margin-top: 20px;
  cursor: pointer;
  display: inline-block;
  padding: 8px 40px;
  background-color: #b60005;
  font-weight: 600;
  color: #fff;
  
  text-transform: uppercase;
}
.contact-page .init-1 .container .right {
  padding-left: 80px;
}
.contact-page .init-1 .container .right .tips {
  font-weight: 600;
  
  text-transform: uppercase;
}
.contact-page .init-1 .container .right .list ul li {
  padding-bottom: 10px;
  margin-top: 30px;
  border-bottom: 1px solid #eee;
}
.contact-page .init-1 .container .right .list ul li .tips_2 {
  font-weight: 600;
  
  text-transform: uppercase;
}
.contact-page .init-1 .container .right .list ul li .tips_2 i {
  width: 40px;
}
.contact-page .init-1 .container .right .list ul li .cont {
  word-wrap: break-word;
  margin: 10px 0 20px 0;
}
.contact-page .init-1 .container .right .list ul li:last-child {
  border: none;
}
.contact-page .init-1 .container .right .list ul li:last-child .cont {
  margin-bottom: 0;
}
.contact-page .init-2 {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.contact-page .init-2 .container {
  width: 100%;
  padding: 0;
}
.contact-page .init-2 .container .map #mapContainer {
  height: 400px;
}
.video-page .container ul {
  margin: -15px;
}
.video-page .container ul li {
  padding: 15px;
}
.video-page .container ul li video {
  display: block;
  width: 100%;
}

.history-page .top_c .left .tips{
  text-transform: uppercase;
}
.history-page .top_c .left .title{
  font-weight: bold;
  margin-top: 10px;
  text-transform: uppercase;
  
  margin: 10px 0;
}
.history-page .top_c .left .des{
  margin-top: 20px;
}
.history-page .top_c .left .line{
  width: 150px;
  height: 4px;
  background: #b60005;
}
.history-page .top_c .right{
  padding-left: 50px;
}
.history-page .top_c .right img{
  width: 100%;
}

.history-page .bottom_c .list{
  padding-top: 60px;
  border-top: 1px solid #ddd;
  margin-top: 60px;
}
.history-page .bottom_c .time{
  width: 160px;
  font-weight:bold;
  color: #b60005;
  line-height: 1;
}
.history-page .bottom_c .content{
  width: calc(100% - 160px);
  color: rgba(0, 0, 0, 0.8);
}
.history-page .bottom_c .content .img{
  margin-top: 20px;
  max-width: 600px;
}


@media (max-width: 1500px) {
  .font-60 {
    font-size: 50px;
  }
  .font-48 {
    font-size: 38px;
  }
  .font-40 {
    font-size: 30px;
  }

  .about-page .init-1 .container .list_cont .list .num {
    font-size: 60px;
  }
}
@media (max-width: 1250px) {
  .inner-banner .bottom_c .left {
    display: none;
  }
  .inner-banner .bottom_c .right {
    width: 100%;
    text-align: left;
    margin: 16px 0;
  }
  .sidebar-box .sidebar-left {
    display: none;
  }
  .sidebar-box .sidebar-right {
    width: 100%;
  }
  .technology-page .init-1 .container .content .list {
    width: 310px;
  }
  .technology-page .init-1 .container .content .list2 {
    margin: 0 20px;
  }
  .technology-page .init-1 .container .content .list2 .title_c::before {
    display: none;
  }
  .technology-page .init-1 .container .content .list2 .title_c::after {
    display: none;
  }
  .service-page .init-1 .container .right .bottom_c .cont {
    right: 86%;
  }
  .product-new-page .init-2 .container .content .btn{
    display: none !important;
  }
}
@media (max-width: 1000px) {
  .inner-banner .cat_cont {
    height: auto;
    padding: 100px 0;
  }
  .inner-banner .cat_cont .container .cat_name {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    text-align: center;
  }
  .suatainable-page .init-1 .container .cont {
    width: 90%;
  }
  .suatainable-page .init-2 .container .title_c .left {
    width: 100%;
    text-align: center;
  }
  .suatainable-page .init-2 .container .title_c .left .line {
    margin: 10px auto;
  }
  .suatainable-page .init-2 .container .title_c .right {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
  .suatainable-page .init-2 .container .content {
    margin: 20px -10px;
  }
  .suatainable-page .init-2 .container .content .list {
    padding: 0 10px;
  }
  .suatainable-page .init-2 .container .content .list .box .text {
    text-align: center;
    font-size: 24px;
  }
  .about-page .init-1 .container .des {
    text-align: center;
  }
  .about-page .init-2 .container .img {
    height: 300px;
  }
  .about-page .init-3 .container .list .column {
    width: 100%;
  }
  .about-page .init-3 .container .list .right {
    padding: 0;
    text-align: center;
    margin-top: 20px;
  }
  .about-page .init-3 .container .list .right .line {
    margin: 6px auto 0;
  }
  .about-page .init-3 .container .list:nth-child(2n) .left {
    left: 0;
  }
  .about-page .init-3 .container .list:nth-child(2n) .right {
    left: 0;
    padding: 0;
  }
  .about-page .init-4 .container .content {
    margin: 40px -10px 0;
  }
  .about-page .init-4 .container .content .slick li {
    padding: 0 10px;
  }
  .about-page .init-5 .container .img {
    height: 400px;
  }
  .about-page .init-6 .container .column {
    width: 100%;
  }
  .about-page .init-6 .container .right {
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
  }
  .honor-page .container .list {
    padding: 70px 20px;
  }
  .honor-page .container .list .content {
    margin: 30px -10px 0;
  }
  .honor-page .container .list .content .slick li {
    padding: 0 10px;
  }
  .honor-page .container .list .content .slick .slick-next {
    right: -14px;
  }
  .honor-page .container .list .content .slick .slick-prev {
    left: -14px;
  }
  .prodet-page .init-1 .container .left {
    width: 100%;
    padding: 0 60px;
  }
  .prodet-page .init-1 .container .right {
    width: 100%;
    margin-top: 40px;
  }
  .prodet-page .init-1 .container .right .title {
    text-align: center;
  }
  .prodet-page .init-2 .container .tips {
    text-align: center;
  }
  .prodet-page .init-3 .container .tips {
    text-align: center;
  }
  .prodet-page .init-4 .container .tips {
    text-align: center;
  }
  .prodet-page .init-4 .container .content .slick li .box .text {
    text-align: center;
  }
  .prodet-page .init-5 {
    text-align: center;
  }
  .product-new-page .init-1 .container .column {
    width: 100%;
    text-align: center;
  }
  .product-new-page .init-1 .container .right {
    margin-top: 20px;
  }
  .product-new-page .init-2 .container .content .slick li .box {
    text-align: center;
  }
  .product-new-page .init-3 .top .cont {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .technology-page .init-1 .container .content .list {
    margin: 20px 10px 0;
  }
  .technology-page .init-2 .container .list .left {
    width: 100%;
    padding: 0;
  }
  .technology-page .init-2 .container .list .right {
    width: 100%;
    padding: 0;
    text-align: center;
    margin-top: 20px;
  }
  .technology-page .init-2 .container .list:nth-child(2n) .left {
    left: 0;
  }
  .technology-page .init-2 .container .list:nth-child(2n) .right {
    left: 0;
    padding: 0;
  }
  .agent-page .init-1 .container .left {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .agent-page .init-1 .container .right {
    margin-top: 40px;
    width: 100%;
  }
  .agent-page .init-3 .container .tips {
    text-align: center;
  }
  .agent-page .init-3 .container .title_c {
    text-align: center;
  }
  .agent-page .init-3 .container .title_c .list {
    margin: 10px 0 0 0;
  }
  .agent-page .init-4 .container {
    text-align: center;
  }
  .service-page .init-1 .container .left {
    width: 100%;
    text-align: center;
  }
  .service-page .init-1 .container .right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
    text-align: center;
  }
  .service-page .init-1 .container .right .bottom_c .cont {
    width: 100%;
    left: 0;
  }
  .service-page .init-1 .container .right .bottom_c .cont .list {
    width: 210px;
  }
  .service-page .init-2 .container .left {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .service-page .init-2 .container .right {
    width: 100%;
    margin-top: 20px;
  }
  .service-page .init-4 .container {
    text-align: center;
  }
  .device-page .init-1 .container .left {
    width: 100%;
  }
  .device-page .init-1 .container .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
  }
  .device-page .init-3 .container .left {
    width: 100%;
  }
  .device-page .init-3 .container .right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
    text-align: center;
  }
  .device-page .init-3 .container .right .line {
    margin: auto;
  }
  .news-page .container ul {
    margin: 0 -5px;
  }
  .news-page .container ul li {
    padding: 0 5px;
    margin-top: 10px;
    text-align: center;
  }
  .news-page .container ul li .box {
    padding: 15px;
  }
  .news-page .container ul li .box .time {
    margin-left: 0;
  }
  .contact-page .init-1 .container .left {
    width: 100%;
    text-align: center;
  }
  .contact-page .init-1 .container .left form .list .name {
    text-align: left;
  }
  .contact-page .init-1 .container .left form .submit_c .submit_btn {
    width: 100%;
  }
  .contact-page .init-1 .container .right {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
  }
  .contact-page .init-1 .container .right .tips {
    text-align: center;
  }
  .history-page .top_c .left{
    width: 100%;
    text-align: center;
  }
  .history-page .top_c .left .line{
    display: none;
  }
  .history-page .top_c .right{
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }
  .history-page .bottom_c .time{
    text-align: center;
    width: 100%;
  }
  .history-page .bottom_c .content{
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .history-page .bottom_c .content .img img{
    text-align: center;
    display: block;
    margin: auto;
  }
}
@media (max-width: 700px) {
  .phone_hide {
    display: none;
  }
  .suatainable-page .init-1 .container {
    width: 96%;
  }
  .about-page .init-1 .container .list_cont .list {
    margin: 20px 0 0;
    text-align: center;
    width: 100%;
  }
  .about-page .init-1 .container .list_cont .list .text {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
  .about-page .init-2 {
    margin-top: 40px;
  }

  .honor-page .container .list .title {
    margin: 0 -20px;
  }
  .honor-page .container .list .des {
    margin: 20px -20px 0;
  }
  .honor-page .container .list .content .slick .slick-arrow {
    font-size: 30px;
  }
  .technology-page .init-1 .container .content {
    margin-top: 10px;
  }
  .technology-page .init-1 .container .content .list {
    width: 100%;
    margin: 40px 0 0;
  }
  .patent-page .patent-list li .left {
    width: 100%;
    padding: 0;
    border: none;
  }
  .patent-page .patent-list li .right {
    padding: 0;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .service-page .init-1 .container .right .bottom_c .cont {
    padding-top: 20px;
  }
  .service-page .init-1 .container .right .bottom_c .cont .list {
    width: 100%;
    margin-top: 20px;
  }
  .download-page .container .content ul {
    margin: 0 -10px;
  }
  .download-page .container .content ul li {
    padding: 0 10px;
  }
}
@media (max-width: 500px) {
  .pt-90 {
    padding-top: 40px;
  }
  .pb-90 {
    padding-bottom: 40px;
  }
  .pt-80 {
    padding-top: 40px;
  }
  .pb-70 {
    padding-bottom: 40px;
  }
  .pt-70 {
    padding-top: 40px;
  }
  .font-60 {
    font-size: 30px;
  }
  .font-48 {
    font-size: 24px;
    line-height: 1.8;
  }
  .font-40 {
    font-size: 24px;
    line-height: 1.8;
  }
  .font-36 {
    font-size: 24px;
    line-height: 1.8;
  }
  .font-30 {
    line-height: 1.8;
    font-size: 24px;
  }
  .font-24 {
    font-size: 18px;
    line-height: 1.8;
  }
  .font-20 {
    font-size: 18px;
    line-height: 2;
  }

  #pups_from{
    padding: 30px 15px;
  }
  .right_nav_list{
    right: 5px;
  }
  .right_nav_list ul li{
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .right_nav_list ul li .more_cont{
    font-size: 20px;
  }
  .inner-banner .bottom_c .right {
    font-size: 18px;
    line-height: 2;
  }
  .inner-banner .bottom_c .right .img {
    margin-top: 8px;
  }
  .suatainable-page .init-2 .container .title_c .left .line {
    margin: 5px auto;
  }
  .suatainable-page .init-2 .container .title_c .right {
    margin-top: 4px;
  }
  .suatainable-page .init-2 .container .content {
    margin: 0 -10px;
  }
  .suatainable-page .init-2 .container .content .list .box .text {
    font-size: 20px;
    padding: 10px 16px;
  }
  .suatainable-page .init-1 .container .cont {
    padding: 16px;
  }
  .suatainable-page .init-3 .container .content .slick {
    margin-top: 20px;
  }
  .about-page .init-1 .container .list_cont {
    margin-top: 10px;
  }
  .about-page .init-1 .container .list_cont .list .num {
    font-size: 50px;
  }
  .about-page .init-1 .container .list_cont .list .text {
    margin-top: 10px;
  }
  .about-page .init-3 {
    padding-top: 10px;
  }
  .about-page .init-3 .container .list {
    margin-top: 40px;
  }
  .about-page .init-4 .container .line {
    margin: 6px auto 0;
  }
  .about-page .init-4 .container .content {
    margin-top: 20px;
  }
  .about-page .init-4 .container .s_page {
    margin-top: 10px;
  }
  .about-page .init-4 .container .s_page li {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }
  .about-page .init-5 {
    height: auto;
  }
  .honor-page .container .list {
    padding: 40px 20px;
  }
  .m-page {
    margin-top: 30px;
  }
  .m-page a {
    width: 26px;
    height: 26px;
    line-height: 26px;
    margin: 5px;
  }
  .m-page a::before {
    left: 8px;
  }
  .m-page span {
    line-height: 28px;
    width: 26px;
    height: 26px;
    margin: 2px;
  }
  .prodet-page .init-1 .container .left {
    padding: 0;
  }
  .prodet-page .init-1 .container .left .big_img .btn {
    width: 26px;
    height: 26px;
    font-size: 20px;
    line-height: 24px;
    z-index: 2;
  }
  .prodet-page .init-1 .container .left .big_img .prev {
    left: -8px;
  }
  .prodet-page .init-1 .container .left .big_img .prev i {
    margin-left: -2px;
  }
  .prodet-page .init-1 .container .left .big_img .next {
    right: -8px;
  }
  .prodet-page .init-1 .container .left .big_img .next i {
    margin-left: 2px;
  }
  .prodet-page .init-1 .container .left .small_img .slick {
    margin: 0 -5px;
  }
  .prodet-page .init-1 .container .left .small_img .slick li {
    padding: 0 5px;
  }
  .prodet-page .init-1 .container .right .title {
    line-height: 1.8;
  }
  .prodet-page .init-3 .container .title_list .list {
    width: 50%;
    text-align: center;
    font-size: 16px;
  }
  .prodet-page .init-3 .container .content_list .list {
    padding-top: 20px;
  }
  .prodet-page .init-5 .container form .name {
    width: 100%;
  }
  .prodet-page .init-5 .container form .mail {
    width: 100%;
    margin-left: 0;
  }
  .prodet-page .init-5 .container form input {
    padding: 12px 12px 12px 60px;
    margin-top: 16px;
  }
  .prodet-page .init-5 .container form textarea {
    padding: 12px 12px 12px 60px;
    margin-top: 16px;
  }
  .product-new-page .init-2 .container .content {
    margin-top: 20px;
  }
  .product-new-page .init-2 .container .content .slick li .box .sub_c .sub {
    margin-top: -3px;
  }
  .product-new-page .init-2 .container .content .slick li .box .more img {
    margin-left: 20px;
  }
  .product-new-page .init-3 .top .cont {
    padding: 100px 0;
  }
  .technology-page .init-1 .container .content .list .des {
    margin-top: 20px;
  }
  .application-page .container .content ul {
    margin: 0;
  }
  .application-page .container .content ul li {
    margin-top: 30px;
    padding: 0;
  }
  .patent-page .patent-list li {
    padding: 20px 15px;
  }
  .patent-page .patent-list li .right .des {
    margin-top: 10px;
  }
  .agent-page .init-4 .container form .name {
    width: 100%;
  }
  .agent-page .init-4 .container form .mail {
    width: 100%;
    margin-left: 0;
  }
  .agent-page .init-4 .container form input {
    margin-top: 20px;
    padding: 12px 20px 12px 60px;
  }
  .agent-page .init-4 .container form textarea {
    margin-top: 20px;
    padding: 12px 20px 12px 60px;
  }
  .service-page .init-1 .container .left img {
    margin-top: 20px;
  }
  .service-page .init-1 .container .right .content_list {
    padding-top: 10px;
  }
  .service-page .init-1 .container .right .content_list .list .des {
    margin-top: 10px;
  }
  .service-page .init-1 .container .right .bottom_c .cont .list .top {
    font-size: 50px;
  }
  .service-page .init-4 .container form input {
    margin-top: 20px;
    padding: 12px 20px 12px 60px;
    width: 100%;
  }
  .service-page .init-4 .container form textarea {
    padding: 12px 20px 12px 60px;
    width: 100%;
    margin-top: 20px;
  }
  .service-page .init-4 .container form .name {
    width: 100%;
  }
  .service-page .init-4 .container form .mail {
    width: 100%;
    margin-left: 0;
  }
  .download-page .container .content {
    margin-top: 0;
  }
  .download-page .container .content ul li .box .text {
    margin-top: 10px;
  }
  .device-page .init-2 .container .content ul li {
    margin-top: 30px;
  }
  .device-page .init-2 .container .content ul li .box .cont {
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 16px 10px;
  }
  .device-page .init-2 .container .content ul li .box .cont .sub {
    width: 100%;
  }
  .device-page .init-2 .container .content ul li .box .cont .text {
    color: #fff;
  }
  .news-page .container ul {
    margin: 0;
  }
  .news-page .container ul li {
    padding: 0;
    margin-top: 20px;
  }
  .newdet-page .container .content {
    margin-top: 20px;
  }
  .m-link {
    margin-top: 20px;
  }
  .contact-page .init-1 .container .left form {
    margin-top: 20px;
  }
  .contact-page .init-1 .container .left form .list {
    margin-top: 10px;
  }
  .contact-page .init-1 .container .left form .list input {
    padding: 6px;
  }
  .contact-page .init-1 .container .left form .list textarea {
    padding: 6px;
  }
  .contact-page .init-1 .container .left form .submit_c .submit_btn {
    padding: 4px 20px;
  }
  .contact-page .init-1 .container .right .list ul li {
    margin-top: 16px;
  }
  .contact-page .init-1 .container .right .list ul li .tips_2 i {
    width: 30px;
  }
  .contact-page .init-1 .container .right .list ul li .cont {
    margin: 8px 0;
  }
  .video-page .container ul {
    margin: 0;
  }
  .video-page .container ul li {
    padding: 0;
    margin-top: 20px;
  }
  .video-page .container ul li:first-child {
    margin-top: 0;
  }
  .history-page .bottom_c .list{
    padding-top: 20px;
    margin-top: 40px;
  }
}

.main-map span{
  display: inline-block;
}






.product-page .product-1 {
  padding: 70px 0;
}
.product-page .product-1 .BoxLeft {
  width: 30%;
  padding-right: 5%;
  position: sticky;
  top: 200px;
}
.product-page .product-1 .BoxLeft h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  padding-bottom: 35px;
  margin-bottom: 30px;
  border-bottom: 1px solid black;
}
.product-page .product-1 .BoxLeft .navList ul li {
  font-weight: normal;
  font-size: 18px;
  color: #4e4e4e;
  line-height: 2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .product-1 .BoxLeft .navList ul li + li{
  margin-top: 20px;
}
.product-page .product-1 .BoxLeft .navList ul li:hover,
.product-page .product-1 .BoxLeft .navList ul li.active {
  color: #b60005;
}
.product-page .product-1 .BoxRight {
  width: 70%;
}
.product-page .product-1 .BoxRight hr {
  border-color: white;
}
.product-page .product-1 .BoxRight .list3 {
  margin-top: 60px;
}
.product-page .product-1 .BoxRight .list3 ul {
  margin: -7px;
}
.product-page .product-1 .BoxRight .list3 ul li {
  padding: 7px;
}
.product-page .product-1 .BoxRight .list3 ul li .img a {
  display: block;
  padding: 5%;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}
.product-page .product-1 .BoxRight .list3 ul li .content {
  padding: 2em .6em;
  text-align: center;
  font-size: 18px;
}
.product-page .product-1 .BoxRight .list3 ul li .content h6 em {
  /*font-weight: bold;*/
  border-right: 1px solid black;
  margin-right: .5em;
  padding-right: .5em;
}
.product-page .product-1 .BoxRight .content table {
  border: none;
}
.product-page .product-1 .BoxRight .content table tr:nth-child(1),
.product-page .product-1 .BoxRight .content table tr:nth-child(2) {
  background: #292a31;
  color: white;
  border-bottom: 2px solid #ded8d8;
}
.product-page .product-1 .BoxRight .content table tr:nth-child(3) {
  background: #b60005;
  color: white;
  white-space: nowrap;
}
.product-page .product-1 .BoxRight .content table td{
  padding: 10px !important;
  border: 1px solid #ded8d8 !important;
}
.product-page .product-1 .BoxRight .list.mb {
  margin-bottom: 60px;
  /*display: none;*/
}
.product-page .product-1 .BoxRight .list ul {
  margin: -10px;
  display: flex;
  flex-wrap: wrap;
}
.product-page .product-1 .BoxRight .list ul li {
  padding: 10px;
}
.product-page .product-1 .BoxRight .list ul li .img {
  /*padding: 10%;*/
  /*background: #f6f6f6;*/
  height: 100%;
  border: 1px solid #eee;
}
.product-page .product-1 .BoxRight .list ul li .img a.img-box {
  height: 230px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.product-page .product-1 .BoxRight .list ul li .img a.img-box:after {
  display: none;
}
.product-page .product-1 .BoxRight .list ul li .img h6 {
  margin-bottom: 15px;
  text-align: center;
  font-family: 'arial';
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .product-1 .BoxRight .list ul li .img h6 em {
  font-weight: 300;
}
.product-page .product-1 .BoxRight .list ul li .img h6:hover {
  color: #b60005;
}
.product-page .product-1 .BoxRight .list2 li {
  padding: 60px 0;
  border-bottom: 1px solid #cecece;
}
.product-page .product-1 .BoxRight .list2 li:last-child {
  border-bottom: none;
}
.product-page .product-1 .BoxRight .list2 li .img {
  padding-right: 25px;
  vertical-align: middle;
}
.product-page .product-1 .BoxRight .list2 li .img a.img-box {
  height: 387px;
  /*background-size: contain;*/
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  position: relative;
  background-color: #f7f7f7;
}
.product-page .product-1 .BoxRight .list2 li .content {
  vertical-align: middle;
}
.product-page .product-1 .BoxRight .list2 li .content h6,
.product-page .product-1 .BoxRight .list2 li .content h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
}
.product-page .product-1 .BoxRight .list2 li .content .text {
  font-size: 18px;
  line-height: 2;
  margin: 1.6em 0 2em;
  max-height: 15em;
  overflow: auto;
  padding-right: 1em;
}
.product-page .product-1 .BoxRight .list2 li .content a.down {
  font-size: 20px;
  line-height: 1.2;
}
.product-page .product-1 .BoxRight .list2 li .content a.down img {
  margin-left: 10px;
  vertical-align: middle;
  display: inline-block;
  margin-top: -.3em;
}
.product-page .product-1 .BoxRight .list2 li .content a.down.click img {
  transform: rotate(180deg);
}
.product-page .product-1 .BoxRight .list2 li .content a.down.click.active img {
  transform: rotate(0deg);
}
.product-page .product-1 .BoxRight .list2 a.more {
    line-height: 44px;
    padding: 0 15px;
    border-radius: 7px;
    border: 1px solid #777;
    font-size: 16px;
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product-page .product-1 .BoxRight .list2 a.more img{
  margin-left: 15px;
    display: inline-block;
    vertical-align: middle;
    -webkit-filter: brightness(0);
    filter: brightness(0);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product-page .product-1 .BoxRight .list2 a.more:hover {
    background: #b60005;
    color: #fff;
    border: 1px solid #b60005;
}
.product-page .product-1 .BoxRight .list2 a.more.black:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
@media screen and (max-width: 1500px){
   .product-page .product-1 .BoxLeft {
    padding-right: 4%;
  }
}
@media screen and (max-width: 1450px) {
  .product-page .product-1 .BoxRight .content table td {
    padding: 4px !important;
  }
  .product-page .product-1 .BoxRight .content table td span {
    font-size: 13px !important;
  }
}
@media screen and (max-width: 1200px){
  .product-page .product-1 .BoxRight .list2 a.more img{
    display: none;
  }

  .product-page .product-1 .BoxRight .list2 li .content a.down{
    font-size: 0;
  }
}
@media screen and (max-width: 1000px){
  .product-page .product-1 .BoxLeft {
    display: none;
  }
  .product-page .product-1 .BoxRight {
    width: 100%;
    padding-left: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 700px){
  
  .product-page .product-1 .BoxRight .list2 li .img {
    padding-right: 0;
    width: 100%!important;
  }
  .product-page .product-1 .BoxRight .list2 li .content {
    padding-left: 0;
    margin-top: 20px;
    width: 100%!important;
  }
  .product-page .product-1 .BoxRight .list2 li .img a.img-box {
    height: 260px;
  }
  .product-page .product-1 .BoxRight .list2 li .content h6,
  .product-page .product-1 .BoxRight .list2 li .content h1 {
    font-size: 24px;
  }
  .product-page .product-1 .BoxRight .list2 li .content .text,.product-page .product-1 .BoxRight .list2 li .content a.down {
    font-size: 14px;
  }
  .product-page .product-1 .BoxRight .list ul,.productList-page .productList-1 .right .list ul {
    margin: -5px;
  }
  .product-page .product-1 .BoxRight .list ul li,.productList-page .productList-1 .right .list ul li {
    width: 50%;
    padding: 5px;
  }
  .product-page .product-1 .BoxRight .list ul li .img a.img-box,.productList-page .productList-1 .right .list ul li .img a.img-box {
    height: 100px;
  }
  .product-page .product-1 .BoxRight .list ul li .img h6,.productList-page .productList-1 .right .list ul li .img h6 {
    font-size: 14px;
    margin-top: 10px;
  }
}




.inner-page .sidebox .sideleft {
  width: 22%;
  position: sticky;
  top: 40px;
}
.inner-page .sidebox .sideleft .widget {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
}
.inner-page .sidebox .sideleft .widget form {
  position: relative;
}
.inner-page .sidebox .sideleft .widget form input {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  height: 40px;
  font-size: 16px;
    line-height: 2;
}
.inner-page .sidebox .sideleft .widget form button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #b60005;
  color: #fff;
  border: 0;
  padding: 8px 16px;
  cursor: pointer;
  height: 40px;
}
.inner-page .sidebox .sideleft .widget h6 {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-family: 'PB';
  color: #000;
}
.inner-page .sidebox .sideleft .widget ul {
  margin-bottom: 0;
  padding: 0;
}
.inner-page .sidebox .sideleft .widget ul li {
  margin-bottom: 15px;
  color: #555;
  font-size: 16px;
  line-height: 2;
  position: relative;
}
.inner-page .sidebox .sideleft .widget ul li a {
  padding-left: 20px;
}
.inner-page .sidebox .sideleft .widget ul li:last-child {
  margin-bottom: 0;
}
.inner-page .sidebox .sideleft .widget ul li i {
  font-size: 14px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 4px;
}
.inner-page .sidebox .sideleft .widget ul li:hover,
.inner-page .sidebox .sideleft .widget ul li.active {
  color: #b60005;
}
.inner-page .sidebox .sideleft .widget ul li ul {
  display: none;
  margin-top: 15px;
}
.inner-page .sidebox .sideleft .widget ul li ul li a {
  padding-left: 0;
  color: #999;
}
.inner-page .sidebox .sideleft .widget ul li ul li a.active{
  color: #b60005;
}
.inner-page .sidebox .sideleft .widget .recent li {
  display: block;
}
.inner-page .sidebox .sideleft .widget .recent li .thum {
  width: 100px;
  overflow: hidden;
  float: left;
}
.inner-page .sidebox .sideleft .widget .recent li a.title {
  display: block;
  margin-left: 115px;
}
.inner-page .sidebox .sideleft .widget .form1 {
  text-align: center;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="text"],
.inner-page .sidebox .sideleft .widget .form1 textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  margin-bottom: 15px;
  height: 40px;
  font-size: 16px;
    line-height: 2;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"] {
  background: #b60005;
  color: #fff;
  font-size: 18px;
  font-family: 'PB';
  text-transform: uppercase;
  height: 40px;
  padding: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"]:hover {
  background: #000;
}
.inner-page .sidebox .sideright {
  width: 78%;
  padding: 0 10px 50px 50px;
}


.ap-page {
  background: #f5f5f5;
}
.ap-page .sideright .ap-top {
  position: relative;
  transition: transform 0.85s cubic-bezier(0.15, 0.95, 0.4, 1), box-shadow 0.3s;
  transform-style: preserve-3d;
  perspective: 80000px;
}
.ap-page .sideright .ap-top .img {
  transition: transform 0.85s cubic-bezier(0.15, 0.95, 0.4, 1), box-shadow 0.3s;
  position: relative;
  transform-style: preserve-3d;
  transition: all .5s;
}
.ap-page .sideright .ap-top .img img {
  width: 100%;
}
.ap-page .sideright .ap-top .img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.ap-page .sideright .ap-top h6 {
  padding: 0 1.6rem 0.7rem;
  position: absolute;
  background: 0 0;
  font-size: 14px;
  line-height: 2;
  color: #fff;
  top: 1.6rem;
  left: 0;
  width: 100%;
  z-index: 10;
  text-transform: uppercase;
}
.ap-page .sideright .ap-top h6::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 2rem;
  background-color: #fff;
}
.ap-page .sideright .ap-top .desc {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 1.6rem;
  bottom: 1.6rem;
  color: #fff;
  z-index: 10;
}
.ap-page .sideright .ap-top .desc h2 {
  font-size: 24px;
  font-family: 'PB';
  line-height: 1.6;
}
.ap-page .sideright .ap-top .desc p {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.55);
}
.ap-page .sideright .ap-top:hover .img {
  transform: translateY(-3px);
  box-shadow: 0 15px 80px rgba(0, 0, 0, 0.35);
}
.ap-page .sideright .ap-bottom {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 2;
}
.ap-page .sideright .ap-bottom h6 {
  font-size: 25px;
  line-height: 1.6;
  color: #002E42;
  text-transform: capitalize;
  font-family: 'PB';
}
.ap-page .sideright .ap-bottom .con {
  font-size: 15px;
  line-height: 1.6;
  color: #002E42;
  margin-top: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}
.ap-page .sideright .ap-bottom .con p {
  margin-bottom: 15px;
}
.ap-page .sideright .ap-bottom .bottom2 {
  margin-top: 1.5rem;
  border-bottom: 1px solid #ccc;
}
.ap-page .sideright .ap-bottom .bottom2 dl {
  margin-top: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom2 dl dd {
  font-size: 15px;
  line-height: 1.6;
  color: #002E42;
  margin-bottom: 1rem;
}
.ap-page .sideright .ap-bottom .bottom3 {
  margin-top: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom3 ul {
  margin-top: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom3 ul li {
  margin-bottom: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom3 ul li h4 {
  font-size: 16px;
  text-transform: capitalize;
  color: #002E42;
  font-family: 'PB';
  line-height: 2;
  padding: 0.8rem 1.2rem;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.ap-page .sideright .ap-bottom .bottom3 ul li h4::after {
  content: "\f107";
  position: absolute;
  top: 0.8em;
  right: 1.5em;
  font-size: 20px;
  font-family: fontAwesome;
}
.ap-page .sideright .ap-bottom .bottom3 ul li .desc {
  padding: 1.6rem 2rem 0.8rem;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1px;
  color: #002E42;
  display: none;
}
.ap-page .sideright .ap-bottom .bottom3 ul li.active h4 {
  background: #e9672e;
  color: #fff;
}
.ap-page .sideright .ap-bottom .bottom3 ul li.active h4::after {
  content: "\f106";
}
.ap-page .sideright .ap-bottom .bottom3 ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1366px) {
  .inner-page .sidebox .sideleft {
    width: 28%;
  }
  .inner-page .sidebox .sideright {
    width: 72%;
  }
  .inner-page .sidebox .sideleft .widget .recent li a.title {
    margin-left: 98px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-page .sidebox .sideleft {
    display: none;
  }
  .inner-page .sidebox .sideright {
    width: 100%;
    padding-left: 0;
  }
  .inner-page .sidebox .sideright {
    padding: 0 0 50px 0;
  }
}
@media screen and (max-width: 700px) {
  .ap-page .sideright .ap-top .img img{
    min-height: 250px;
    object-fit: cover;
  }
  .ap-page .sideright .ap-top .desc p {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .ap-page .sideright .ap-bottom h6 {
    font-size: 22px;
    line-height: 1.8;
  }
  .ap-page .sideright .ap-bottom .bottom3 ul li h4::after {
    right: 0.5em;
  }
}

/*seo*/
/*.font-16 {
  line-height: 2;*/
}
._name.font-20.font-bold {
    line-height: 1.8;
}

@media screen and (max-width: 1000px){
  .font-60 {
    line-height: 1.6;
  }
  a.baowo,
  a.baowos,
  div#seo_other {
 display: none !important; 
  }
}
.img.mb-30 img {
    height: 300px;
}
a.baowos {
    width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}