@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Light.ttf) format('truetype'), url(../fonts/Montserrat-Light.eot) format('eot'), url(../fonts/Montserrat-Light.woff) format('woff'), url(../fonts/Montserrat-Light.woff2) format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Regular.ttf) format('truetype'), url(../fonts/Montserrat-Regular.eot) format('eot'), url(../fonts/Montserrat-Regular.woff) format('woff'), url(../fonts/Montserrat-Regular.woff2) format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Medium.ttf) format('truetype'), url(../fonts/Montserrat-Medium.eot) format('eot'), url(../fonts/Montserrat-Medium.woff) format('woff'), url(../fonts/Montserrat-Medium.woff2) format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-SemiBold.ttf) format('truetype'), url(../fonts/Montserrat-SemiBold.eot) format('eot'), url(../fonts/Montserrat-SemiBold.woff) format('woff'), url(../fonts/Montserrat-SemiBold.woff2) format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Bold.ttf) format('truetype'), url(../fonts/Montserrat-Bold.eot) format('eot'), url(../fonts/Montserrat-Bold.woff) format('woff'), url(../fonts/Montserrat-Bold.woff2) format('woff2');
  font-weight: bold;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-ExtraBold.ttf) format('truetype'), url(../fonts/Montserrat-ExtraBold.eot) format('eot'), url(../fonts/Montserrat-ExtraBold.woff) format('woff'), url(../fonts/Montserrat-ExtraBold.woff2) format('woff2');
  font-weight: 800;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Black.ttf) format('truetype'), url(../fonts/Montserrat-Black.eot) format('eot'), url(../fonts/Montserrat-Black.woff) format('woff'), url(../fonts/Montserrat-Black.woff2) format('woff2');
  font-weight: 900;
}
@font-face {
  font-family: 'HelveticaInseratLTStd-Roman';
  src: url(../fonts/HelveticaInseratLTStd-Roman.ttf) format('truetype'), url(../fonts/HelveticaInseratLTStd-Roman.eot) format('eot'), url(../fonts/HelveticaInseratLTStd-Roman.woff) format('woff'), url(../fonts/HelveticaInseratLTStd-Roman.woff2) format('woff2');
}
@font-face {
  font-family: 'PantonDemo-Black';
  src: url(../fonts/PantonDemo-Black.ttf) format('truetype'), url(../fonts/PantonDemo-Black.eot) format('eot'), url(../fonts/PantonDemo-Black.woff) format('woff'), url(../fonts/PantonDemo-Black.woff2) format('woff2');
}
body {
  font-family: "Montserrat";
  font-weight: 500;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1630px;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 25px;
  left: 0;
  -webkit-transition: top .5s ease;
  -moz-transition: top .5s ease;
  transition: top .5s ease;
}
#header.fixed {
  top: 0;
}
#header.fixed .nav {
  background-color: #dc0000;
}
#header.fixed .nav .ui.menu .msgBtn span {
  color: #dc0000;
  background-color: white;
}
#header .nav {
  display: inline-block;
  width: 100%;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 25px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  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;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  s-ms-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 0;
  background-color: #dc0000;
  -webkit-transform: translate(-50%, -50%) skewX(-35deg);
  -moz-transform: translate(-50%, -50%) skewX(-35deg);
  -ms-transform: translate(-50%, -50%) skewX(-35deg);
  transform: translate(-50%, -50%) skewX(-35deg);
  -webkit-transition: height .5s ease;
  -moz-transition: height .5s ease;
  transition: height .5s ease;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover::after {
  height: 27px;
}
#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: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}


#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
  -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 ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}


#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 30px;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .msgBtn {
  margin-left: 30px;
  margin-right: 0;
}
#header .nav .ui.menu .msgBtn span {
  color: white;
  background-color: #dc0000;
  border: 1px solid #dc0000;
  height: 40px;
  line-height: 38px;
  padding: 0 35px;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  cursor: pointer;
}
#header .nav .ui.menu .msgBtn span:hover {
  background-color: transparent;
  border-color: white;
  color: white;
}
#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 {
  table-layout: fixed;
  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;
  text-align: center;
}
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:#ff0000;
  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 ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 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: black;
  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: 30%;
}
#banner .left {
  text-align: center;
}
#banner h2 {
  font-size: 100px;
  color: white;
  font-family: 'HelveticaInseratLTStd-Roman';
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.7);
}
#banner p {
  font-size: 41px;
  font-weight: bold;
  color: white;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
}
#banner .bannerBtn {
  margin-top: 75px;
}
#banner .bannerBtn a {
  display: inline-block;
  color: white;
  background-color: #dc0000;
  padding: 15px 50px;
  border: 1px solid #dc0000;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
#banner .bannerBtn a:hover {
  color: #dc0000;
  background-color: transparent;
}
.init-1 .box {
  margin-top: -90px;
  padding: 45px 80px;
  background-color: white;
  -webkit-box-shadow: 0 0 24px rgba(24, 24, 24, 0.14);
  box-shadow: 0 0 24px rgba(24, 24, 24, 0.14);
}
.init-1 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.init-1 li {
  text-align: center;
}
.init-1 li.line {
  border-left: 1px solid #f3f3f3;
}
.init-1 .num {
  color: #dc0000;
  font-weight: 800;
  line-height: 1;
}
.init-1 .num > div {
  display: inline-block;
}
.init-1 .num em {
  font-size: 110px;
}
.init-1 .num strong {
  font-size: 48px;
  left: -webkit-calc(100% + 10px);
  left: -moz-calc(100% + 10px);
  left: calc(100% + 10px);
  top: 0;
}
.init-1 .num span {
  font-weight: 500;
  left: -webkit-calc(100% + 10px);
  left: -moz-calc(100% + 10px);
  left: calc(100% + 10px);
  bottom: 0;
  line-height: 50px;
}
.init-1 p {
  font-weight: 800;
  color: #666666;
  text-transform: uppercase;
}
.init-2 {
  padding: 110px 0;
}
.init-2 .Tit {
  font-size: 50px;
  color: #333333;
  font-family: 'PantonDemo-Black';
}
.init-2 .desc {
  color: #666666;
  max-width: 920px;
  margin: auto;
}
.init-2 .box {
  margin: 85px -15px -15px;
}
.init-2 .box .item {
  padding: 15px;
}
.init-2 .box .item ul {
  margin: -15px;
}
.init-2 .box .item li {
  width: 50%;
  padding: 15px;
}
.init-2 .box .item li.wid-100 {
  width: 100%;
}
.init-2 .box .item li > div {
  overflow: hidden;
}
.init-2 .box .item li > div:hover .img::before {
  opacity: 1;
}
.init-2 .box .item li > div:hover .name {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.init-2 .box .item li .img {
  position: relative;
}
.init-2 .box .item li .img img {
  width: 100%;
}
.init-2 .box .item li .img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/init-2-mask.png) no-repeat center;
  background-size: cover;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.init-2 .box .item li .name {
  font-size: 22px;
  color: white;
  left: 40px;
  right: 40px;
  bottom: 30px;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.init-3 {
  padding: 110px 0 160px;
  background: url(../images/init-3-bg.png) no-repeat top 30px center;
  position: relative;
  overflow: hidden;
}
.init-3::before {
  content: attr(data-text);
  font-size: 161.76px;
  white-space: nowrap;
  font-weight: 900;
  text-transform: uppercase;
  color: #333333;
  opacity: .1;
  position: absolute;
  left: 0;
  top: 100px;
  z-index: -1;
}
.init-3 .play {
  border-radius: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  cursor: hand;
}
.init-3 .play::before,
.init-3 .play::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.56);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.init-3 .play::after {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.init-3 .Tit {
  font-size: 73.27px;
  color: #dc0000;
  font-family: 'PantonDemo-Black';
}
.init-3 .left {
  margin-top: 90px;
}
.init-3 .left .text {
  margin: 40px 0 80px;
  line-height: 2;
  font-weight: 400;
  color: #666666;
}
.init-3 .left .aboutBtn a {
  display: inline-block;
  color: white;
  background-color: #dc0000;
  padding: 15px 50px;
  border: 1px solid #dc0000;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.init-3 .left .aboutBtn a:hover {
  color: #dc0000;
  background-color: transparent;
}
.init-3 .list {
  margin-top: 110px;
}
.init-3 .list ul {
  margin: -10px;
  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;
}
.init-3 .list li {
  padding: 10px;
}
.init-3 .list .mml-text {
  height: 100%;
  z-index: 1;
  text-align: center;
  padding: 60px 15px;
  min-height: 375px;
}
.init-3 .list .mml-text .bg {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #161616;
}
.init-3 .list .mml-text .bg img {
  opacity: .4;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.init-3 .list .mml-text .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #dc0000;
  -webkit-transition: height .5s ease;
  -moz-transition: height .5s ease;
  transition: height .5s ease;
}
.init-3 .list .mml-text .icon {
  height: 60px;
}
.init-3 .list .mml-text .name {
  margin-top: 30px;
  color: white;
}
.init-3 .list .mml-text p {
  line-height: 2;
  margin-top: 30px;
  color: white;
}
.init-3 .list .mml-text:hover .bg::after {
  height: 100%;
}
@-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(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    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(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    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(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
.init-4 {
  background: url(../images/init-4-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 60px 0 80px;
}
.init-4 .Tit {
  font-size: 50px;
  font-family: 'PantonDemo-Black';
  color: white;
}
.init-4 .text {
  max-width: 1030px;
  margin: auto;
  color: white;
}
.init-5 {
  padding: 100px 0;
}
.init-5 .right {
  padding-right: 80px;
}
.init-5 .right:nth-of-type(odd) {
  margin-top: 50px;
  padding-left: 40px;
  padding-right: 0;
}
.init-5 .link {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.init-5 .Tit {
  font-size: 40px;
  color: #333333;
  font-family: 'PantonDemo-Black';
}
.init-5 .desc {
  color: #666666;
}
.init-5 .text {
  color: #333333;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.init-5 .list ul {
  margin: 0 -40px;
}
.init-5 .list li {
  padding: 65px 40px;
  position: relative;
}
.init-5 .list li .icon {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 200px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.init-5 .list li .icon img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: .1;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.init-5 .list li:hover .icon img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.init-5 .list li:hover .text {
  color: #dc0000;
}
.init-6 {
  background-color: #f8f8f8;
  padding: 90px 0 150px;
}
.init-6 .Tit {
  font-size: 50px;
  font-family: 'PantonDemo-Black';
}
.init-6 .line {
  width: 65px;
  border-bottom: 5px solid #e4e4e4;
  margin: auto;
}
.init-6 .line::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #e4e4e4;
}
.init-6 .list {
  margin-top: 60px;
}
.init-6 .list ul {
  margin: -18px;
}
.init-6 .list li {
  padding: 18px;
}
.init-6 .list li .content {
  background-color: white;
  padding: 45px 20px 25px;
}
.init-6 .list li .content time {
  color: #333333;
  font-weight: 300;
}
.init-6 .list li .content .name {
  color: #333333;
  line-height: 1.5;
  min-height: 6em;
}
.init-6 .list li .content .moreBtn {
  color: #b6b6b6;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.init-6 .list li .content .moreBtn:hover {
  color: #dc0000;
}
.init-7 {
  background: url(../images/init-7-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 130px 0;
}
.init-7 .Tit {
  font-size: 50px;
  font-family: 'PantonDemo-Black';
  color: white;
}
.init-7 .desc {
  color: white;
}
.init-7 .contactBtn {
  display: inline-block;
  color: #dc0000;
  background-color: white;
  padding: 15px 50px;
  border: 1px solid white;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.init-7 .contactBtn:hover {
  background-color: transparent;
  color: white;
}
.init-7 .right {
  margin-top: 40px;
}
#footer {
  background: url(../images/foot-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0 60px;
}
#footer .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .logo::after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: auto;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  border-bottom: 2px solid white;
  opacity: .4;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-left: 30px;
}
#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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#footer .foot-top .foot-block:first-child {
  max-width: 360px;
}
#footer .foot-top .foot-block:last-child {
  padding-bottom: 80px;
  position: relative;
}
#footer .foot-top .foot-block h4 {
  color: #dc0000;
  font-size: 26px;
  font-family: 'PantonDemo-Black';
}
#footer .foot-top .foot-block h3 {
  color: white;
  font-weight: 600;
  line-height: 30px;
}
#footer .foot-top .foot-block h3 i {
  font-size: 0;
}
#footer .foot-top .foot-block h3 i img {
  vertical-align: middle;
}
#footer .foot-top .foot-block p {
  line-height: 2;
  color: #cccccc;
  font-weight: 600;
}
#footer .foot-top .foot-block ul li {
  line-height: 2;
}
#footer .foot-top .foot-block ul li a {
  color: #cccccc;
}
#footer .foot-top .foot-block .social-links {
  font-size: 0;
  right: 0;
  bottom: 0;
  white-space: nowrap;
}
#footer .foot-top .foot-block .social-links a {
  display: inline-block;
  width: 37px;
  height: 37px;
  line-height: 37px;
  border-radius: 50%;
  text-align: center;
  background-color: white;
  font-size: 20px;
}
#footer .foot-top .foot-block .social-links a + a {
  margin-left: 5px;
}
#footer .foot-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.4);
  padding-top: 30px;
  margin-top: 50px;
}
#footer .foot-bottom p {
  color: white;
  font-weight: 300;
}
#footer .foot-bottom img {
  height: 18px;
}
#ewm {
  width: 150px;
  border: 14px solid white;
  margin-top: 100px;
}
@media (max-width: 1630px) {
  .ui.container {
    width: 1440px;
  }
  #banner h2 {
    font-size: 80px;
  }
  #banner p {
    font-size: 30px;
  }
  #banner .bannerBtn a {
    font-size: 20px;
  }
  .init-1 .num em {
    font-size: 80px;
  }
  .init-1 .num span {
    font-size: 18px;
    line-height: 40px;
  }
  .init-1 .num strong {
    font-size: 36px;
  }
  .init-2 .box .item li .name {
    font-size: 20px;
    left: 30px;
    right: 30px;
  }
  .init-3 .left {
    margin-top: 0;
  }
  .init-3 .left .text {
    margin: 40px 0;
  }
  .init-3 .left .aboutBtn a {
    font-size: 20px;
  }
  .init-5 .desc {
    font-size: 20px;
  }
  .init-5 .list {
    margin-top: 0;
  }
  .init-5 .list ul {
    margin: 0 -20px;
  }
  .init-5 .list li {
    padding: 45px 20px;
  }
  .init-7 .contactBtn {
    font-size: 20px;
  }
}
@media (max-width: 1440px) {
  .ui.container {
    width: 1230px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
    letter-spacing: normal;
  }
  #header .nav .ui.menu .msgBtn span {
    padding: 0 20px;
  }
  #banner h2 {
    font-size: 60px;
  }
  #banner p {
    font-size: 24px;
  }
  #banner .bannerBtn a {
    font-size: 18px;
  }
  .init-1 .box {
    padding: 40px;
  }
  .init-1 .num em {
    font-size: 60px;
  }
  .init-1 .num span {
    font-size: 16px;
    line-height: 30px;
  }
  .init-1 .num strong {
    font-size: 30px;
  }
  .init-1 p {
    font-size: 18px;
  }
  .init-2 .Tit {
    font-size: 40px;
  }
  .init-2 .desc {
    font-size: 18px;
  }
  .init-2 .box .item li .name {
    font-size: 18px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  .init-3 .Tit {
    font-size: 50px;
  }
  .init-3 .left .aboutBtn a {
    font-size: 18px;
  }
  .init-3 .list .mml-text {
    padding: 30px 15px;
  }
  .init-4 .Tit {
    font-size: 40px;
  }
  .init-4 .text {
    font-size: 18px;
  }
  .init-5 .desc {
    font-size: 18px;
  }
  .init-5 .Tit {
    font-size: 30px;
  }
  .init-5 .right {
    padding-right: 40px;
  }
  .init-5 .text {
    font-size: 16px;
  }
  .init-5 .right:nth-of-type(odd) {
    margin-top: 30px;
  }
  .init-6 .Tit {
    font-size: 40px;
  }
  .init-6 .list ul {
    margin: -10px;
  }
  .init-6 .list li {
    padding: 10px;
  }
  .init-7 .Tit {
    font-size: 40px;
  }
  .init-7 .desc {
    font-size: 18px;
  }
  .init-7 .contactBtn {
    font-size: 18px;
  }
  #footer .foot-top .foot-block h4 {
    font-size: 22px;
  }
  .font-18 {
    font-size: 16px;
  }
  #footer .foot-bottom img {
    height: 16px;
  }
}
@media (max-width: 1230px) {
  .ui.container {
    width: 1000px;
  }
  #header {
    top: 0;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 15px;
  }
  #header .nav .ui.menu .msgBtn {
    display: none;
  }
  #banner .bannerBtn {
    margin-top: 30px;
  }
  .init-1 .box {
    padding: 30px;
  }
  #banner .bannerBtn a {
    font-size: 16px;
    padding: 10px 30px;
  }
  .init-1 .box {
    margin-top: -60px;
  }
  .init-1 .num {
    line-height: 1.5;
  }
  .init-1 .num em {
    font-size: 40px;
  }
  .init-1 .num strong {
    font-size: 24px;
  }
  .init-1 .num span {
    font-size: 14px;
  }
  .init-1 p {
    font-size: 16px;
  }
  .init-1 li:not(.line) {
    width: 24%;
  }
  .init-2 .Tit {
    font-size: 36px;
  }
  .init-2 .desc {
    font-size: 16px;
  }
  .init-2 .box {
    margin: 85px -10px -10px;
  }
  .init-2 .box .item {
    padding: 10px;
  }
  .init-2 .box .item li .name {
    font-size: 16px;
  }
  .init-2 .box .item ul {
    margin: -10px;
  }
  .init-2 .box .item li {
    padding: 10px;
  }
  .init-3 .Tit {
    font-size: 40px;
  }
  .init-3 .list .mml-text .name {
    font-size: 18px;
    margin-top: 15px;
  }
  .init-3 .list .mml-text p {
    margin-top: 15px;
  }
  .init-4 .Tit {
    font-size: 36px;
  }
  .init-4 .text {
    font-size: 16px;
  }
  .init-5 .Tit {
    font-size: 24px;
  }
  .init-5 .desc {
    font-size: 16px;
  }
  .init-6 .list li .content {
    padding: 30px 15px;
  }
  .init-6 .list li .content .name {
    font-size: 18px;
  }
  .init-7 .Tit {
    font-size: 36px;
  }
  .init-7 .desc {
    font-size: 16px;
  }
  .init-3 .left .aboutBtn a {
    font-size: 16px;
    padding: 10px 30px;
  }
  .init-7 .contactBtn {
    font-size: 16px;
    padding: 10px 30px;
  }
  #footer .foot-top .foot-block {
    max-width: 100%!important;
    width: 45%;
    margin-bottom: 40px;
  }
  #footer .foot-top .foot-content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .foot-bottom {
    margin-top: 0;
  }
  #ewm {
    margin-top: 40px;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner h2 {
    font-size: 40px;
  }
  #banner p {
    font-size: 16px;
  }
  .init-1 li.line {
    display: none;
  }
  .init-1 li:not(.line) {
    width: 50%;
  }
  .init-1 ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .init-2 {
    padding: 60px 0;
  }
  .init-2 .Tit {
    font-size: 30px;
  }
  .init-2 .box {
    margin: 40px -10px -10px;
  }
  .init-2 .box .item li {
    width: 100%;
  }
  .init-2 .box .item li .img::before {
    opacity: 1;
  }
  .init-2 .box .item li .name {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .init-3 {
    padding: 60px 0;
    background-position: center;
  }
  .init-3::before {
    top: 0;
    font-size: 100px;
  }
  .init-3 .left {
    width: 100%;
    padding: 0;
  }
  .init-3 .left .text {
    margin: 30px 0;
  }
  .init-3 .right {
    width: 100%;
    margin-top: 40px;
  }
  .init-3 .list {
    margin-top: 60px;
  }
  .init-3 .list li {
    width: 50%!important;
  }
  .init-3 .list .mml-text {
    min-height: auto;
  }
  .init-4 {
    padding: 60px 0;
  }
  .init-4 .Tit {
    font-size: 30px;
  }
  .init-5 {
    padding: 60px 0;
  }
  .init-5 .left {
    float: none;
    width: 100%;
  }
  .init-5 .right {
    float: none;
    width: 100%;
    padding-right: 0;
    margin-top: 30px;
  }
  .init-5 .right:nth-of-type(odd) {
    padding-left: 0;
  }
  .init-6 {
    padding: 60px 0;
  }
  .init-6 .Tit {
    font-size: 30px;
  }
  .init-7 {
    padding: 60px 0;
  }
  .init-7 .Tit {
    font-size: 30px;
  }
  .init-7 .left {
    width: 100%;
  }
  .init-7 .right {
    width: 100%;
  }
  #footer .foot-bottom .left {
    width: 100%;
  }
  #footer .foot-bottom .right {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 100%;
  }

  .init-1 .box {
    margin-top: -30px;
  }
 
  #banner .content {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #banner h2 {
    font-size: 30px;
  }
  #banner .bannerBtn {
    margin-top: 15px;
  }
  #banner .bannerBtn a {
    font-size: 14px;
  }
  .init-2 .Tit {
    font-size: 24px;
  }
  .init-2 .desc {
    font-size: 14px;
  }
  .init-2 .box .item li .name {
    font-size: 14px;
  }
  .init-3::before {
    display: none;
  }
  .init-3 .Tit {
    font-size: 30px;
  }
  .font-18 {
    font-size: 14px;
  }
  .init-3 .left .aboutBtn a {
    font-size: 14px;
  }
  .init-3 .list .mml-text .name {
    font-size: 16px;
  }
  .font-16 {
    font-size: 14px;
  }
  .init-4 .Tit {
    font-size: 24px;
  }
  .init-4 .text {
    font-size: 14px;
  }
  .init-5 .desc {
    font-size: 14px;
  }
  .init-5 .text {
    font-size: 14px;
  }
  .init-6 .Tit {
    font-size: 24px;
  }
  .init-6 .list {
    margin-top: 40px;
  }
  .init-6 .list li .content .name {
    font-size: 16px;
  }
  .init-7 .Tit {
    font-size: 24px;
  }
  #footer .foot-top .foot-block {
    width: 100%;
  }
  .hide-700 {
    display: none!important;
  }
  #footer .foot-bottom img {
    height: 14px;
  }
}
@media (max-width: 500px) {
  #banner li {
    height: 300px;
  }
  #banner li > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .init-1 .box {
    padding: 15px;
  }

  .init-1 li:not(.line) {
    width: 100%;
  }

  .init-2 .box .item {
    width: 100%;
  }
  .init-3 .list li {
    width: 100%!important;
  }
  .init-5 .list {
    margin: 30px 0;
  }
  .init-5 .list ul {
    margin: 0 -15px;
  }
  .init-5 .list li {
    padding: 15px;
  }
  .init-5 .list li .icon {
    display: none;
  }
  #footer .logo img {
    width: 80px;
  }
}
.inner-banner {
  height: 740px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.inner-banner.mask::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.inner-banner .content {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.inner-banner .Tit {
  font-size: 100px;
  color: white;
  font-family: 'HelveticaInseratLTStd-Roman';
}
.inner-banner .mbx {
  font-weight: 400;
  color: white;
}
.inner-banner .mbx i,
.inner-banner .mbx a {
  color: #ffffff;
}
.inner-banner .mbx span {
  font-weight: 600;
}
@media (max-width: 1630px) {
  .inner-banner .Tit {
    font-size: 80px;
  }
}
@media (max-width: 1440px) {
  .inner-banner .Tit {
    font-size: 60px;
  }
}
@media (max-width: 1230px) {
  .inner-banner .Tit {
    font-size: 40px;
  }
}
@media (max-width: 1000px) {
  .inner-banner {
    height: 500px;
  }
  .inner-banner .Tit {
    font-size: 30px;
  }
}
@media (max-width: 700px) {
  .inner-banner {
    height: 400px;
  }
  .inner-banner .Tit {
    font-size: 24px;
  }
}
.innerTit {
  font-size: 46px;
  font-weight: bold;
}
.innerTit span {
  color: #dc0000;
}
.about-1 {
  padding: 130px 0 80px;
  overflow: hidden;
}
.about-1 .left {
  width: 55%;
}
.about-1 .right {
  width: 41%;
  margin-top: 50px;
}
.about-1 .right ul {
  margin-right: -25px;
}
.about-1 .right li {
  padding-right: 25px;
  margin-bottom: 80px;
}
.about-1 .right li:nth-child(2n) {
  -webkit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -ms-transform: translateY(70px);
  transform: translateY(70px);
}
.about-1 .right li .box {
  min-height: 285px;
  padding: 20px;
  border-radius: 12px;
  background-color: white;
  -webkit-box-shadow: 0 0 24px rgba(23, 23, 23, 0.15);
  box-shadow: 0 0 24px rgba(23, 23, 23, 0.15);
}
.about-1 .right li .box .icon {
  margin-top: -40px;
  width: 91px;
  height: 84px;
  line-height: 84px;
  text-align: center;
  border-radius: 12px;
  background-color: #f5f5f5;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.about-1 .right li .box .icon img {
  vertical-align: middle;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.about-1 .right li .box p {
  color: #666666;
}
.about-1 .right li .box:hover .icon {
  background-color: #dc0000;
}
.about-1 .right li .box:hover .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-2 {
  margin-top: 80px;
}
.about-2 .box {
  height: 700px;
  background: url(../images/about-2-img.jpg) no-repeat center;
  background-size: cover;
  border-radius: 12px;
}
.about-2 .play {
  border-radius: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  cursor: hand;
}
.about-2 .play::before,
.about-2 .play::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.56);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.about-2 .play::after {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.about-2 .content {
  right: 100px;
  top: -80px;
  color: white;
  background-color: #dc0000;
  width: 100%;
  max-width: 350px;
  text-align: center;
  padding: 5% 2%;
  border-radius: 12px;
}
.about-2 .content .num {
  font-size: 155.88px;
  line-height: 1;
  font-weight: bold;
}
.about-2 .content .num span {
  font-size: 109.11px;
}
.about-2 .content p {
  margin-top: 20px;
}
.about-3 {
  margin-top: 140px;
  background: url(../images/about-3-bg.jpg) no-repeat top center;
  padding: 70px 0;
}
.about-3 .innerTit {
  color: white;
}
.about-3 .desc {
  max-width: 1360px;
  margin: auto;
  color: white;
}
.about-3 .list {
  margin-top: 90px;
}
.about-3 .list ul {
  margin: -13px;
}
.about-3 .list li {
  padding: 13px;
}
.about-4 {
  padding: 50px 0;
}
.about-4 .box {
  position: relative;
  margin-top: 50px;
}
.about-4 .box .img {
  background: url(../images/about-4-img.jpg) no-repeat center;
  background-size: cover;
  width: 72%;
  padding-top: 610px;
  margin-left: auto;
}
.about-4 .box .content {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 52%;
  background: #dc0000 url(../images/about-4-icon1.png) no-repeat left 10% center;
  padding: 4% 5% 4% 8.6%;
}
.about-4 .box .content .Tit {
  color: white;
  font-size: 34px;
  font-weight: 800;
}
.about-4 .box .content .text {
  color: white;
  line-height: 2;
}
.about-5 {
  padding: 50px 0;
}
.about-5 ul {
  margin: 0 -80px;
  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;
}
.about-5 li {
  position: relative;
  padding: 40px 80px 20px;
}
.about-5 li + li {
  border-left: 1px solid #dfdfdf;
}
.about-5 li .icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.about-5 li .name {
  font-size: 28px;
  font-weight: bold;
  color: #dc0000;
}
.about-6 {
  padding: 80px 0 140px;
}
.about-6 .list .small {
  position: absolute;
  left: 20%;
  bottom: 10%;
  width: 60%;
}
.about-6 .list .small ul {
  margin: -22px;
}
.about-6 .list .small li {
  padding: 22px;
}
.about-6 .list .small li img {
  border: 4px solid white;
}
.about-6 .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 32px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.about-6 .arrow::after {
  content: attr(data-text);
  display: contents;
}
.about-6 .arrow.arrow_l {
  left: 2%;
}
.about-6 .arrow.arrow_r {
  right: 2%;
}
.about-6 .arrow:hover {
  background-color: rgba(220, 0, 0, 0.3);
}
@media (max-width: 1630px) {
  .about-2 .content .num {
    font-size: 120px;
  }
  .about-2 .content .num span {
    font-size: 80px;
  }
  .about-2 .content {
    max-width: 300px;
  }
  .about-2 .box {
    height: 600px;
  }
  .about-5 ul {
    margin: 0 -40px;
  }
  .about-5 li {
    padding: 40px 40px 20px;
  }
}
@media (max-width: 1440px) {
  .innerTit {
    font-size: 40px;
  }
  .about-3 .desc {
    font-size: 18px;
  }
}
@media (max-width: 1230px) {
  .innerTit {
    font-size: 36px;
  }
  .about-3 .desc {
    font-size: 16px;
  }
  .about-1 .right li .box .num {
    font-size: 24px;
  }
  .about-2 .content .num {
    font-size: 80px;
  }
  .about-2 .content .num span {
    font-size: 60px;
  }
  .about-2 .content {
    max-width: 250px;
    right: 50px;
  }
  .about-2 .box {
    height: 500px;
  }
  .about-4 .box .content .Tit {
    font-size: 30px;
  }
  .about-4 .box .content {
    padding: 4%;
    width: 60%;
  }
  .about-4 .box .img {
    padding-top: 500px;
  }
  .about-5 ul {
    margin: -20px;
  }
  .about-5 li {
    padding: 20px;
  }
  .about-5 li .name {
    font-size: 24px;
  }
  .about-6 .list .small ul {
    margin: -15px;
  }
  .about-6 .list .small li {
    padding: 15px;
  }
}
@media (max-width: 1000px) {
  .about-1 {
    padding: 60px 0;
  }
  .about-1 .left {
    width: 100%;
  }
  .about-1 .right {
    width: 100%;
  }
  .about-1 .right li {
    margin-bottom: 40px;
  }
  .about-1 .right li:nth-child(2n) {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .innerTit {
    font-size: 30px;
  }
  .about-2 .content {
    display: none;
  }
  .about-2 {
    margin-top: 0;
  }
  .about-2 .box {
    height: auto;
    padding-top: 50%;
  }
  .about-3 {
    margin-top: 60px;
  }
  .about-3 {
    padding: 60px 0;
    background-size: auto 70%;
  }
  .about-3 .list {
    margin-top: 45px;
  }
  .about-4 .box .img {
    width: 100%;
    padding-top: 53%;
  }
  .about-4 .box .content {
    position: static;
    width: 100%;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .about-4 .box .content .Tit {
    font-size: 24px;
  }
  .about-5 ul {
    margin: -60px 0;
  }
  .about-5 li {
    width: 100%!important;
    padding: 60px 0;
  }
  .about-5 li + li {
    border-left: 0;
    border-top: 1px solid #dfdfdf;
  }
  .about-5 li .icon {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .about-6 {
    padding: 60px 0;
  }
  .about-6 .list .small {
    position: static;
    width: 100%;
    margin-top: 30px;
  }
  .about-6 .list .small li img {
    border-color: #dc0000;
  }
  .about-6 .arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .innerTit {
    font-size: 24px;
  }
  .about-2 .play {
    width: 55px;
    height: 55px;
  }
  .about-3 .desc {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .about-1 .right li .box {
    min-height: auto;
  }
}
.dvel-1 {
  padding-bottom: 100px;
}
.dvel-1 .Tit {
  -webkit-transform: translateY(40%);
  -moz-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
  text-align: right;
  font-size: 167.96px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  text-shadow: -1px -1px 0 #333333, 1px -1px 0 #333333, -1px 1px 0 #333333, 1px 1px 0 #333333;
  opacity: .1;
}
.dvel-1 .box {
  padding-right: 70px;
  position: relative;
}
.dvel-1 .item .left {
  width: 55%;
  padding: 15px;
  position: relative;
}
.dvel-1 .item .left::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 30%;
  height: 30%;
  background-color: #d61619;
}
.dvel-1 .item .right {
  width: 45%;
  padding-left: 35px;
}
.dvel-1 .item .right .year {
  padding-bottom: 30px;
  font-size: 220px;
  line-height: .8;
  font-weight: 800;
  color: #d61619;
  background: url(../images/dvel-year-bg.png) no-repeat bottom left 70%;
  background-size: 80% auto;
}

.dvel-1 .item .right .year span {
  transform: translateY(100%);
  opacity: 0;
  transition: .5s ease;
}

.dvel-1 .slick-current .item .right .year span {
  transform: translateY(0);
  opacity: 1;
  transition-delay: .5s;
}

.dvel-1 .item .right .text {
  font-size: 24px;
  line-height: 2;
  color: #333333;
}
.dvel-1 .arrows {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.dvel-1 .arrows .arrow {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  background-color: #000000;
  color: white;
  cursor: pointer;
}
.dvel-1 .arrows .arrow::after {
  content: attr(data-text);
  display: contents;
}
.dvel-1 .arrows .arrow.arrow_r {
  margin-top: 4px;
  background-color: #dc0000;
}
.dvel-1 .time_line {
  padding: 0 5%;
  margin-top: 50px;
  position: relative;
}
.dvel-1 .time_line .line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #c6c6c6;
  left: 0;
  top: 40px;
}
.dvel-1 .time_line li {
  text-align: center;
}
.dvel-1 .time_line .img {
  position: relative;
  display: inline-block;
  opacity: 0;
}
.dvel-1 .time_line .img::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: #d61619;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.dvel-1 .time_line .slick-current .img {
  opacity: 1;
}
.dvel-1 .time_line .slick-current .year {
  color: #d61619;
  font-weight: bold;
}
@media (max-width: 1630px) {
  .dvel-1 .item .right .year {
    font-size: 190px;
  }
  .dvel-1 .item .right .text {
    font-size: 24px;
  }
}
@media (max-width: 1440px) {
  .dvel-1 .item .right .year {
    font-size: 150px;
  }
  .dvel-1 .item .right .text {
    font-size: 20px;
  }
}
@media (max-width: 1230px) {
  .dvel-1 .Tit {
    font-size: 100px;
  }
  .dvel-1 .item .right .year {
    font-size: 100px;
    padding-bottom: 0;
    line-height: 1;
  }
  .dvel-1 .item .right .text {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .dvel-1 .Tit {
    font-size: 80px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .dvel-1 .item .left {
    width: 100%;
  }
  .dvel-1 .item .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .dvel-1 .item .right .year {
    font-size: 80px;
  }
  .dvel-1 .item .right .text {
    font-size: 16px;
  }
  .dvel-1 .box {
    padding-right: 0;
  }
  .dvel-1 .arrows {
    display: none;
  }
}
@media (max-width: 700px) {
  .dvel-1 .Tit {
    font-size: 60px;
  }
  .dvel-1 .item .right .year {
    font-size: 60px;
  }
  .dvel-1 .item .right .text {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .dvel-1 .item .right .year {
    font-size: 40px;
  }
}
.factory-page .Tit {
  font-size: 44px;
}
.factory-page .Tit span {
  color: #dc0000;
}
.factory-page .Tit small {
  font-size: 30px;
}
.factory-1 {
  padding: 130px 0 90px;
}
.factory-1 .list {
  margin-top: 60px;
}
.factory-1 .list ul {
  margin: -23px;
}
.factory-1 .list li {
  padding: 23px;
}
.factory-1 .list li .plus {
  width: 16px;
  height: 16px;
  position: relative;
}
.factory-1 .list li .plus::before,
.factory-1 .list li .plus::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 16px;
  border-bottom: 3px solid #dc0000;
}
.factory-1 .list li .plus::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.factory-1 .list li .name {
  line-height: 2;
}
.factory-2 {
  padding: 90px 0 110px;
  position: relative;
}
.factory-2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 35%;
  left: 0;
  bottom: 0;
  background-color: #dc0000;
}
.factory-2 .Tit {
  left: 60%;
  top: 15%;
}
.factory-2 .arrows {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.factory-2 .arrows .arrow {
  display: block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 32px;
  background-color: white;
  color: #dc0000;
  cursor: pointer;
}
.factory-2 .arrows .arrow::after {
  content: attr(data-text);
  display: contents;
}
.factory-2 .arrows .arrow.arrow_r {
  margin-top: 8px;
  color: white;
  background-color: #dc0000;
}
.factory-2 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: -10px;
}
.factory-2 .left {
  width: 55%;
  padding: 10px;
}
.factory-2 .left img {
  width: 100%;
}
.factory-2 .right {
  width: 45%;
  margin-top: auto;
  padding: 10px;
}
.factory-2 .right ul {
  margin: -10px;
}
.factory-2 .right li {
  padding: 10px;
}
.factory-2 .right .slick-slide {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.factory-3 {
  margin-top: 140px;
}
.factory-3 .content {
  left: 25%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  text-align: center;
}
.factory-3 .text {
  color: white;
  line-height: 2;
  margin-bottom: 60px;
}
.factory-3 .play {
  border-radius: 100%;
  width: 105px;
  height: 105px;
  position: relative;
  margin: auto;
  cursor: pointer;
  cursor: hand;
}
.factory-3 .play::before,
.factory-3 .play::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.56);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.factory-3 .play::after {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.factory-4 {
  padding: 130px 0;
}
.factory-4 .list {
  margin-top: 50px;
}
.factory-4 .list ul {
  margin: -13px;
}
.factory-4 .list li {
  padding: 13px;
}
.factory-4 .dots ul {
  margin-top: 30px;
}
.factory-4 .dots li {
  margin: 0 10px;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #666666;
  border-radius: 50%;
}
.factory-4 .dots li button {
  display: none;
}
.factory-4 .dots li.slick-active {
  background-color: #dc0000;
}
@media (max-width: 1440px) {
  .factory-page .Tit {
    font-size: 40px;
  }
  .factory-page .Tit small {
    font-size: 24px;
  }
  .factory-3 .content {
    left: 15%;
    width: 70%;
  }
}
@media (max-width: 1230px) {
  .factory-page .Tit {
    font-size: 36px;
  }
  .factory-1 .list ul {
    margin: -15px;
  }
  .factory-1 .list li {
    padding: 15px;
  }
  .factory-3 .text {
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .factory-page .Tit {
    font-size: 30px;
  }
  .factory-1 {
    padding: 60px 0;
  }
  .factory-1 .list {
    margin-top: 40px;
  }
  .factory-2 {
    padding: 60px 0;
  }
  .factory-2 .left {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .factory-2 .Tit {
    position: static;
  }
  .factory-2 .box {
    display: block;
    margin: 0;
  }
  .factory-2 .right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .factory-2 .right .slick-slide {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .factory-2 .arrows .arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  .factory-3 {
    margin-top: 60px;
  }
  .factory-3 .text {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .factory-3 .play {
    width: 55px;
    height: 55px;
  }
  .factory-3 .content {
    left: 10%;
    width: 80%;
  }
  .factory-4 {
    padding: 60px 0;
  }
}
@media (max-width: 700px) {
  .factory-page .Tit {
    font-size: 24px;
  }
  .factory-3 .text {
    display: none;
  }
  .factory-4 .dots {
    display: none;
  }
}
.honor-page {
  padding: 140px 0;
}
.honor-page .list {
  margin-top: 85px;
}
.base-category ul {
  margin: -7px;
}
.base-category li {
  padding: 7px;
  width: auto!important;
}
.base-category li.active a {
  font-weight: bold;
  color: white;
  background-color: #dc0000;
}
.base-category li a {
  font-weight: 600;
  padding: 15px 10px;
  text-align: center;
  min-width: 115px;
  display: block;
  background-color: #f3f3f3;
}
.base-honor-list ul {
  margin: -40px -18px;
}
.base-honor-list li {
  padding: 40px 18px;
}
.m-page {
  margin-top: 70px;
  text-align: center;
}
.m-page a,
.m-page span {
  display: inline-block;
  width: 57px;
  height: 57px;
  line-height: 57px;
  text-align: center;
  color: #ffffff;
  background-color: #333333;
  font-size: 20px;
  font-weight: bold;
  margin: 0 10px;
}
.m-page .current {
  background-color: #dc0000;
}
@media (max-width: 1440px) {
  .base-category li a {
    font-size: 18px;
  }
  .base-honor-list li .name {
    font-size: 18px;
  }
}
@media (max-width: 1230px) {
  .base-category li a {
    font-size: 16px;
  }
  .base-honor-list li .name {
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  .honor-page {
    padding: 60px 0;
  }
  .base-category {
    display: none;
  }
  .honor-page .list {
    margin-top: 0;
  }
  .base-honor-list ul {
    margin: -15px;
  }
  .base-honor-list li {
    padding: 15px;
  }

  .m-page a,
  .m-page span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin: 0 5px;
  }
}
.product-1 {
  padding-top: 140px;
}
.product-1 h1 {
  font-size: 40px;
  font-weight: 800;
  color: #dc0000;
}
.product-1 .detail {
  line-height: 2;
  color: #666666;
}
.product_list ul {
  margin: -25px -7px;
}
.product_list li {
  padding: 25px 7px;
  text-align: center;
}
.product_list li .img {
  margin-bottom: 30px;
}
.product_list li .name {
  word-break: break-all;
}
@media (max-width: 1440px) {
  .product_list li .name {
    font-size: 20px;
  }
}
@media (max-width: 1230px) {
  .product_list li .name {
    font-size: 18px;
  }
  .product-1 h1 {
    font-size: 30px;
  }
}
@media (max-width: 1000px) {
  .product-1 {
    padding-top: 60px;
  }
  .product_list li .name {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .product-1 h1 {
    font-size: 24px;
  }
  .product_list li .name {
    font-size: 14px;
  }
}
.sideBox .sideLeft {
  width: 35%;
}
.sideBox .sideLeft .Tit {
  font-size: 32px;
  font-weight: bold;
}
.sideBox .sideLeft .Tit::after {
  content: "";
  margin-top: 10px;
  display: block;
  width: 85px;
  border-bottom: 2px solid #dc0000;
}
.sideBox .sideRight {
  width: 65%;
}
.sideBox .sideSearch form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.sideBox .sideSearch input[type="text"] {
  padding: 0 15px;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  border: 0;
  font-size: 18px;
  background-color: #f4f4f4;
}
.sideBox .sideSearch input[type="submit"] {
  width: 68px;
  height: 68px;
  border: 0;
  background: #dc0000 url(../images/search-icon.png) no-repeat center;
}
.sideBox .sideCategory {
  padding: 50px 25px;
  background-color: #f4f4f4;
}
.sideBox .sideCategory .menu a {
  display: block;
}
.sideBox .sideCategory .menu li.child {
  position: relative;
}
.sideBox .sideCategory .menu li.child > i {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 22px;
  font-weight: bold;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sideBox .sideCategory .menu li.child > i::after {
  content: attr(data-text);
  display: contents;
}
.sideBox .sideCategory .menu li.child.active > i {
  color: #dc0000;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.sideBox .sideCategory .menu li.second {
  position: relative;
}
.sideBox .sideCategory .menu li.second > i {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 22px;
  font-weight: bold;
  color: #dc0000;
}
.sideBox .sideCategory .menu li.second.active > i {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.sideBox .sideCategory .menu > ul > li {
  background-color: white;
  padding: 20px;
}
.sideBox .sideCategory .menu > ul > li.active > a {
  color: #dc0000;
}
.sideBox .sideCategory .menu > ul > li.active > ul {
  display: block;
}
.sideBox .sideCategory .menu > ul > li + li {
  margin-top: 15px;
}
.sideBox .sideCategory .menu > ul > li > ul {
  padding-top: 15px;
  display: none;
}
.sideBox .sideCategory .menu > ul > li > ul > li a {
  padding: 10px 25px;
}
.sideBox .sideCategory .menu > ul > li > ul > li > a {
  font-weight: 600;
}
.sideBox .sideCategory .menu > ul > li > ul > li > ul {
  display: none;
}
.sideBox .sideCategory .menu > ul > li > ul > li > ul > li.active > a {
  color: #dc0000;
}
.sideBox .sideCategory .menu > ul > li > ul > li.active > ul {
  display: block;
}
.sideBox .sideNews {
  padding: 60px 25px;
  background-color: #f4f4f4;
}
.sideBox .sideNews .list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
.sideBox .sideNews .list li .img {
  width: 150px;
  height: 135px;
}
.sideBox .sideNews .list li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sideBox .sideNews .list li .content {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: 1;
  padding-left: 8%;
}
.sideBox .sideNews .list li .content .name {
  line-height: 2;
}
.sideBox .sideNews .list li .content time {
  line-height: 2;
}
@media (max-width: 1440px) {
  .sideBox .sideCategory .menu > ul > li > a {
    font-size: 20px;
  }
}
@media (max-width: 1230px) {
  .sideBox .sideLeft .Tit {
    font-size: 24px;
  }
  .sideBox .sideCategory .menu > ul > li > a {
    font-size: 18px;
  }
  .sideBox .sideCategory .menu > ul > li > ul > li > a {
    font-size: 16px;
  }
  .sideBox .sideCategory .menu > ul > li > ul > li > ul > li > a {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .sideBox .sideLeft {
    display: none;
  }
  .sideBox .sideRight {
    width: 100%;
    padding: 0;
  }
}
.public-honor {
  padding: 120px 0 80px;
}
.public-news {
  padding: 80px 0 130px;
}
.public-news .list ul {
  margin: 0 -40px;
}
.public-news .list li {
  padding: 0 40px;
  border-left: 1px solid #ececec;
}
.public-news .list li .name {
  line-height: 1.5;
  min-height: 3em;
}
.public-news .list li .text {
  color: #666666;
  line-height: 2;
  margin-bottom: 30px;
}
.public-news .list li .moreBtn:hover {
  color: #dc0000;
}
.public-form {
  background-color: #f1f1f1;
  padding: 60px 0 75px;
}
.public-form .Tit {
  font-size: 44px;
}
.public-form .form {
  margin-top: 50px;
}
.public-form .form ul {
  margin: -10px -20px;
}
.public-form .form li {
  padding: 10px 20px;
  width: 50%;
}
.public-form .form li.wid-100 {
  width: 100%;
}
.public-form .form input,
.public-form .form textarea {
  width: 100%;
  border: none;
  background-color: white;
  padding: 25px;
  font-size: 18px;
  font-weight: 400;
}
.public-form .form input[type="submit"] {
  font-size: 16px;
  font-weight: bold;
  width: 170px;
  padding: 15px;
  color: white;
  background-color: #dc0000;
  margin-top: 30px;
}
@media (max-width: 1440px) {
  .public-form .Tit {
    font-size: 40px;
  }
}
@media (max-width: 1230px) {
  .public-form .Tit {
    font-size: 36px;
  }
}
@media (max-width: 1000px) {
  .public-form .Tit {
    font-size: 30px;
  }
  .public-honor {
    padding: 60px 0 40px;
  }
  .public-news {
    padding: 40px 0 60px;
  }
  .public-news .list ul {
    margin: 0 -15px;
  }
  .public-news .list li {
    padding: 0 15px;
  }
  .public-form {
    padding: 60px 0;
  }
  .public-form .form ul {
    margin: -10px;
  }
  .public-form .form li {
    padding: 10px;
  }
  .public-form .form input,
  .public-form .form textarea {
    font-size: 16px;
    padding: 15px;
  }
}
@media (max-width: 700px) {
  .public-form .Tit {
    font-size: 24px;
  }
  .public-form .form input,
  .public-form .form textarea {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 500px) {
  .public-form .form li {
    width: 100%;
  }
}
.prodet-1 {
  margin-top: 140px;
}
.prodet-1 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.prodet-1 h1 {
  font-size: 44px;
}
.prodet-1 .right {
  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;
}
.prodet-1 .right .content {
  margin-top: 30px;
  margin-bottom: auto;
  padding: 25px 0;
  color: #333333;
  line-height: 2;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.prodet-1 .right .content .text {
  min-height: 24em;
}
.prodet-1 .right .share {
  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;
}
.prodet-1 .right .share a {
  margin-left: 15px;
  font-size: 24px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid black;
  border-radius: 10px;
}
.prodet-1 .right .btns {
  margin-top: 35px;
  margin-bottom: auto;
}
.prodet-1 .right .btns a {
  padding: 20px;
  display: inline-block;
  min-width: 270px;
  color: white;
  background-color: #dc0000;
  border: 1px solid #dc0000;
  text-align: center;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.prodet-1 .right .btns a + a {
  margin-left: 8px;
}
.prodet-1 .right .btns a:hover {
  color: #dc0000;
  background-color: transparent;
}
.prodet-1 .right .btns a.on {
  background-color: #333333;
  border-color: #333333;
}
.prodet-1 .right .btns a.on:hover {
  color: #333333;
  background-color: transparent;
}
.prodet-1 .right .m-link {
  margin-top: 30px;
}
.prodet-1 .right .m-link .prev,
.prodet-1 .right .m-link .next {
  max-width: 45%;
}
.prodet-2 {
  margin-top: 140px;
}
.prodet-2 .options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.prodet-2 .options::after {
  content: "";
  display: block;
  border-bottom: 1px solid #cccccc;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.prodet-2 .options span {
  min-width: 217px;
  font-size: 26px;
  font-weight: 600;
  color: #999999;
  text-align: center;
  padding: 10px;
  margin-right: 20px;
  cursor: pointer;
}
.prodet-2 .options span.active {
  color: white;
  background-color: #dc0000;
}
.prodet-2 .ret .left {
  width: 20%;
  vertical-align: middle;
}
.prodet-2 .ret .right {
  width: 80%;
  vertical-align: middle;
}
.prodet-2 ul.files {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: -5px;
}
.prodet-2 ul.files li {
  padding: 5px;
}
.prodet-2 ul.files li .box {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #333333;
  padding: 10px;
}
.prodet-2 ul.files li .box .img {
  margin: auto;
}
.prodet-2 ul.files li .box .play {
  width: 85px;
  height: 85px;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  cursor: hand;
}
.prodet-2 ul.files li .box .play::before,
.prodet-2 ul.files li .box .play::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.56);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.prodet-2 ul.files li .box .play::after {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.prodet-2 ul.files li .box .link {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.prodet-3 .Tit {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
}
.prodet-3 .list ul {
  margin: -18px;
}
.prodet-3 .list li {
  padding: 18px;
}
.prodet-3 .list li .box {
  padding: 30px 20px 50px;
  text-align: center;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .prodet-1 h1 {
    font-size: 40px;
  }
  .prodet-1 .right .btns a {
    font-size: 18px;
    padding: 10px;
    min-width: 200px;
  }
  .prodet-2 .options span {
    font-size: 22px;
    min-width: 200px;
  }
  .prodet-3 .Tit {
    font-size: 40px;
  }
}
@media (max-width: 1230px) {
  .prodet-1 h1 {
    font-size: 36px;
  }
  .prodet-1 .right .content .text {
    min-height: auto;
    max-height: 14em;
    overflow-y: auto;
  }
  .prodet-1 .right .share a {
    font-size: 18px;
    width: 30px;
    height: 30px;
    line-height: 28px;
  }
  .prodet-2 .options span {
    font-size: 20px;
  }
  .prodet-3 .Tit {
    font-size: 36px;
  }
  .prodet-3 .list li .box {
    padding: 20px;
  }
  .prodet-3 .list li .box .name {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .prodet-1 {
    margin-top: 60px;
  }
  .prodet-1 .box {
    display: block;
  }
  .prodet-1 .left {
    width: 100%;
  }
  .prodet-1 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .prodet-1 h1 {
    font-size: 30px;
  }
  .prodet-1 .right .btns a {
    font-size: 16px;
  }
  .prodet-2 {
    margin-top: 100px;
  }
  .prodet-2 .left {
    width: 100%;
  }
  .prodet-2 .right {
    width: 100%;
  }
  .prodet-2 .options span {
    min-width: auto;
    font-size: 18px;
  }
  .prodet-3 {
    margin-top: 0;
  }
  .prodet-3 .Tit {
    font-size: 30px;
  }
  .prodet-3 .list ul {
    margin: -15px;
  }
  .prodet-3 .list li {
    padding: 15px;
  }
  .prodet-3 .list li .box .name {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .prodet-1 h1 {
    font-size: 24px;
  }
  .prodet-1 .right .btns a {
    font-size: 14px;
    min-width: auto;
  }
  .prodet-1 .right .share a {
    font-size: 14px;
    width: 26px;
    height: 26px;
    line-height: 24px;
    border-radius: 5px;
    margin-left: 10px;
  }
  .prodet-2 .options span {
    font-size: 16px;
  }
  .prodet-3 .Tit {
    font-size: 24px;
  }
  .prodet-3 .list li .box .name {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .prodet-1 .right .m-link .prev,
  .prodet-1 .right .m-link .next {
    float: none;
    max-width: 100%;
    margin: 10px 0;
  }
  .prodet-2 .options {
    display: block;
  }
  .prodet-2 .options span {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .prodet-2 ul.files {
    display: block;
  }
}
.contact-1 {
  padding: 140px 0 130px;
}
.contact-1 .left {
  width: 40%;
  padding-right: 50px;
}
.contact-1 .left .info {
  background-color: #dc0000;
  padding: 100px 50px;
}
.contact-1 .left .info li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-1 .left .info li + li {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px dashed white;
}
.contact-1 .left .info li .icon {
  width: 92px;
}
.contact-1 .left .info li .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  color: white;
  padding-left: 30px;
}
.contact-1 .left .info li .text p {
  font-weight: 600;
}
.contact-1 .right {
  width: 60%;
}
.contact-1 .public-form {
  padding: 0;
}
.contact-1 .public-form .Tit {
  color: #dc0000;
}
.contact-1 .public-form {
  background-color: transparent;
}
.contact-1 .public-form .form input,
.contact-1 .public-form .form textarea {
  background-color: #f7f7f7;
}
.contact-1 .public-form .form textarea {
  height: 300px;
}
.contact-1 .public-form .form input[type="submit"] {
  background-color: #dc0000;
}
@media (max-width: 1440px) {
  .contact-1 .left .info li .text p {
    font-size: 18px;
  }
  .contact-1 .left .info li .icon {
    width: 80px;
  }
  .contact-1 .left .info li .text {
    padding-left: 15px;
  }
  .contact-1 .left .info li + li {
    margin-top: 60px;
    padding-top: 60px;
  }
  .contact-1 .public-form .form textarea {
    height: 200px;
  }
}
@media (max-width: 1230px) {
  .contact-1 .left .info li .text p {
    font-size: 16px;
  }
  .contact-1 .left .info {
    padding: 80px 25px;
  }
  .contact-1 .left .info li .icon {
    width: 60px;
  }
  .contact-1 .public-form .form textarea {
    height: 150px;
  }
}
@media (max-width: 1000px) {
  .contact-1 {
    padding: 60px 0;
  }
  .contact-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .contact-1 .left .info {
    padding: 50px 25px;
  }
  .contact-1 .left .info li + li {
    margin-top: 25px;
    padding-top: 25px;
  }
  .contact-1 .right {
    width: 100%;
    margin-top: 60px;
  }
}
@media (max-width: 700px) {
  .contact-1 .left .info li .text p {
    font-size: 14px;
  }
}
.news-page {
  padding: 140px 0;
}
.news-page .list {
  margin-top: 70px;
}
.news-page .list li + li {
  margin-top: 40px;
}
.news-page .list li .box {
  padding: 50px 10% 50px 0;
  position: relative;
}
.news-page .list li .box::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 5%;
  right: 0;
  background-color: #f6f6f6;
}
.news-page .list li .box .img {
  width: 33%;
}
.news-page .list li .box .img img {
  width: 100%;
}
.news-page .list li .box .content {
  padding-left: 38%;
}
.news-page .list li .box .content .text {
  line-height: 2;
  min-height: 4em;
  color: #666666;
}
.news-page .list li .box .content .moreBtn {
  color: #dc0000;
  border-bottom: 1px solid currentColor;
}
@media (max-width: 1630px) {
  .news-page .list li .box {
    padding: 50px 5% 50px 0;
  }
}
@media (max-width: 1440px) {
  .news-page .list li .box .content .name {
    font-size: 24px;
  }
  .news-page .list li .box .content .moreBtn {
    font-size: 20px;
  }
  .news-page .list li .box .img {
    width: 35%;
  }
  .news-page .list li .box .content {
    padding-left: 40%;
  }
}
@media (max-width: 1000px) {
  .news-page {
    padding: 60px 0;
  }
  .news-page .list {
    margin-top: 0;
  }
  .news-page .list li .box {
    padding: 0;
  }
  .news-page .list li .box::before {
    display: none;
  }
  .news-page .list li .box .img {
    width: 100%;
    float: none;
  }
  .news-page .list li .box .content {
    padding-left: 0;
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 700px) {
  .news-page .list li .box .content .name {
    font-size: 20px;
  }
  .news-page .list li .box .content .moreBtn {
    font-size: 16px;
  }
}
.newdet-page {
  padding: 130px 0 160px;
}
.newdet-1 h1 {
  font-size: 34px;
  font-weight: 800;
  color: #dc0000;
}
.newdet-1 .line {
  margin-top: 35px;
  height: 12px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.newdet-1 .m-link {
  margin-top: 35px;
}
.newdet-1 .m-link .prev,
.newdet-1 .m-link .next {
  max-width: 45%;
}
@media (max-width: 1440px) {
  .newdet-1 h1 {
    font-size: 30px;
  }
}
@media (max-width: 1000px) {
  .newdet-page {
    padding: 60px 0;
  }
  .newdet-1 h1 {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .newdet-1 .m-link .prev,
  .newdet-1 .m-link .next {
    max-width: 100%;
    float: none;
    margin: 10px 0;
  }
}
.download-page {
  padding: 140px 0;
}
.download-page .list ul {
  margin: -40px -25px;
}
.download-page .list li {
  padding: 40px 25px;
  text-align: center;
}
.download-page .list li .box {
  border: 1px solid #cccccc;
  padding: 5.6% 9.2%;
  margin-bottom: 30px;
}
.download-page .list li .box .img {
  -webkit-box-shadow: 0 0 24px rgba(23, 23, 23, 0.08);
  box-shadow: 0 0 24px rgba(23, 23, 23, 0.08);
  position: relative;
}
.download-page .list li .box .img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.download-page .list li .box .img .btn {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.download-page .list li .box .img .btn a {
  display: inline-block;
  height: 70px;
  line-height: 70px;
  color: white;
  background-color: #dc0000;
  font-size: 0;
  padding: 0 35px;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.download-page .list li .box .img .btn a span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.download-page .list li .box .img .btn a img {
  vertical-align: middle;
}
.download-page .list li .box:hover .img::after {
  opacity: 1;
}
.download-page .list li .box:hover .img .btn a {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.download-page .list li .box:hover .img .btn a:hover {
  background-color: black;
}
.download-page .list li .name {
  font-size: 26px;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .download-page .list li .box {
    padding: 5%;
  }
  .download-page .list li .box .img .btn a {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
  }
  .download-page .list li .box .img .btn a span {
    font-size: 18px;
  }
  .download-page .list li .box .img .btn a img {
    width: 30px;
  }
  .download-page .list li .name {
    font-size: 22px;
  }
}
@media (max-width: 1230px) {
  .download-page .list ul {
    margin: -30px -15px;
  }
  .download-page .list li {
    padding: 30px 15px;
  }
  .download-page .list li .box .img .btn a {
    height: 50px;
    line-height: 50px;
  }
  .download-page .list li .box .img .btn a span {
    font-size: 16px;
  }
  .download-page .list li .box .img .btn a img {
    width: 20px;
  }
  .download-page .list li .name {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .download-page {
    padding: 60px 0;
  }
  .download-page .list li .box .img .btn a span {
    font-size: 14px;
  }
  .download-page .list li .name {
    font-size: 16px;
  }
  .download-page .list li .box .img .btn {
    display: none;
  }
  .download-page .list li .box .img::after {
    display: none;
  }
}
.video-page {
  padding: 140px 0;
}
.video-page .list ul {
  margin: -15px -8px;
}
.video-page .list li {
  padding: 15px 8px;
}
.video-page .list li .box {
  padding: 15px;
  border: 1px solid black;
}
.video-page .list li .box .img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.28);
}
.video-page .list li .box .play {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media (max-width: 1000px) {
  .video-page {
    padding: 60px 0;
  }
}
.faq-1 {
  margin-top: 130px;
}
.faq-1 li + li {
  margin-top: 20px;
}
.faq-1 li .title {
  padding: 35px 30px;
  background-color: #f4f4f4;
  cursor: pointer;
}
.faq-1 li .title .num {
  font-size: 26px;
}
.faq-1 li .title .tit {
  font-weight: 600;
  padding-left: 50px;
}
.faq-1 li .title.active {
  background: url(../images/faq-bg.jpg) no-repeat center;
  background-size: cover;
  color: white;
}
.faq-1 li .title.active + .content {
  display: block;
}
.faq-1 li .content {
  padding: 20px 30px;
  display: none;
}
.faq-1 li .content .word {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: white;
  background-color: #dc0000;
  font-size: 28px;
  font-weight: 600;
}
.faq-1 li .content .text {
  padding-left: 90px;
  margin-top: 15px;
}
.faq-2 {
  padding: 80px 0;
}
.faq-2 .content {
  line-height: 2;
  font-weight: 600;
}
@media (max-width: 1440px) {
  .faq-1 li .title .num {
    font-size: 24px;
  }
  .faq-1 li .title .tit {
    font-size: 20px;
  }
  .faq-2 .content {
    font-size: 20px;
  }
}
@media (max-width: 1230px) {
  .faq-1 li .title .num {
    font-size: 20px;
  }
  .faq-1 li .title .tit {
    font-size: 18px;
  }
  .faq-2 .content {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .faq-1 {
    margin-top: 60px;
  }
  .faq-1 li .title {
    padding: 15px;
  }
  .faq-1 li .content {
    padding: 15px;
  }
  .faq-1 li .title .tit {
    padding-left: 30px;
  }
  .faq-1 li .content .word {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  .faq-1 li .content .text {
    padding-left: 60px;
    margin-top: 0;
  }
  .faq-2 {
    padding: 60px 0;
  }
  .faq-2 .content {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .faq-1 li .title .num {
    font-size: 18px;
  }
  .faq-1 li .title .tit {
    font-size: 16px;
  }
  .faq-2 .content {
    font-size: 14px;
  }
}
.quality-1 {
  padding: 140px 0;
}
.quality-1 .Tit {
  font-size: 44px;
  font-weight: bold;
  color: #dc0000;
}
.quality-1 .content {
  line-height: 2;
  max-width: 1430px;
  margin: auto;
}
.quality-2 {
  background: url(../images/quality-2-bg.jpg) no-repeat center;
  background-size: cover;
  color: white;
  padding: 100px 0;
}
.quality-2 .Tit {
  font-size: 20px;
  font-weight: 600;
  max-width: 1100px;
  margin: auto;
  line-height: 2;
}
.quality-2 .list {
  margin: 100px 0 90px;
}
.quality-2 .list ul {
  margin: -20px;
}
.quality-2 .list li {
  padding: 20px;
}
.quality-2 .list li .num {
  float: left;
}
.quality-2 .list li .text {
  padding-left: 100px;
  line-height: 2;
  margin-top: 10px;
}
.quality-2 .img {
  width: 25%;
  margin: auto;
  text-align: center;
}
.quality-3 {
  padding: 140px 0;
  position: relative;
}
.quality-3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 35%;
  left: 0;
  top: 0;
  background-color: #dc0000;
}
.quality-3 ul {
  margin: -10px;
}
.quality-3 li {
  padding: 10px;
  width: 25%!important;
}
.quality-3 li.wid-50 {
  width: 50%!important;
}
.quality-3 li .box {
  background-color: black;
}
.quality-3 li .box img {
  width: 100%;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.quality-3 li .box .content {
  width: 90%;
  left: 5%;
  top: 50%;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.quality-3 li .box .content .name {
  color: white;
  margin-bottom: 24px;
}
.quality-3 li .box .content .plus {
  font-size: 34.77px;
  margin: auto;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  color: white;
  background-color: rgba(220, 0, 0, 0.4);
}
.quality-3 li .box:hover img {
  opacity: .4;
}
.quality-3 li .box:hover .content {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
}
@media (max-width: 1440px) {
  .quality-1 .Tit {
    font-size: 40px;
  }
  .quality-1 .content {
    font-size: 20px;
  }
  .quality-2 .Tit {
    font-size: 18px;
  }
  .quality-3 li .box .content .name {
    font-size: 24px;
  }
}
@media (max-width: 1230px) {
  .quality-1 .Tit {
    font-size: 36px;
  }
  .quality-1 .content {
    font-size: 18px;
  }
  .quality-2 .list ul {
    margin: -15px;
  }
  .quality-2 .list li {
    padding: 15px;
  }
  .quality-3 li .box .content .name {
    font-size: 20px;
  }
}
@media (max-width: 1000px) {
  .quality-1 {
    padding: 60px 0;
  }
  .quality-1 .Tit {
    font-size: 30px;
  }
  .quality-1 .content {
    font-size: 16px;
  }
  .quality-2 {
    padding: 60px 0;
  }
  .quality-2 .list {
    margin: 60px 0;
  }
  .quality-2 .list li {
    width: 100%!important;
  }
  .quality-2 .img {
    width: 50%;
  }
  .quality-3 {
    padding: 60px 0;
  }
  .quality-3 li {
    width: 50%!important;
  }
  .quality-3 li.wid-50 {
    width: 100% !important;
  }
  .quality-3 li .box .content .name {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .quality-1 .Tit {
    font-size: 24px;
  }
  .quality-1 .content {
    font-size: 14px;
  }
  .quality-2 .Tit {
    font-size: 16px;
  }
  .quality-2 .list li .text {
    margin-top: 0;
  }
  .quality-2 .img {
    width: 70%;
  }
  .quality-3 li .box .content .name {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .quality-page .public-form .text {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .quality-3 li .box .content .plus {
    font-size: 24px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.fixed-box {
  position: fixed;
  right: 3%;
  top: 30%;
  z-index: 99;
}
.fixed-box li {
  position: relative;
}
.fixed-box li + li::before {
  content: "";
  border-top: 1px solid white;
  opacity: .3;
  position: absolute;
  left: 20%;
  right: 20%;
  top: 0;
}
.fixed-box li .icon {
  font-size: 30px;
  width: 97px;
  height: 97px;
  line-height: 97px;
  text-align: center;
  color: white;
  background-color: #dc0000;
  cursor: pointer;
}
.fixed-box li .info {
  left: 0;
  top: 0;
  z-index: -1;
  width: 200px;
  height: 100%;
  color: white;
  background-color: #dc0000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  pointer-events: none;
}
.fixed-box li .info p {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.fixed-box li .ewm {
  width: 150px;
  left: 0;
  bottom: 0;
  border: 5px solid white;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.fixed-box li:hover .info {
  left: -200px;
  opacity: 1;
  pointer-events: unset;
}
.fixed-box li:hover .ewm {
  left: -150px;
  opacity: 1;
}


@media (max-width: 1440px) {
  .fixed-box li .icon {
    font-size: 18px;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

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


.inner-banner.custom {
  background-color: #a3a3a3;
  overflow: hidden;
}
.inner-banner.custom .pro {
  min-width: 100%;
  height: 250%;
  left: 50%;
  transform: translate(-50%, -10%);
  text-align: center;
}
.inner-banner.custom .pro img {
  height: 100%;
    object-fit: cover;
}