@font-face {
  font-family: 'Poppins';
  src: url(../fonts/Poppins-Light.ttf) format('truetype'), url(../fonts/Poppins-Light.eot) format('eot'), url(../fonts/Poppins-Light.woff) format('woff'), url(../fonts/Poppins-Light.woff2) format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Poppins';
  src: url(../fonts/Poppins-Regular.ttf) format('truetype'), url(../fonts/Poppins-Regular.eot) format('eot'), url(../fonts/Poppins-Regular.woff) format('woff'), url(../fonts/Poppins-Regular.woff2) format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Poppins';
  src: url(../fonts/Poppins-Medium.ttf) format('truetype'), url(../fonts/Poppins-Medium.eot) format('eot'), url(../fonts/Poppins-Medium.woff) format('woff'), url(../fonts/Poppins-Medium.woff2) format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Poppins';
  src: url(../fonts/Poppins-SemiBold.ttf) format('truetype'), url(../fonts/Poppins-SemiBold.eot) format('eot'), url(../fonts/Poppins-SemiBold.woff) format('woff'), url(../fonts/Poppins-SemiBold.woff2) format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Poppins';
  src: url(../fonts/Poppins-Bold.ttf) format('truetype'), url(../fonts/Poppins-Bold.eot) format('eot'), url(../fonts/Poppins-Bold.woff) format('woff'), url(../fonts/Poppins-Bold.woff2) format('woff2');
  font-weight: bold;
}
@font-face {
  font-family: 'Poppins';
  src: url(../fonts/Poppins-Black.ttf) format('truetype'), url(../fonts/Poppins-Black.eot) format('eot'), url(../fonts/Poppins-Black.woff) format('woff'), url(../fonts/Poppins-Black.woff2) format('woff2');
  font-weight: 900;
}
@font-face {
  font-family: 'Anton-Regular';
  src: url(../fonts/Anton-Regular.ttf) format('truetype'), url(../fonts/Anton-Regular.eot) format('eot'), url(../fonts/Anton-Regular.woff) format('woff'), url(../fonts/Anton-Regular.woff2) format('woff2');
}
body {
  font-family: "Poppins";
  font-weight: 400;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  max-width: 1218px;
}
.font1 {
  font-family: 'Anton-Regular';
}
:root {
  --font: 'Anton-Regular';
  --color: #e60013;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header .nav {
  background: #120f10;
  position: relative;
  z-index: 1;
}
#header .nav::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  width: -webkit-calc(217px + 5%);
  width: -moz-calc(217px + 5%);
  width: calc(217px + 5%);
  background-color: #e60013;
}
#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;
  padding: 0 5%;
  height: 90px;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  padding: 25px 0;
  margin: 0 25px;
  font-size: 18px;
  line-height: 1;
  color: white;
  -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:hover > a {
  color: #e60013;
  border-bottom-color: currentColor;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#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: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 24px;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .msgBox {
  width: 217px;
  text-align: right;
}
#header .nav .ui.menu .msgBox span {
  min-width: 162px;
  height: 38px;
  line-height: 36px;
  display: inline-block;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-align: center;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  cursor: pointer;
}
#header .nav .ui.menu .msgBox span:hover {
  color: #e60013;
  background-color: #FFFFFF;
}
#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 .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;
  border: 0;
}
table tbody {
  display: table;
  width: 100% !important;
  min-width: 700px;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
  word-break: normal;
}
table tr {
  width: auto !important;
  height: auto !important;
}

.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #fd2318 !important;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
  position: relative;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  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 {
  margin-right: 28px;
}
.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: 12px;
  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 {
  position: relative;
}
#banner li {
  position: relative;
}
#banner li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/banner-mask.png);
}
#banner .content {
  position: absolute;
  width: 64%;
  left: 18%;
  top: 17%;
}
#banner h2 {
  margin-bottom: 20px;
  font-size: 4.99vw;
  line-height: 1.2;
  font-family: var(--font);
  color: #FFFFFF;
  text-transform: uppercase;
}
#banner h2 span {
  display: inline-block;
  padding: 0 45px;
  background-color: var(--color);
}
#banner p {
  margin-bottom: 40px;
  font-size: 20px;
  color: #FFFFFF;
}
#banner .small {
  position: absolute;
  left: 5%;
  top: 27%;
  width: 6%;
}
#banner .small .item img {
  border: 8px solid transparent;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  transition: border-color 0.5s ease;
}
#banner .small .item.active img {
  border-color: #FFFFFF;
}
#banner .play {
  position: absolute;
  z-index: 1;
  left: 71%;
  top: 39%;
  border-radius: 50%;
  cursor: pointer;
}
#banner .play::before,
#banner .play::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.28);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
#banner .play::after {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
#banner .dots {
  position: absolute;
  left: 18%;
  bottom: 8%;
}
#banner .dots li {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #FFFFFF;
  position: relative;
}
#banner .dots li::before {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
  border-radius: inherit;
  border: 3px solid transparent;
}
#banner .dots li.slick-active {
  background-color: var(--color);
}
#banner .dots li.slick-active::before {
  border-color: #FFFFFF;
}
#banner .dots li + li {
  margin-left: 23px;
}
#banner .dots li button {
  display: none;
}
@-webkit-keyframes ks {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@-moz-keyframes ks {
  from {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -moz-transform: scale(2);
    transform: scale(2);
    opacity: .3;
  }
  to {
    -moz-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
.baseBtn {
  display: inline-block;
  color: #FFFFFF;
  background-color: var(--color);
  height: 56px;
  line-height: 56px;
  min-width: 180px;
  text-align: center;
  transition: .5s ease;
}
.baseBtn:hover {
  background-color: #000000;
}
.baseBox {
  width: 90%;
  margin: auto;
}
.baseTit {
  font-size: 56px;
  font-family: var(--font);
}
.baseTit span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.baseTit span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 50%;
  border-bottom: 34px solid var(--color);
}
.our-solution {
  background: url(../images/solution-bg.jpg) no-repeat center;
  background-size: cover;
  padding-top: 70px;
}
.our-solution .list {
  margin-top: 70px;
}
.our-solution .list li {
  position: relative;
}
.our-solution .list li .content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14%;
  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;
  pointer-events: none;
}
.our-solution .list li .content .tag {
  color: #FFFFFF;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-solution .list li .content .line {
  margin: 10px 0;
  height: 20%;
  position: relative;
}
.our-solution .list li .content .line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -webkit-calc(50% - 1px);
  left: -moz-calc(50% - 1px);
  left: calc(50% - 1px);
  height: 0;
  width: 2px;
  margin: auto;
  background-color: #FFFFFF;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-solution .list li .content .name {
  font-size: 36px;
  font-weight: 900;
  color: #FFFFFF;
  text-align: center;
}
.our-solution .list li .content .name span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.our-solution .list li .content .name span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 9px;
  width: 0;
  border-bottom: 18px solid var(--color);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-solution .list li .content .icon {
  margin-top: auto;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.our-solution .list li .content .icon img {
  margin: auto;
}
.our-solution .list li:hover .content .tag {
  opacity: 1;
}
.our-solution .list li:hover .content .line::before {
  top: 0;
  height: 100%;
  opacity: 1;
}
.our-solution .list li:hover .content .name span::before {
  left: -5%;
  width: 110%;
}
.our-solution .list li:hover .content .icon {
  opacity: 1;
}
.our-about {
  background: url(../images/about-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 110px 0;
}
.our-about .baseTit span {
  margin-left: -30px;
}
.our-about .left {
  width: 50%;
  padding-right: 4%;
}
.our-about .left .img1 {
  width: 70%;
}
.our-about .left .img2 {
  width: 75%;
  margin-left: auto;
  margin-top: -14%;
}
.our-about .left .info {
  position: absolute;
  left: 0;
  bottom: 4%;
  text-align: center;
  background: url(../images/about-mask.png);
  background-size: auto 100%;
  width: 22%;
  padding: 9% 2% 4%;
}
.our-about .left .info .year {
  margin-bottom: 30px;
  font-size: 70px;
  color: #FFFFFF;
  font-family: var(--font);
}
.our-about .left .info .year span {
  font-size: 24px;
  vertical-align: super;
}
.our-about .left .info .text {
  line-height: 1.8;
  color: #FFFFFF;
  font-family: var(--font);
}
.our-about .right {
  width: 50%;
  margin-top: 40px;
}
.our-about .right .text {
  margin: 40px 0;
}
.our-about .list {
  margin-top: 80px;
}
#about-num li {
  text-align: center;
  position: relative;
}
#about-num li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19%;
  bottom: 19%;
  border-left: 1px solid #c7c7c6;
}
#about-num li .num {
  font-size: 62.75px;
  font-family: var(--font);
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
#about-num li .num span {
  font-size: 44.5px;
}
#about-num li .num span sup {
  font-size: 24px;
}
#about-num li p {
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
#about-num li:hover .num {
  color: var(--color);
}
#about-num li:hover p {
  color: var(--color);
}
.i-advantage {
  background: url(../images/adv-bg.jpg) no-repeat center;
  background-size: cover;
  color: #FFFFFF;
  padding: 100px 0 140px;
}
.i-advantage .left .text {
  margin-top: 30px;
  margin-bottom: 40px;
}
.i-advantage .left .tags {
  max-width: 650px;
  margin-top: 60px;
}
.i-advantage .left .tags .item {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.i-advantage .left .tags .item .icon {
  width: 87px;
  height: 87px;
  line-height: 87px;
  border-radius: 87px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.22);
}
.i-advantage .left .tags .item .icon img {
  vertical-align: middle;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.i-advantage .left .tags .item .name {
  padding-left: 115px;
  margin-top: 10px;
  line-height: 1.8;
}
.i-advantage .left .tags .item:hover .icon img {
  -webkit-filter: none;
  filter: none;
}
.i-advantage .left .list {
  margin-top: 60px;
}
.i-advantage .left .list li {
  line-height: 30px;
}
.i-advantage .left .list li + li {
  margin-top: 15px;
}
.i-advantage .left .list li i {
  font-size: 0;
}
.i-advantage .left .list li i img {
  vertical-align: middle;
}
.i-advantage .left .list li p {
  padding-left: 35px;
}
.i-advantage .right {
  margin-top: 50px;
}
.i-advantage .right .img1 {
  width: 80%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.i-advantage .right .img2 {
  width: 60%;
  margin-top: -20%;
}
.i-advantage .right .moreBtn {
  position: absolute;
  bottom: 10%;
  right: -webkit-calc(20% - 90px);
  right: -moz-calc(20% - 90px);
  right: calc(20% - 90px);
}
.i-advantage .single-progress-bar .labeled-text {
  font-weight: bold;
}
.i-advantage .single-progress-bar .percent {
  width: 22%;
}
.i-advantage .single-progress-bar .progress-scale {
  background: rgba(255, 255, 255, 0.65);
  width: 100%;
  height: 6px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.i-advantage .single-progress-bar .progress-scale .inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 80%;
  border-radius: 3px;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-duration: 2s;
  background: var(--color);
}
.our-product {
  background: url(../images/product-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 70px 0 110px;
}
.our-product .list {
  margin-top: 80px;
}
.our-product .list ul {
  margin: -19px;
}
.our-product .list li {
  padding: 19px;
}
.our-product .list li .name a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
.our-product .list li .name a:hover {
  background-size: 100% 1px;
  color: var(--color);
}
.our-case {
  background: url(../images/case-bg.jpg) no-repeat center;
  background-size: cover;
  color: #FFFFFF;
  padding: 90px 0 100px;
}
.our-case .list {
  margin-top: 70px;
}
.our-case .list ul {
  margin: -24px;
}
.our-case .list li {
  padding: 24px;
}
.our-case .list li .box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-case .list li .box .name {
  position: absolute;
  left: 10%;
  top: 50%;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  width: 80%;
  text-align: center;
  line-height: 1.7;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-case .list li .box:hover::before {
  opacity: 1;
}
.our-case .list li .box:hover .name {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.our-news {
  background: url(../images/news-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 60px 0 100px;
}
.our-news .box {
  margin-top: 70px;
}
.our-news .right li {
  border: 1px solid #bbbbbb;
  position: relative;
  padding: 4.5% 10% 4.5% 3%;
}
.our-news .right li + li {
  margin-top: 36px;
}
.our-news .right li .text {
  color: #666666;
}
.our-news .right li .moreBtn {
  position: absolute;
  right: 3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-news .right li .moreBtn a {
  display: block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-news .right li .moreBtn a img {
  vertical-align: middle;
}
.our-news .right li .moreBtn:hover {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.our-news .right li.active {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.6);
}
.our-news .right li.active .moreBtn a {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#footer {
  color: #FFFFFF;
  background-color: #120f10;
}
#footer .foot-top {
  padding: 70px 0 60px;
}
#footer .foot-top .form {
  margin-bottom: 45px;
}
#footer .foot-top .form ul {
  margin: -15px;
}
#footer .foot-top .form li {
  padding: 15px;
}
#footer .foot-top .form li:nth-child(1) {
  width: 25%;
}
#footer .foot-top .form li:nth-child(2) {
  width: 25%;
}
#footer .foot-top .form li:nth-child(3) {
  width: 32%;
}
#footer .foot-top .form li:nth-child(4) {
  width: 18%;
}
#footer .foot-top .form input {
  font-size: 16px;
  width: 100%;
  height: 70px;
  background-color: #454545;
  border: 1px solid #666666;
  padding-left: 65px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-position: left 20px center;
}
#footer .foot-top .form input[name="name"] {
  background-image: url(../images/form-icon1.png);
}
#footer .foot-top .form input[name="mail"] {
  background-image: url(../images/form-icon2.png);
}
#footer .foot-top .form input[name="content"] {
  background-image: url(../images/form-icon3.png);
}
#footer .foot-top .form input[type="submit"] {
  padding: 0;
  font-size: 20px;
  background-color: var(--color);
  border-color: var(--color);
  transition: .5s ease;
}
#footer .foot-top .form input[type="submit"]:hover {
  background-color: #000000;
}
#footer .foot-top .form input::-webkit-input-placeholder {
  color: #FFFFFF;
}
#footer .foot-top .form input:-moz-placeholder {
  color: #FFFFFF;
}
#footer .foot-top .form input::-moz-placeholder {
  color: #FFFFFF;
}
#footer .foot-top .form input:-ms-input-placeholder {
  color: #FFFFFF;
}
#footer .foot-top .form input::placeholder {
  color: #FFFFFF;
}
#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:nth-child(3) {
  max-width: 250px;
}
#footer .foot-top .foot-content .foot-block:nth-child(4) {
  max-width: 420px;
}
#footer .foot-top .foot-content h4 {
  margin-bottom: 30px;
}
#footer .foot-top .foot-content ul li {
  color: #bcbcbc;
}
#footer .foot-top .foot-content ul li + li {
  margin-top: 20px;
}
#footer .foot-top .foot-content ul li a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
#footer .foot-top .foot-content ul li a:hover {
  background-size: 100% 1px;
  color: var(--color);
}
#footer .foot-top .foot-content ol li {
  line-height: 45px;
  color: #bcbcbc;
}
#footer .foot-top .foot-content ol li i {
  font-size: 0;
  width: 30px;
  text-align: center;
}
#footer .foot-top .foot-content ol li i img {
  vertical-align: middle;
  -webkit-filter: brightness(0) invert(0.6);
  filter: brightness(0) invert(0.6);
}
#footer .foot-top .foot-content ol li p {
  padding-left: 40px;
}
#footer .foot-top .foot-content ol li:hover i img {
  -webkit-filter: none;
  filter: none;
}
#footer .foot-top .foot-content .social-links {
  margin-top: 40px;
  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 .social-links a {
  font-size: 18px;
  width: 31px;
  height: 31px;
  line-height: 31px;
  text-align: center;
  color: #bcbcbc;
  border: 1px solid currentcolor;
  border-radius: 50%;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
#footer .foot-top .foot-content .social-links a:hover {
  color: var(--color);
}
#footer .foot-bottom {
  border-top: 1px solid #6b6b6b;
}
#footer .foot-bottom p,
#footer .foot-bottom a {
  display: inline-block;
  vertical-align: middle;
  color: #bcbcbc;
}
#footer .foot-bottom img {
  height: 16px;
}
#ewm {
  margin-top: 60px;
  width: 160px;
  border: 5px solid #FFFFFF;
}
@media (max-width: 1800px) {
  #header .nav .ui.menu .logo {
    width: 200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 20px;
    font-size: 16px;
  }
  .font-18 {
    font-size: 16px;
  }
  .font-20 {
    font-size: 18px;
  }
  .font-24 {
    font-size: 20px;
  }
  #banner p {
    font-size: 18px;
  }
  .baseTit {
    font-size: 50px;
  }
  .our-solution .list li .content {
    padding: 10%;
  }
  .our-solution .list li .content .name {
    font-size: 30px;
  }
  .our-solution .list li .content .name span::before {
    border-width: 10px;
    bottom: 5px;
  }
  .our-about .left .info .year {
    font-size: 60px;
    margin-bottom: 10px;
  }
  .our-about .left .info .year span {
    font-size: 20px;
  }
  #about-num li .num {
    font-size: 50px;
  }
  #about-num li .num span {
    font-size: 34.5px;
  }
}
@media (max-width: 1600px) {
  #header .nav .ui.menu {
    height: auto;
  }
  #header .nav::before {
    display: none;
  }
  #header .nav .ui.menu .msgBox {
    display: none;
  }
  #header .nav .ui.menu .menu-box {
    margin-left: 0;
  }
  .hover-language {
    margin-right: 0;
  }
  .our-about .right {
    margin-top: 0;
  }
  .our-product .list ul {
    margin: -15px;
  }
  .our-product .list li {
    padding: 15px;
  }
  .our-case .list ul {
    margin: -15px;
  }
  .our-case .list li {
    padding: 15px;
  }
  .our-news .right li {
    padding: 3% 15% 3% 3%;
  }
}
@media (max-width: 1440px) {
  #banner p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .baseTit {
    font-size: 40px;
  }
  .baseTit span::before {
    border-width: 20px;
  }
  .font-20 {
    font-size: 16px;
  }
  .font-24 {
    font-size: 18px;
  }
  .our-solution .list li .content .line {
    height: 15%;
  }
  .our-solution .list li .content .name {
    font-size: 24px;
  }
  .our-solution .list li .content .icon {
    width: 20px;
    margin: auto auto 0;
  }
  .our-about .left .img2 {
    margin-top: -10%;
  }
  .our-about .right .text {
    margin: 20px 0;
  }
  .our-about .left .info .year {
    font-size: 40px;
  }
  .our-about .left .info .year span {
    font-size: 16px;
  }
  #about-num li .num {
    font-size: 40px;
  }
  #about-num li .num span {
    font-size: 24px;
  }
  #about-num li .num span sup {
    font-size: 16px;
  }
  .i-advantage .right .img2 {
    width: 60%;
    margin-top: -10%;
  }
  .i-advantage .right .moreBtn {
    right: 0;
  }
  .i-advantage .left .text {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .i-advantage .left .tags {
    margin-top: 30px;
  }
  .i-advantage .left .tags .item .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 80px;
  }
  .i-advantage .left .list {
    margin-top: 30px;
  }
  .i-advantage .left .list li + li {
    margin-top: 10px;
  }
  .baseBtn {
    height: auto;
    line-height: 1.5;
    min-width: auto;
    padding: 10px 30px;
  }
  #footer .foot-top .foot-content .foot-block:nth-child(4) {
    max-width: 300px;
  }
}
@media (max-width: 1230px) {
  #header .nav .ui.menu {
    padding: 0 15px;
  }
  #header .nav .ui.menu .logo {
    width: 150px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 15px;
    font-size: 14px;
  }
  #banner .small {
    display: none;
  }
  #banner .dots {
    left: 5%;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
  }
  #banner .dots li {
    display: block;
  }
  #banner .dots li + li {
    margin-left: 0;
    margin-top: 23px;
  }
  .font-16 {
    font-size: 14px;
  }
  .font-18 {
    font-size: 14px;
  }
  .font-20 {
    font-size: 14px;
  }
  .font-24 {
    font-size: 16px;
  }
  .baseTit {
    font-size: 34px;
  }
  #about-num li .num {
    font-size: 30px;
  }
  #about-num li .num span {
    font-size: 20px;
  }
  #about-num li .num span sup {
    font-size: 14px;
  }
  .i-advantage .left .tags .item .name {
    padding-left: 90px;
  }
  .i-advantage .left .tags .item .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 70px;
  }
  #footer .foot-top .form input {
    font-size: 14px;
    height: 50px;
  }
  #footer .foot-top .form input[type="submit"] {
    font-size: 16px;
  }
  #footer .foot-top .form ul {
    margin: -10px;
  }
  #footer .foot-top .form li {
    padding: 10px;
  }
  #footer .foot-top .foot-content .foot-block:nth-child(4) {
    max-width: 400px;
  }
  #footer .foot-bottom img {
    height: 14px;
  }
  .hide-1230 {
    display: none!important;
  }
}
@media (max-width: 1000px) {
  #nav-height {
    display: none;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner .dots {
    display: none;
  }
  #banner .content {
    left: 5%;
    width: 90%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
  }
  #banner .play {
    display: none;
  }
  #banner h2 {
    font-size: 30px;
    line-height: 1.5;
  }
  #banner h2 br {
    display: none;
  }
  #banner h2 span {
    padding: 0 .5em;
  }
  #banner p {
    font-size: 14px;
  }
  .baseTit {
    font-size: 30px;
  }
  .baseTit span::before {
    border-width: 15px;
  }
  .our-solution .list li .content .tag {
    opacity: 1;
  }
  .our-solution .list li .content .line::before {
    height: 100%;
    opacity: 1;
    top: 0;
  }
  .our-solution .list li .content .icon {
    opacity: 1;
  }
  .our-solution .list li .content .name span::before {
    width: 110%;
    left: -5%;
  }
  .our-solution {
    padding-top: 60px;
  }
  .our-solution .list {
    margin-top: 60px;
  }
  .our-about {
    padding: 60px 0;
  }
  .our-about .left {
    width: 100%;
    padding-right: 0;
  }
  .our-about .right {
    width: 100%;
    margin-top: 40px;
  }
  .our-about .baseTit span {
    margin-left: -15px;
  }
  .our-about .list {
    margin-top: 40px;
  }
  #about-num ul {
    margin: -15px;
  }
  #about-num li {
    width: 50%!important;
    padding: 15px;
  }
  #about-num li:nth-child(3)::before {
    display: none;
  }
  .baseTit span {
    padding-left: 15px;
  }
  .i-advantage {
    padding: 60px 0;
  }
  .i-advantage .left {
    width: 100%;
  }
  .i-advantage .right {
    width: 100%;
    display: none;
  }
  .i-advantage .left .tags {
    max-width: 100%;
  }
  .our-product {
    padding: 60px 0;
  }
  .our-product .list {
    margin-top: 40px;
  }
  .our-case {
    padding: 60px 0;
  }
  .our-case .list {
    margin-top: 40px;
  }
  .our-news {
    padding: 60px 0;
  }
  .our-news .box {
    margin-top: 40px;
  }
  .our-news .left {
    display: none;
  }
  .our-news .right {
    width: 100%;
  }
  .our-news .right li + li {
    margin-top: 20px;
  }
  #footer .foot-top {
    padding: 60px 0;
  }
  #footer .foot-top .form li {
    width: 50%!important;
  }
  .hide-1000 {
    display: none!important;
  }
  #ewm {
    margin-top: 0;
  }
  .our-news .right li .moreBtn {
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  }
  .our-news .right li .moreBtn a {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
@media (max-width: 768px) {
  #banner h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .baseBtn {
    padding: 5px 15px;
  }
  .baseTit {
    font-size: 24px;
  }
  .our-solution .list li .content .name {
    font-weight: 600;
    font-size: 20px;
  }
  .our-solution .list li .content .name span::before {
    border-width: 5px;
  }
  #footer .foot-top .foot-content {
    display: block;
  }
  #footer .foot-top .foot-content .foot-block {
    max-width: 100%!important;
  }
  .font-24 {
    font-size: 14px;
  }
  .hide-768 {
    display: none!important;
  }
}
@media (max-width: 500px) {
  #banner li {
    height: 300px;
  }
  #banner li > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .our-about .left .info {
    display: none;
  }
  .our-about .left .img1 {
    display: none;
  }
  .our-about .left .img2 {
    width: 100%;
    margin-top: 0;
  }
  #about-num li .num {
    font-size: 24px;
  }
  #about-num li .num span {
    font-size: 16px;
  }
  #about-num li .num span sup {
    font-size: 12px;
  }
  .i-advantage .left .tags .item {
    width: 100%;
  }
  .i-advantage .left .tags .item + .item {
    margin-top: 20px;
  }
  .i-advantage .left .list li {
    line-height: 22px;
  }
  #footer .foot-top .form li {
    width: 100% !important;
  }
}
.inner-banner {
  padding-top: 120px;
  height: 440px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.inner-banner .box {
  padding-left: 50px;
}
.inner-banner h2 {
  font-size: 48px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.inner-banner h2::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -50px;
  bottom: 10%;
  width: 120px;
  height: 33%;
  background-color: var(--color);
}
.inner-banner .mbx {
  color: #FFFFFF;
}
.inner-banner .mbx a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
.inner-banner .mbx a:hover {
  background-size: 100% 1px;
  color: var(--color);
}
.about-page {
  background: url(../images/inner-about-bg.jpg);
}
.about-page .about-1 {
  padding-top: 90px;
}
.about-page .about-1 .text {
  margin-top: 30px;
}
.about-page .about-1 .list {
  margin-top: 80px;
}
.about-page .about-1 .video {
  margin-top: 70px;
  height: 510px;
  background: url(../images/inner-about-1.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}
.about-page .about-1 .video .play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  cursor: pointer;
}
.about-page .about-1 .video .play::before,
.about-page .about-1 .video .play::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.52);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.about-page .about-1 .video .play::after {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.about-page .about-2 {
  padding: 90px 0;
}
.about-page .about-2 .list {
  margin-top: 60px;
}
.about-page .about-2 .list ul {
  margin: -15px;
}
.about-page .about-2 .list li {
  padding: 15px;
  width: 33.33%;
}
.about-page .about-2 .list li .box {
  background-color: #FFFFFF;
  border: 3px solid #FFFFFF;
  border-radius: 20px;
  padding: 60px 140px 60px 50px;
  position: relative;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-page .about-2 .list li .box .icon {
  position: absolute;
  right: 34px;
  top: 84px;
  width: 83px;
  height: 83px;
  line-height: 81px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #c8c8c8;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-page .about-2 .list li .box .icon img {
  vertical-align: middle;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-page .about-2 .list li .box .name {
  font-size: 27.08px;
  font-weight: bold;
}
.about-page .about-2 .list li .box .text {
  font-size: 18.75px;
  line-height: 1.5;
  min-height: 4.5em;
}
.about-page .about-2 .list li .box:hover {
  border-color: var(--color);
  -webkit-box-shadow: 0 17px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 17px 8px rgba(0, 0, 0, 0.15);
}
.about-page .about-2 .list li .box:hover .icon {
  border-color: var(--color);
}
.about-page .about-2 .list li .box:hover .icon img {
  -webkit-filter: none;
  filter: none;
}
.about-page .about-3 {
  background-color: #FFFFFF;
  padding: 70px 0 110px;
}
.about-page .about-3 .list {
  margin-top: 80px;
}
.about-page .about-3 .list ul {
  margin: -30px;
}
.about-page .about-3 .list li {
  padding: 30px;
}
@media (max-width: 1800px) {
  .about-page .about-2 .list li .box .name {
    font-size: 24px;
  }
  .about-page .about-2 .list li .box .text {
    font-size: 16px;
  }
}
@media (max-width: 1600px) {
  .inner-banner h2 {
    font-size: 50px;
  }
  .about-page .about-3 .list ul {
    margin: -15px;
  }
  .about-page .about-3 .list li {
    padding: 15px;
  }
}
@media (max-width: 1440px) {
  .inner-banner {
    height: 400px;
  }
  .inner-banner h2 {
    font-size: 40px;
  }
  .about-page .about-2 .list li .box {
    padding: 40px 100px 40px 20px;
  }
  .about-page .about-2 .list li .box .name {
    font-size: 20px;
  }
  .about-page .about-2 .list li .box .icon {
    right: 20px;
    top: 40px;
    width: 75px;
    height: 75px;
    line-height: 73px;
  }
}
@media (max-width: 1230px) {
  .inner-banner {
    height: 350px;
  }
  .inner-banner h2 {
    font-size: 34px;
  }
  .innerTit {
    font-size: 30px;
  }
  .about-page .about-2 .list li .box .icon {
    position: static;
    margin-bottom: 20px;
  }
  .about-page .about-2 .list li .box .name {
    font-size: 17px;
  }
  .about-page .about-2 .list li .box .text {
    font-size: 14px;
  }
  .about-page .about-2 .list li .box {
    padding: 20px;
  }
}
@media (max-width: 1000px) {
  .inner-banner .box {
    padding-left: 0;
  }
  .inner-banner h2::before {
    left: -30px;
    display: none;
  }
  .inner-banner {
    height: 300px;
  }
  .inner-banner h2 {
    font-size: 30px;
  }
  .innerTit {
    font-size: 24px;
  }
  .about-page .about-1 {
    padding-top: 60px;
  }
  .about-page .about-1 .list {
    margin-top: 40px;
  }
  .about-page .about-1 .video {
    height: 300px;
    margin-top: 40px;
  }
  .about-page .about-2 {
    padding: 60px 0;
  }
  .about-page .about-2 .list {
    margin-top: 40px;
  }
  .about-page .about-2 .list li {
    width: 50%;
  }
  .about-page .about-3 {
    padding: 60px 0;
  }
  .about-page .about-3 .list {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .inner-banner {
    padding-top: 80px;
  }
  .inner-banner h2 {
    font-size: 24px;
  }
  .innerTit {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .inner-banner {
    padding-top: 40px;
  }

  .about-page .about-2 .list li {
    width: 100%;
  }
}
.contact-page {
  background: url(../images/inner-contact-bg.jpg);
}
.contact-page .contact-1 {
  padding: 100px 0 0;
}
.contact-page .contact-1 .box {
  background-color: #FFFFFF;
  padding: 60px 50px 40px;
  -webkit-box-shadow: 0 0 21px rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.03);
}
.contact-page .contact-1 .form {
  margin-top: 40px;
}
.contact-page .contact-1 .form ul {
  margin: -10px -50px;
}
.contact-page .contact-1 .form li {
  padding: 10px 50px;
  width: 50%;
}
.contact-page .contact-1 .form li.wid-100 {
  width: 100%;
}
.contact-page .contact-1 .form input,
.contact-page .contact-1 .form textarea,
.contact-page .contact-1 .form label {
  width: 100%;
  font-size: 24px;
  padding: 20px 40px;
}
.contact-page .contact-1 .form label {
  display: block;
}
.contact-page .contact-1 .form input {
  border: none;
  border-bottom: 1px solid #cbcbcb;
}
.contact-page .contact-1 .form input[type='submit'] {
  border: none;
  width: auto;
  padding: 0;
  height: 60px;
  width: 195px;
  color: #FFFFFF;
  background-color: var(--color);
}
.contact-page .contact-1 .form textarea {
  border: 1px solid #cbcbcb;
}
.contact-page .contact-2 {
  padding: 80px 0 90px;
}
.contact-page .contact-2 .desc {
  font-size: 21px;
  color: #666666;
}
.contact-page .contact-2 .box {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #FFFFFF;
}
.contact-page .contact-2 .box .left {
  width: 50%;
  padding: 60px 30px;
}
.contact-page .contact-2 .box .left ul {
  margin: -45px -15px;
}
.contact-page .contact-2 .box .left li {
  padding: 45px 15px;
  width: 50%;
}
.contact-page .contact-2 .box .left li.wid-100 {
  width: 100%;
}
.contact-page .contact-2 .box .left li h3 {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 600;
}
.contact-page .contact-2 .box .left li p {
  line-height: 2;
}
.contact-page .contact-2 .box .right {
  width: 50%;
}
.contact-page .contact-2 .box .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .contact-page .contact-1 .form input,
  .contact-page .contact-1 .form textarea,
  .contact-page .contact-1 .form label {
    font-size: 20px;
  }
  .contact-page .contact-2 .desc {
    font-size: 18px;
  }
  .contact-page .contact-2 .box .left li h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1230px) {
  .contact-page .contact-1 {
    padding: 60px 0;
  }
  .contact-page .contact-1 .form input,
  .contact-page .contact-1 .form textarea,
  .contact-page .contact-1 .form label {
    font-size: 18px;
    padding: 10px 20px;
  }
  .contact-page .contact-1 .form ul {
    margin: -15px;
  }
  .contact-page .contact-1 .form li {
    padding: 15px;
  }
  .contact-page .contact-2 {
    padding: 60px 0;
  }
  .contact-page .contact-2 .desc {
    font-size: 16px;
  }
  .contact-page .contact-2 .box .left li h3 {
    font-size: 20px;
  }
  .contact-page .contact-2 .box .left ul {
    margin: -25px -15px;
  }
  .contact-page .contact-2 .box .left li {
    padding: 25px 15px;
  }
}
@media (max-width: 1000px) {
  .contact-page .contact-1 .box {
    padding: 30px;
  }
  .contact-page .contact-1 .form {
    margin-top: 30px;
  }
  .contact-page .contact-1 .form input,
  .contact-page .contact-1 .form textarea,
  .contact-page .contact-1 .form label {
    font-size: 16px;
  }
  .contact-page .contact-2 .desc {
    font-size: 14px;
  }
  .contact-page .contact-2 .box {
    display: block;
  }
  .contact-page .contact-2 .box .left {
    width: 100%;
    padding: 30px;
  }
  .contact-page .contact-2 .box .right {
    width: 100%;
  }
  .contact-page .contact-2 .box .left ul {
    margin: -15px;
  }
  .contact-page .contact-2 .box .left li {
    padding: 15px;
  }
}
@media (max-width: 500px) {
  .contact-page .contact-1 .form li {
    width: 100%;
  }
  .contact-page .contact-1 .form input,
  .contact-page .contact-1 .form textarea,
  .contact-page .contact-1 .form label {
    padding: 10px;
    font-size: 14px;
  }
  .contact-page .contact-1 .form input[type='submit'] {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .contact-page .contact-1 .form ul {
    margin: -10px;
  }
  .contact-page .contact-1 .form li {
    padding: 10px;
  }
  .contact-page .contact-2 .box .left li {
    width: 100%;
  }
  .contact-page .contact-2 .box .left li h3 {
    margin-bottom: 10px;
  }
}
.product-page {
  background: url(../images/inner-about-bg.jpg);
  padding: 115px 0;
}
.product-page .proLeft {
  width: 24%;
  position: sticky;
  top: 120px;
}
.product-page .proLeft .box {
  padding: 30px;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.09);
}
.product-page .proLeft .box + .box {
  margin-top: 37px;
}
.product-page .proLeft .box .name {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}
.product-page .proLeft .box .list li {
  padding-left: 20px;
  position: relative;
}
.product-page .proLeft .box .list li + li {
  margin-top: 10px;
}
.product-page .proLeft .box .list li:hover,
.product-page .proLeft .box .list li.active {
  color: var(--color);
}
.product-page .proLeft .box .list li i {
  position: absolute;
  left: 0;
  top: 10px;
}
.product-page .proLeft .box .list li a {
  display: block;
}
.product-page .proLeft .box .form input,
.product-page .proLeft .box .form textarea {
  margin-bottom: 20px;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  background-color: #ebe9e6;
  border: none;
}
.product-page .proLeft .box .form input[type="submit"] {
  color: #FFFFFF;
  background-color: var(--color);
}
.product-page .proRight {
  width: 73%;
}
.product-page .cateBox {
  margin-bottom: 70px;
}
.product-page .cateBox .left {
  width: 41%;
}
.product-page .cateBox .right {
  width: 54%;
  margin-top: 25px;
}
.product-page .cateBox .right .text {
  line-height: 1.8;
}
.product-page .proList ul {
  margin: -40px -25px;
}
.product-page .proList li {
  width: 25%;
  padding: 40px 25px;
}
.product-page .proList li .img {
  margin-bottom: 35px;
}
.product-page .proList li .name {
  font-size: 22.89px;
  font-weight: bold;
}
@media (max-width: 1800px) {
  .product-page .proLeft .box .list li i {
    top: 8px;
  }
  .product-page .proList ul {
    margin: -15px;
  }
  .product-page .proList li {
    padding: 15px;
  }
  .product-page .proList li .img {
    margin-bottom: 15px;
  }
  .product-page .proList li .name {
    font-size: 20px;
  }
  .product-page .proLeft .box .form input,
  .product-page .proLeft .box .form textarea {
    font-size: 16px;
  }
}
@media (max-width: 1600px) {
  .product-page .cateBox .right {
    margin-top: 0;
  }
}
@media (max-width: 1400px) {
  .product-page .proList li .name {
    font-size: 18px;
  }
}
@media (max-width: 1230px) {
  .product-page .proLeft .box {
    padding: 15px;
  }
  .product-page .proList li .name {
    font-size: 16px;
  }
  .product-page .proLeft .box .list li i {
    top: 6px;
  }
  .product-page .proLeft .box .form input,
  .product-page .proLeft .box .form textarea {
    font-size: 14px;
    padding: 10px;
  }
  .product-page .proList li {
    width: 33.33%;
  }
}
@media (max-width: 1000px) {
  .product-page {
    padding: 60px 0;
  }
  .product-page .cateBox {
    margin-bottom: 60px;
  }
  .product-page .proLeft {
    display: none;
  }
  .product-page .proRight {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-page .proList li .name {
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .product-page .cateBox .left {
    width: 100%;
  }
  .product-page .cateBox .right {
    width: 100%;
    margin-top: 40px;
  }
  .product-page .proList li {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .product-page .proList li {
    width: 100%;
  }
}
.honor-page {
  background: url(../images/inner-about-bg.jpg);
}
.honor-page .honor-1 {
  padding: 140px 0 120px;
}
.honor-page .honor-1 .left {
  width: 40%;
}
.honor-page .honor-1 .left .arrows span {
  display: inline-block;
  width: 60px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--color);
  cursor: pointer;
}
.honor-page .honor-1 .left .arrows span img {
  vertical-align: middle;
}

.honor-page .honor-1 .left ol li {
  font-weight: 600;
  padding-left: 20px;
  position: relative;
}

.honor-page .honor-1 .left ol li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #dc2221;
}

.honor-page .honor-1 .right {
  width: 57%;
  margin-top: 40px;
}
.honor-page .honor-1 .right ul {
  margin: -15px;
}
.honor-page .honor-1 .right li {
  padding: 15px;
}
.honor-page .honor-2 {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
}
.honor-page .honor-2::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 25%;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
}
.honor-page .honor-2 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 80px;
}
.honor-page .honor-2 .box .content:nth-child(1) {
  width: 40%;
  margin-top: 15px;
}
.honor-page .honor-2 .box .content:nth-child(2) {
  width: 25%;
}
.honor-page .honor-2 .box .content:nth-child(3) {
  width: 31%;
}
.honor-page .honor-2 .box .content .text {
  margin-top: 40px;
}
.honor-page .honor-2 .box .content ul li {
  line-height: 36px;
}
.honor-page .honor-2 .box .content ul li + li {
  margin-top: 35px;
}
.honor-page .honor-2 .box .content ul li i {
  font-size: 0;
}
.honor-page .honor-2 .box .content ul li i img {
  vertical-align: middle;
}
.honor-page .honor-2 .box .content ul li p {
  padding-left: 55px;
}
.honor-page .honor-2 .list {
  margin-top: 80px;
}
.honor-page .honor-2 .list ul {
  margin: -19px;
}
.honor-page .honor-2 .list li {
  padding: 19px;
}
.honor-page .honor-2 .list li .name a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
.honor-page .honor-2 .list li .name a:hover {
  background-size: 100% 1px;
  color: var(--color);
}
@media (max-width: 1800px) {
  .honor-page .honor-1 .left ol li:before {
    top: 6px;
  }
}
@media (max-width: 1600px) {
  .honor-2 .list ul {
    margin: -15px;
  }
  .honor-2 .list li {
    padding: 15px;
  }
}
@media (max-width: 1230px) {
  .honor-page .honor-1 .left ol li:before {
    top: 5px;
  }
}
@media (max-width: 1000px) {
  .honor-page .honor-1 {
    padding: 60px 0;
  }
  .honor-page .honor-1 .left {
    width: 100%;
  }
  .honor-page .honor-1 .right {
    width: 100%;
  }
  .honor-page .honor-2 {
    padding: 60px 0;
  }
  .honor-page .honor-2 .box {
    margin-top: 40px;
  }
  .honor-page .honor-2 .box .content .text {
    margin-top: 20px;
  }
  .honor-page .honor-2 .box .content:nth-child(1) {
    margin-top: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  .honor-page .honor-2 .box .content:nth-child(2) {
    width: 50%;
  }
  .honor-page .honor-2 .box .content:nth-child(3) {
    width: 50%;
  }
  .honor-page .honor-2 .box .content ul li + li {
    margin-top: 15px;
  }
  .honor-page .honor-2 .list {
    margin-top: 40px;
  }
}
@media (max-width: 500px) {
  .honor-page .honor-2 .box .content:nth-child(2) {
    width: 100%;
  }
  .honor-page .honor-2 .box .content:nth-child(3) {
    width: 100%;
  }
  .honor-page .honor-2 .box .content ul li {
    margin-top: 15px;
  }
}








/*news*/
.inner-page .slideBar-left {
  width: 22%;
  margin-bottom: 75px;
}

.inner-page .slideBar-left h3 {
  font-weight: 400;
  font-size: 31px;
  color: #000000;
  line-height: 1.4;
  padding-left: 33px;
  margin-bottom: 60px;
}

.inner-page .slideBar-left h3.ac3 {
  margin-top: 105px;
}
.inner-page .slideBar-left .slideNav > li {
  margin-bottom: 10px;
}
.inner-page .slideBar-left .slideNav > li > a {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  display: block;
  font-size: 18px;
  background: rgba(222, 222, 222, 0.4);
  padding: 22px 40px;
  line-height: 30px;

}

.inner-page .slideBar-left .slideNav > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
height: 100%;
background: #dc2221;
}
.inner-page.product-page .slideBar-left .slideNav>li>a{
  background: white;
}
.inner-page .slideBar-left .slideNav > li > a .fa {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 25px;
}
.inner-page .slideBar-left .slideNav > li ul li {
  margin: 5px;
  margin-right: 0;
}
.inner-page .slideBar-left .slideNav > li ul li a {
  padding: 10px;
  font-size: 17px;
  display: block;
}
.inner-page .slideBar-left .slideNav > li ul li.active a,
.inner-page .slideBar-left .slideNav > li ul li:hover a {
  background: #3365d8;
  color: white;
}
.inner-page .slideBar-left .slideNav > li:hover > a,
.inner-page .slideBar-left .slideNav > li.active > a {
  background: #3365d8;
  color: white;
}
.inner-page .slideBar-left .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 44px;
}
.inner-page .slideBar-left .share li {
  width: 30px;
  height: 30px;
  background: #A7D78E;
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 34px;
  margin-right: 15px;
}
.inner-page .slideRight {
  width: 78%;
  padding-left: 49px;
}
.news-page{
  padding: 90px 0;
  background: url(../images/inner-about-bg.jpg);
}
.news-page .slideRight .i-news .wrap .column {
  margin-bottom: 35px;
}
.news-page .i-news .wrap{
      margin: -23px;
}
.news-page .i-news .wrap .column {
    padding: 23px;
}
.news-page .slideRight .i-news .wrap .column {
    margin-bottom: 35px;
}
.news-page .i-news .wrap .column .item {
    display: block;
    position: relative;
    -webkit-box-shadow: 5px 5px 30px 0px rgba(0,0,0,.1);
    box-shadow: 5px 5px 30px 0px rgba(0,0,0,.1);
    padding: 50px 25px 85px;
}
.news-page .i-news .wrap .column .item .content {
    line-height: 1.7;
    text-align: center;
}
.news-page .i-news .wrap .column .item h4 {
    text-align: center;
    font-size: 20px;
    line-height: 34px;
    font-weight: bold;
    position: relative;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    margin: 30px 0 20px;
}
.news-page .i-news .wrap .column .item .time {
    font-size: 16px;
    line-height: 30px;
    display: block;
    text-align: center;
}
.news-page .i-news .wrap .column .item .douhao {
    width: 74px;
    height: 74px;
    border-radius: 100%;
    text-align: center;
    line-height: 1.4;
    -webkit-box-shadow: 4px 4px 27px 0px rgba(0,0,0,.11);
    box-shadow: 4px 4px 27px 0px rgba(0,0,0,.11);
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%,50%);
    -moz-transform: translate(-50%,50%);
    -ms-transform: translate(-50%,50%);
    transform: translate(-50%,50%);
}
@media screen and (max-width: 1320px) {
  .inner-page .slideBar-left {
    display: none;
  }
  .inner-page .slideRight {
    width: 100%;
    padding-left: 0;
  }
  .inner-page .sideLeft{
    display: none;
  }
  .inner-page .sideRight{
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .news-page .slideRight .i-news .wrap .column {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
    .news-page .slideRight .i-news .wrap .column {
    width: 100%;
  }
}

/*newsdet-page*/
.newdet2-page {
    padding: 90px 0;
}
.newdet2-page h1 {
    font-size: 30px;
    color: #0b2239;
}
.newdet2-page time {
    display: block;
    margin: 15px 0;
    font-size: 14px;
    line-height: 2;
    color: black;
    opacity: .6;
}
.newdet2-page .content {
    display: block;
    padding: 15px 0;
    border-top: 1px #ccc dashed;
    border-bottom: 1px #ccc dashed;
    font-size: 16px;
    color: #868686;
    line-height: 30px;
}
.newdet2-page .share {
    padding-top: 10px;
    margin-bottom: 60px;
}
.newdet2-page .share h4 {
    font-size: 14px;
    line-height: 2;
    color: black;
    display: inline-block;
    vertical-align: middle;
}
.newdet2-page .share ul {
    display: inline-block;
    vertical-align: middle;
}
.newdet2-page .share ul li {
    width: auto;
    margin-left: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.newdet2-page .share ul li:hover {
    color: #026293;
}
@media screen and (max-width: 500px){
   .newdet2-page{
        padding: 50px 0 10px;
    }
}




.fixed-bar {
  position: fixed;
  z-index: 222;
  right: 15px;
  bottom: 15%;
}
.fixed-bar .dom {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  line-height: 56px;
  text-align: center;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  cursor: pointer;
}
.fixed-bar .dom.on,
.fixed-bar .dom:hover {
  border-color: #e60013;
  background-color: #e60013;
}
.fixed-bar .dom img {
  vertical-align: middle;
}
.fixed-bar .dom + div {
  margin-top: 15px;
}

@media (max-width: 1000px) {
  .fixed-bar {
    display: none;
  }
}





.more_cont {
    position: relative;
    display: inline-block;
    padding: 12px 38px;
    background: var(--color);
    border-radius: 3px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}

.more_cont span {
    position: relative;
    z-index: 2;
}

.more_cont:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    transform: scaleX(0);
    -ms-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -o-transform: scaleX(0);
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}

.more_cont:hover {
    background-color: #fff;
}

.more_cont:hover:before {
    transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
}


.faq-page {
  background: url(../images/inner-about-bg.jpg);
  padding: 90px 0;
}

.faq-page .init-1 {
    text-align: center;
}

.faq-page .init-1 .tip {
    font-size: 50px;
    font-weight: 700;
}

.faq-page .init-1 form {
    overflow: hidden;
    height: 64px;
    border-radius: 32px;
    margin: auto;
    margin-top: 40px;
    position: relative;
    max-width: 960px;
    background-color: #fff;
}

.faq-page .init-1 form input {
    color: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    font-size: 16px;
    padding: 20px 36px;
    padding-right: 80px;
    border: none;
    background-color: rgba(0,0,0,0);
}

.faq-page .init-1 form .submit_btn {
    width: 24px;
    height: 24px;
    background-image: url(../images/search-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 0;
    right: 32px;
    top: 18px;
}

.faq-page .init-1 .des {
    margin-top: 34px;
    font-size: 16px;
    font-weight: 300;
}

.faq-page .init-2 {
    margin-top: 110px;
}

.faq-page .init-2 .baseBox {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-page .init-2 .left {
    width: calc(100% - 590px);
    padding-right: 56px;
}

.faq-page .init-2 .left .list {
    margin-top: 44px;
    border: 1px solid #4e4e4e;
}

.faq-page .init-2 .left .list .title {
    padding: 16px 12px;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    cursor: pointer;
}

.faq-page .init-2 .left .list .title .title_1 {
    margin-right: 10px;
    font-weight: 700;
    transition: all .5s;
}

.faq-page .init-2 .left .list .title.active .title_1 {
    color: var(--color)
}

.faq-page .init-2 .left .list .des {
    font-size: 16px;
    padding: 10px 40px;
    display: none;
}

.faq-page .init-2 .left .list:first-child {
    margin-top: 0;
}

.faq-page .init-2 .left .m-page {
    text-align: left;
}

.faq-page .init-2 .right {
    width: 590px;
    padding: 54px 70px 40px;
    background-color: white;
}

.faq-page .init-2 .right .tip {
    font-size: 36px;
    font-weight: 700;
}

.faq-page .init-2 .right input,
.faq-page .init-2 .right textarea {
    width: 100%;
    margin-top: 22px;
    padding: 14px;
    background-color: #f7f7f7;
    font-size: 16px;
    border: none;
    color: #000;
}

.faq-page .init-2 .right input::placeholder,
.faq-page .init-2 .right textarea::placeholder {
    color: #000;
}

.faq-page .init-2 .right .submit_btn {
    margin-top: 22px;
    width: 100%;
    border-radius: 0;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.m-page {
    text-align: right;
    margin-top: 80px;
}

.m-page span,.m-page a {
    display: inline-block;
    margin: 7px;
    width: 40px;
    height: 40px;
    color: white;
    background-color: #323232;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.8;
    transition: all .5s;
}

.m-page span:hover,.m-page a:hover,.m-page span.current,.m-page a.current {
    background-color: var(--color);
    color: #fff;
}


@media (max-width: 1250px) {
    .faq-page .init-2 .right {
        display: none
    }

    .faq-page .init-2 .left {
        padding-right: 0;
        width: 100%
    }

    .faq-page .init-1 .tip {
      font-size: 30px;
    }

    .faq-page .init-2 {
      margin-top: 60px;
    }
}

@media (max-width: 500px) {

    .faq-page .init-1 .tip {
        font-size: 24px
    }

    .faq-page .init-1 form {
        height: 54px;
        margin-top: 20px
    }

    .faq-page .init-1 form input {
        font-size: 14px;
        padding: 10px 20px
    }

    .faq-page .init-1 form input:first-child {
        padding-right: 32px
    }

    .faq-page .init-1 form .submit_btn {
        height: 18px;
        right: 12px;
        width: 18px
    }

    .faq-page .init-1 .des {
        line-height: 2;
        margin-top: 20px
    }

    .faq-page .init-2 {
        margin-top: 40px
    }

    .faq-page .init-2 .left .list {
        margin-top: 20px
    }

    .faq-page .init-2 .left .list .title {
        font-size: 18px
    }

    .faq-page .init-2 .left .list .des {
        padding: 20px 30px
    }

    .faq-page .init-2 .left .m-page {
        text-align: center
    }

}


.lg-page {
  padding: 90px 0;
}

.lg-page ul {
  margin: -15px;
}

.lg-page ul li {
  padding: 15px;
}



.cap-page {
  background: url(../images/inner-about-bg.jpg);
}
.cap-1 {
  padding: 110px 0;
}
.cap-1 .text {
  line-height: 1.8;
}

.cap-2 {
  background-color: white;
  padding: 80px 0 100px;
}
.cap-2 .list {
  margin-top: 50px;
  position: relative;
}
.cap-2 .list::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 17px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.3);
}
.cap-2 .list ul {
  margin: 0 -5px;
}
.cap-2 .list li {
  padding: 0 5px;
}
.cap-2 .list li .img {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #aeaeae;
}
.cap-2 .list li .img:hover {
  border-color: #e60013;
}
.cap-2 .list li .name {
  line-height: 1.5;
  min-height: 3em;
  margin-bottom: 15px;
}
.cap-2 .list li .dot {
  font-size: 0;
  width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  border-radius: 50%;
  margin: auto;
  background-color: rgba(230, 0, 19, 0.18);
}
.cap-2 .list li .dot:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  border-radius: inherit;
  background-color: #e60013;
}

.cap-2 .img2 {
  margin-top: 90px;
}

.cap-3 {
  padding: 80px 0 110px;
}
.cap-3 .content {
  margin-top: 50px;
}

.cap-3 h3 {
  font-weight: 600;
}

.cap-3 ol {
  font-size: 0;
  margin: -15px;
}

.cap-3 li {
  display: inline-block;
  vertical-align: top;
  padding: 15px;
  width: 20%;
}

.cap-4 {
  background-color: white;
  padding: 60px 0 100px;
}

.cap-4 .box {
  margin-top: 80px;
}

.cap-4 h3 {
  font-weight: 600;
}

.cap-4 ol {
  font-size: 0;
  margin: -10px;
}

.cap-4 li {
  display: inline-block;
  vertical-align: top;
  padding: 10px;
  width: 33.33%;
}

.cap-4 .left {
  padding-right: 25px;
}
.cap-4 table tr td {
  border: 1px solid #f5c6ca;
}
.cap-4 table tr:first-child td {
  color: white;
  background-color: #e60013;
}

.cap-4 table tr:nth-child(even) td {
  
  background-color: #fbe8e9;
}

.cap-4 .right {
  padding-left: 25px;
}

.cap-5 {
  padding: 70px 0 110px;
}

.cap-5 ul {
  margin: -15px;
}

.cap-5 li {
  padding: 15px;
}

.cap-6 {
  padding: 90px 0;
}

.cap-6 .box {
  max-width: 840px;
  margin: auto;
  margin-top: 50px;
}

.cap-6 table tr td {
  background-color: white;
  border: 1px solid #f5c6ca;
}
.cap-6 table tr:first-child td {
  color: white;
  background-color: #e60013;
}

.cap-6 table tr:nth-child(even) td {
  
  background-color: #fbe8e9;
}

@media (max-width:1000px) {
  .cap-1 {
    padding: 60px 0;
  }

  .cap-1 .left {
    width: 100%;
    padding: 0;
  }

  .cap-1 .right {
    width: 100%;
    margin-top: 40px;
  }

  .cap-2 {
    padding: 60px 0;
  }

  .cap-3 {
    padding: 60px 0;
  }

  .cap-3 li {
    width: 33.33%;
  }

  .cap-4 {
    padding: 60px 0;
  }

  .cap-4 .left {
    padding-right: 0;
    width: 100%;
  }

  .cap-4 .right {
    padding-left: 0;
    width: 100%;
    margin-top: 40px;
  }

  .cap-5 {
    padding: 60px 0;
  }
}

@media (max-width:700px) {
  .cap-3 li {
    width: 50%;
  }
}


.newCateBox .list ul {
  margin: -30px -15px;
}
.newCateBox .list li {
  padding: 30px 15px;
}
.newCateBox .list li .name {
  font-weight: 600;
  transition: .5s ease;
}
.newCateBox .list li a:hover .name {
  color: #e60013;
}

.newCateBox + .newCateBox {
  margin-top: 80px;
}
.baseBox .box .right .text h1{
  display: inline;
}
.proRight .newCateBox .text{
  font-size: 18px;
  line-height: 32px;
}
.pt-60 .Auxil-about .ui ._right ._text{
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 1000px){
  .footter, .konwledge {
    display: none !important;
  }
}


.cap-7 {
  background-color: white;
  padding: 100px 0;
}

.cap-7 .item + .item {
  margin-top: 100px;
}

.cap-7 .img {
  width: 35%;
}

.cap-7 .content {
  width: 60%;
}

.cap-7 .content .text {
  font-weight: 500;
  line-height: 1.8;
  margin-top: 15px;
}

@media (max-width: 700px) {
  .cap-7 .img {
    width: 100%;
    float: none;
  }

  .cap-7 .content {
    width: 100%;
    float: none;
    margin-top: 30px;
  }
}