@font-face {
  font-family: '../fonts/Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: '../fonts/Montserrat';
  src: url('../fonts/Montserrat-Medium.eot');
  src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff'), url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: '../fonts/Montserrat';
  src: url('../fonts/Montserrat-SemiBold.eot');
  src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.woff') format('woff'), url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: '../fonts/Montserrat';
  src: url('../fonts/Montserrat-Light.eot');
  src: url('../fonts/Montserrat-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Light.woff2') format('woff2'), url('../fonts/Montserrat-Light.woff') format('woff'), url('../fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
body {
  font-family: "Montserrat";
  max-width: 1920px;
  --color: #f00;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1500px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
}
#header .ui.menu {
  width: auto;
  max-width: 1790px;
}
#header .h-top {
  background-color: black;
  color: white;
}
#header .h-top .ui {
  height: 40px;
}
#header .h-top .share a {
  width: 2em;
  height: 2em;
  background-color: #8c8c8c;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .h-top .share a:hover {
  background-color: var(--color);
}
#header .nav {
  color: white;
  position: absolute;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu {
  margin:12px auto;
  height: 100px;
}
#header .nav .ui.menu .logo {
  width: 20%;
}
#header .nav .logo img{
  filter: invert(1);
  height: 100px;
  margin-top: 30px;
  margin-left: 35px;
}
#header .nav .ui.menu .box {
  width: 20%;
  height: 100%;
}
#header .nav .ui.menu .menu-box {
  height: 100%;
  width: 50%;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  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;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#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: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#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:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .yuy span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2em;
  height: 1.7em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .yuy ul {
  left: auto;
  right: 0;
}
#header .nav .ui.menu .yuy:hover span {
  background-color: var(--color);
  color: white;
}
#header.active .nav {
  background-color: white;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: black;
}
#header.active .nav .ui.menu .yuy span {
  border-color: rgba(0, 0, 0, 0.2);
}

#header.active .nav .ui.menu .yuy span img{
  filter: invert(1);
}

#header.active .nav .logo img {
    filter: none;
    /*margin: 0px;*/
    margin: 0px 35px 0;
}
#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: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.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 .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#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: var(--color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
span.h2 {
  line-height: 1.24242424;
}
.more {
  border-bottom: 1px solid black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  padding-bottom: .2em;
}
.more:hover {
  color: var(--color);
  border-color: var(--color);
}
.text {
  color: #818181;
  line-height: 1.8;
}
#banner {
  position: relative;
}
#banner li {
  position: relative;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
}
#banner li .content .left {
  max-width: 760px;
  margin-left: 2em;
}
#banner li .content a.more {
  border-bottom-color: white;
}
#banner .slickDots {
  position: absolute;
  bottom: 5%;
  left: 0;
  z-index: 1;
  font-size: 14px;
}
#banner .slickDots li {
  background-color: #dcdcdc;
  border: none;
}
#banner .slickDots li.slick-active {
  background-color: var(--color);
}
#banner .scroll {
  position: absolute;
  right: 11.5%;
  -webkit-writing-mode: sideways-rl;
  -ms-writing-mode: sideways-rl;
  writing-mode: sideways-rl;
  bottom: 0;
  color: white;
  border-right: 1px solid white;
}
#banner .scroll:before {
  content: '';
  width: 1px;
  height: 0%;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: black;
  -webkit-animation: sx 2s linear infinite alternate;
  -moz-animation: sx 2s linear infinite alternate;
  animation: sx 2s linear infinite alternate;
}
@-webkit-keyframes sx {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    height: 0;
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    height: 100%;
  }
}
@-moz-keyframes sx {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    height: 0;
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    height: 100%;
  }
}
@keyframes sx {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    height: 0;
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    height: 100%;
  }
}

@-webkit-keyframes xz {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes xz {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes xz {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#index-body .init-1 {
  overflow: hidden;
}
#index-body .init-1 .firstImg {
  grid-row:span 2;
}
#index-body .init-1 .box {
  margin-left: 2em;
  margin-right: 2em;
  position: relative;
  /*padding-bottom: 6em;*/
  z-index: 1;
}
#index-body .init-1 .box .h {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 23.38582677%;
}
#index-body .init-1 .box .h img {
  -webkit-animation: xz 8s linear infinite;
  -moz-animation: xz 8s linear infinite;
  animation: xz 8s linear infinite;
}
#index-body .init-1 .box .content {
  /*width: 63%;*/
  margin-left: auto;
  background-color: white;
  padding-left: 4em;
  padding-bottom: 2em;
  display: block;
  position: relative;
  margin-right: -1px;
}
#index-body .init-1 .box .content:after,
#index-body .init-1 .box .content:before {
  content: '';
  width: .5em;
  height: 100%;
  top: 100%;
  background-color: white;
  z-index: 1;
  position: absolute;
}
#index-body .init-1 .box .content:before {
  left: 0;
}
#index-body .init-1 .box .content:after {
  left: 50%;
}
#index-body .init-1 .box .videoBox {
  width: 31.5%;
  bottom: 0;
  right: -1px;
  height: 6em;
  overflow: hidden;
  z-index: -1;
}
#index-body .init-1 .box .videoBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#index-body .init-1 .list {
  position: relative;
  z-index: 1;
}
#index-body .init-1 .list span.h6 {
  line-height: 1;
}
#index-body .init-1 .list p {
  color: #6e6e6e;
}
#index-body .init-2 {
  height: 660px;
  background-color: black;
}
#index-body .init-2 ul {
  height: inherit;
  color: white;
}
#index-body .init-2 ul li {
  padding: 1em 1.66666667em;
  width: 17%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
}
#index-body .init-2 ul li:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.36);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: -1;
}
#index-body .init-2 ul li .text {
  color: inherit;
  height: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 ul li a.link {
  line-height: 1;
}
#index-body .init-2 ul li.active {
  width: 49%;
}
#index-body .init-2 ul li.active:before {
  opacity: 0;
}
#index-body .init-2 ul li.active .text {
  height: 3.6em;
}
#index-body .init-3 .options {
  margin-left: 2em;
  margin-right: 2em;
}
#index-body .init-3 .options li {
  border-bottom: 1px solid black;
  opacity: .4;
  margin-bottom: 3px;
  line-height: 1;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .options li:before {
  content: '';
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background-color: var(--color);
  position: absolute;
  left: 0;
  bottom: -3px;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .options li:after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--color);
  -webkit-transition: 0s;
  -moz-transition: 0s;
  transition: 0s;
}
#index-body .init-3 .options li.active,
#index-body .init-3 .options li.on {
  opacity: 1;
}
#index-body .init-3 .options li.active:before,
#index-body .init-3 .options li.on:before {
  opacity: 1;
}
#index-body .init-3 .options li.active:after,
#index-body .init-3 .options li.on:after {
  width: 100%;
  -webkit-transition: 6.5s;
  -moz-transition: 6.5s;
  transition: 6.5s;
}
#index-body .init-3 .options li.on {
  -webkit-transition: 0s !important;
  -moz-transition: 0s !important;
  transition: 0s !important;
}
#index-body .init-3 .options li.on:before,
#index-body .init-3 .options li.on:after {
  -webkit-transition: 0s !important;
  -moz-transition: 0s !important;
  transition: 0s !important;
}
#index-body .init-3 .list a.img-box {
  height: 678px;
  background-position: left bottom;
}
#index-body .init-3 .list a.img-box .content {
  left: 0;
  bottom: 0;
  width: 40%;
  padding: 6.5%;
  z-index: 1;
}
#index-body .init-3 .list a.img-box .content i {
  display: block;
}
#index-body .init-3 .list a.img-box .content img {
  width: auto;
}
#index-body .init-3 .list a.img-box .content:before,
#index-body .init-3 .list a.img-box .content .mask {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}
#index-body .init-3 .list a.img-box .content .mask {
  background-color: transparent;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  z-index: -2;
  background-position: left bottom;
}
#index-body .init-4 .list a.img-box span {
  height: 2em;
  background-color: #e50014;
  color: white;
  padding: 0 1em;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  text-transform: uppercase;
}
#index-body .init-4 .list a.link {
  height: 2.55555556em;
  padding: 0px 1em;
  background-color: #eee;
  color: #818181;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .list a.link:hover {
  background-color: black;
  color: white;
}
#index-body .init-5 {
  color: white;
}
#index-body .init-5 .container {
  max-width: 1310px;
}
#index-body .init-5 .form input {
  width: 100%;
  border: none;
  background-color: transparent;
}
#index-body .init-5 .form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#index-body .init-5 .form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#index-body .init-5 .form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#index-body .init-5 .form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#index-body .init-5 .form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#index-body .init-5 .form button {
  width: 3.77777778em;
  border: none;
  background-color: transparent;
}
#index-body .init-5 .form label {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  height: 2.55555556em;
}
#index-body .init-6 {
  background-repeat: no-repeat;
  background-size: 37.91666667% auto;
  background-position: left bottom 30%;
}
#index-body .init-6 .container {
  max-width: 1310px;
}
#index-body .init-6 .list a.img-box {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  max-height: 6em;
}
#index-body .init-6 .list .slick-active a.img-box {
  max-height: 5em;
}
#index-body .init-6 .list .slick-current a.img-box {
  max-height: 6em;
}
#index-body .init-6 .list .content {
  padding-left: 3.22222222em;
}
#index-body .init-6 .list .content:before {
  content: '';
  width: 2.66666667em;
  height: 2px;
  background-color: #ccc;
  position: absolute;
  left: 0;
  top: .5em;
}
#index-body .init-6 .list .content time {
  line-height: 1;
  color: #818181;
}
#index-body .init-6 .list .slickDots {
  font-size: 12px;
}
#index-body .init-6 .list .slickDots li {
  border: none;
  background-color: #ccc;
}
#index-body .init-6 .list .slickDots li.slick-active {
  background-color: black;
}
#footer {
  background-color: #0a0f18;
  color: white;
  position: relative;
}
#footer .ui.container {
  width: auto;
  max-width: 1550px;
}
#footer .slide:first-child {
  margin-right: 5%;
}
#footer hr {
  width: 200px;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.66);
  position: relative;
  overflow: unset;
  margin-left: 0;
  margin-right: auto;
}
#footer hr:before {
  content: '';
  max-width: 30px;
  width: 10%;
  height: 3px;
  position: absolute;
  left: 0;
  top: -1px;
  background-color: white;
}
#footer .info {
  max-width: 365px;
}
#footer .nav {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
#footer .nav ul ul {
  display: none;
}
#footer .nav a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .nav a:hover {
  color: white;
}
#footer #ewm {
  max-width: 170px;
  border: 4px solid white;
}
#footer .coy svg {
  max-height: 1.625em;
  width: auto;
  fill: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: block;
}
#footer .coy svg:hover {
  fill: var(--color);
}
#footer .coy a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .coy a:hover {
  color: var(--color);
}
#footer .msg {
  position: absolute;
  bottom: 1em;
  right: 5%;
  cursor: pointer;
  cursor: hand;
}
@media screen and (max-width: 1450px) {
  #index-body .init-2 {
    height: 500px;
  }
  #index-body .init-3 .list a.img-box {
    height: 560px;
  }
}
@media screen and (max-width: 1250px) {
  #footer hr {
    width: 100%;
    max-width: 200px;
  }
  #footer .slide {
    display: none;
  }
  #footer .slide:first-child {
    display: block;
  }
  #footer .info {
    max-width: none;
  }
  #footer .msg {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #banner li .content .left {
    margin-left: 0;
  }
  #index-body .init-1 .box {
    margin-left: 0;
    margin-right: 0;
  }
  #index-body .init-2 {
    height: 400px;
  }
  #index-body .init-3 .options {
    display: none;
  }
  #index-body .init-3 span.h2 {
    margin-bottom: 1.5em;
  }
  #index-body .init-3 .list a.img-box {
    background-size: cover;
    height: 450px;
  }
  #index-body .init-3 .list a.img-box .content {
    width: 70%;
    padding: 5%;
  }
  #index-body .init-6 .list a.img-box {
    max-height: none !important;
  }
  #index-body .init-6 .list .content {
    margin-top: 2em;
  }
}
@media screen and (max-width: 700px) {
  #index-body .init-1 .box .content {
    position: relative;
    width: 100%;
    padding: 0;
    background-color: unset;
  }
  #index-body .init-1 .box .content:before,
  #index-body .init-1 .box .content:after {
    display: none;
  }
  #index-body .init-1 .box {
    background-image: unset !important;
    background-color: #f8f8f8;
    padding: 5%;
  }
  #index-body .init-1 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
  }
  #index-body .init-1 .box .videoBox {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 1em;
  }
  #index-body .init-2 ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
  }
  #index-body .init-2 ul li {
    width: 100% !important;
    padding: 10% 3%;
  }
  #index-body .init-2 ul li .text {
    height: auto !important;
  }
  #index-body .init-2 {
    height: auto;
    background-color: transparent;
    padding: 15px;
  }
  #index-body .init-2 ul li.active:before {
    opacity: 1;
  }
  #index-body .init-3 .list a.img-box .content {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  #index-body .init-5 .form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
  #index-body .init-5 .form label {
    width: 100%;
  }
  #index-body .init-5 .form button img {
    max-height: 25px;
  }
  #index-body .init-3 .list a.img-box .content i img {
    max-height: 40px;
  }
  #index-body .init-3 .list a.img-box {
    height: 350px;
  }
  #index-body .init-1 .box .content span.h2 strong {
    font-size: 1.2em;
  }
  #index-body .init-1 .box .content span.tag img {
    max-height: 16px;
  }
  #banner .slickDots {
    display: none;
  }
}

.baseText {
  color: #818181;
}
.chanpinbt{
			min-height:6em;
}
.xinwenbt{
		min-height:6em;
}
@media screen and (max-width: 1000px) {
  .huhu{
    display: none!important;
  }
  .Auxil-catdes{
    display: none;
  }
  .xinwenye{
    font-size: 22px;
line-height: 40px;
  }
}
.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;
 font-size: 16px;
line-height: 30px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.hover-language ul.sub-menu li:hover a {
  background: #e50014;
  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;
}
.baseTit .Tag {
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.baseTit .Tit {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
}
.our-about {
  padding: 130px 0;
  position: relative;
  background: url(../images/about-bg.jpg) no-repeat right -60px center;
  background-size: 20% auto;
}
.our-about .mask {
  position: absolute;
  right: 0;
  top: -70px;
  overflow: hidden;
  font-size: 15.29vw;
  color: #eb000b;
  
  transform: rotate(-20deg);
  transform-origin: left;
}
.our-about .mask > div {
  margin-right: -15px;
}
.our-about .box {
  margin-top: 55px;
  position: relative;
}
.our-about .box .info {
  position: absolute;
  width: 56%;
  left: 44%;
  bottom: 0;
  color: white;
  background-color: black;
  padding: 30px 80px;
}
.our-about .box .info ul {
  margin: -15px;
}
.our-about .box .info li {
  padding: 15px;
}
.our-about .box .info li:first-of-type {
  width: 50%;
}
.our-about .box .info .num {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 600;
}
.our-about .box .info .name {
  font-weight: 500;
}
.our-about .left {
  width: 55%;
}
.our-about .right {
  width: 45%;
  padding: 0 3.5%;
  margin-top: 60px;
}
.our-about .right .text {
  color: #818181;
  margin-bottom: 40px;
}
.our-about .rz {
  width: 80%;
  text-align: center;
}
.baseBtn {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  font-weight: 500;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.baseBtn.on,
.baseBtn:hover {
  color: #e50014;
}
.i-category li .num {
  top: 5%;
  left: 5%;
  width: 90%;
  font-weight: 600;
  color: white;
}
.i-category li .content {
  bottom: 5%;
  left: 5%;
  width: 90%;
  -webkit-transition: padding-bottom 0.5s ease;
  -moz-transition: padding-bottom 0.5s ease;
  transition: padding-bottom 0.5s ease;
}
.i-category li .content .name {
  font-weight: 600;
  color: white;
}
.i-category li .content .desc {
  color: white;
}
.i-category li .content .arrow {
  left: 0;
  bottom: 0;
  opacity: 1;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
/*.i-category li:hover .content {
  padding-bottom: 40px;
}*/
.i-category li:hover .content .arrow {
  opacity: 1;
}

.i-category li .content .text {
  transition: height 600ms ease-in-out, opacity .8s ease-in-out;
}

.i-category li > div:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: .6s ease;
  pointer-events: none;
}

.i-category li:hover > div:before {
  opacity: 1;
}

.i-advantage {
  position: relative;
  padding: 130px 0 80px;
}
.i-advantage .mask {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 5vw;
  line-height: 1;
  color: #ea010c;
  
  transform: rotate(-15deg);
  transform-origin: left;
}
.i-advantage .left {
  width: 55%;
}
.i-advantage .left .img {
  margin-top: 90px;
}
.i-advantage .right {
  width: 38%;
}
.i-advantage .right .img {
  margin-bottom: 40px;
}
.i-advantage .right .text {
  color: #818181;
  margin-bottom: 30px;
}
.our-product {
  padding: 70px 0 100px;
}
.our-product .list {
  margin-top: 55px;
}
.our-product .list ul {
  margin: -14px;
}
.our-product .list li {
  padding: 14px;
}
.our-product .list li .box {
  padding: 14px;
  border: 1px solid #dcdcdc;
}
.our-product .list li .box .img {
  margin-bottom: 20px;
}
.our-product .list li .box .img span {
  left: 0;
  top: 0;
  font-weight: 500;
  color: white;
  background-color: #e50014;
  border-radius: 3px;
  padding: 5px 12px;
  pointer-events: none;
  z-index: 1;
}
.our-product .list li .box .name {
  margin-bottom: 20px;
  font-weight: 500;
  min-height: 3.8em;
}
.our-product .list li .box .moreBtn {
  height: 45px;
  line-height: 45px;
  display: block;
  color: #818181;
  background-color: #eeeeee;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .list li .box .moreBtn:hover {
  color: white;
  background-color: black;
}
.i-contact {
  background: url(../images/contact-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0 170px;
  color: white;
}
.i-contact .form {
  position: relative;
  margin-top: 80px;
}
.i-contact .form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.i-contact .form form input {
  font-size: 18px;
  font-weight: 500;
  width: 48%;
  height: 40px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  opacity: .6;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.i-contact .form form input:focus {
  opacity: 1;
}
.i-contact .form form input::-webkit-input-placeholder {
  color: white;
}
.i-contact .form form input:-moz-placeholder {
  color: white;
}
.i-contact .form form input::-moz-placeholder {
  color: white;
}
.i-contact .form form input:-ms-input-placeholder {
  color: white;
}
.i-contact .form form input::placeholder {
  color: white;
}
.i-contact .form form input[name="content"] {
  padding-right: 70px;
}
.i-contact .form form input[type="submit"] {
  width: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  background-image: url(../images/send-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  border: none;
}
.our-service {
  padding: 100px 0 70px;
}
.our-service .baseTit {
  margin-bottom: 80px;
}
.our-service .right {
  width: 56%;
}
.our-service .right ul {
  margin: -25px;
}
.our-service .right li {
  padding: 25px;
}
.our-service .right li .icon {
  height: 75px;
}
.our-service .right li .icon img {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-service .right li .name {
  font-weight: 600;
}
.our-service .right li .text {
  color: #818181;
}
.our-service .right li:hover .icon img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.our-service .moreBtn {
  display: inline-block;
  padding: 15px 20px;
  color: white;
  background-color: #e50014;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-service .moreBtn:hover {
  background-color: black;
}
.our-partner .list {
  border-top: 1px solid #cccccc;
}
.our-partner li {
  padding: 50px 30px;
}
.our-partner .slick-track {
  display: flex;
  align-items: center;
}
.our-news {
  padding: 120px 0 80px;
}
.our-news .list {
  margin-top: 80px;
}
.our-news .list ul {
  margin: -12px;
}
.our-news .list li {
  padding: 12px;
}
.our-news .list li .content {
  padding: 20px 0 20px 55px;
  background-color: white;
  -webkit-transform: translateY(-78px);
  -moz-transform: translateY(-78px);
  -ms-transform: translateY(-78px);
  transform: translateY(-78px);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-news .list li .content .date {
  color: #818181;
  position: relative;
}
.our-news .list li .content .date::before {
  content: "";
  position: absolute;
  left: -55px;
  top: 13px;
  width: 47px;
  border-bottom: 2px solid #cccccc;
}
.our-news .list li .content .name {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 600;
}
.our-news .list .slick-center li .content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.our-news .dots ul {
  margin-top: 50px;
}
.our-news .dots li {
  margin: 0  7px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cccccc;
}
.our-news .dots li.slick-active {
  background-color: black;
}
.our-news .dots li button {
  display: none;
}
.i-other .img {
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.i-other .content {
  top: 32%;
  left: 5%;
  width: 90%;
  text-align: center;
  color: white;
}
.i-other .Tit {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}
.i-other .moreBtn {
  display: inline-block;
  border: 2px solid white;
  padding: 10px 35px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-other .moreBtn:hover {
  border-color: #e50014;
  background-color: #e50014;
}
@media (max-width: 1300px) {
  .baseTit .Tit {
    font-size: 40px;
  }
  .our-about .right {
    margin-top: 0;
  }
  .our-about .right .text {
    margin-bottom: 20px;
  }
  .our-about .box .info .num {
    font-size: 30px;
  }
  .our-about .box .info {
    padding: 30px 60px;
  }
  .i-category li .content .name {
    font-size: 24px;
    line-height: 44px;
  }
  .our-service .right li .name {
    font-size: 20px;
  }
  .our-service .right ul {
    margin: -15px;
  }
  .our-service .right li {
    padding: 15px;
  }
  .our-partner .list {
    padding: 25px 0;
  }
  .our-partner li {
    padding: 25px;
  }
  .our-news .list li .content .name {
    font-size: 20px;
  }
  .our-news .list li .content .date::before {
    top: 11px;
  }
  .i-other .img {
    height: 400px;
  }
  .i-other .Tit {
    font-size: 30px;
  }
}
.shouye h1{
  display: inline;
}
#seo_from h4{
  line-height:32px!important;
}
#seo_from form ul li label{
  line-height: 28px!important;
}
#seo_from form ul li input, #seo_from form ul li textarea{
  line-height: 44px!important;
}

@media (max-width: 1000px) {
  .i-category li .content .text {
    height: auto!important;
    opacity: 1!important;
  }
  .our-about {
    padding: 90px 0;
  }
  .baseTit .Tit {
    font-size: 30px;
    line-height: 1.4;
  }
  .baseTit .Tag {
    font-size: 16px;
  }
  .our-about .left {
    width: 100%;
  }
  .our-about .right {
    width: 100%;
  }
  .our-about .box {
    margin-top: 40px;
  }
  .our-about .box .info {
    position: static;
    width: 100%;
    text-align: center;
  }
  .our-about .box .info ul {
    font-size: 0;
  }
  .our-about .box .info li {
    float: none;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .our-about .box .info .num {
    font-size: 36px;
  }
  .our-about .box .info .name {
    font-size: 16px;
  }
  .our-about .rz {
    display: none;
  }
  .our-about .right {
    padding: 0;
    margin-top: 20px;
  }
  .i-advantage {
    padding: 90px 0 40px;
  }
  .i-advantage .left {
    width: 100%;
  }
  .i-advantage .left .img {
    margin-top: 40px;
  }
  .i-advantage .right {
    width: 100%;
    margin-top: 40px;
  }
  .i-advantage .right .img {
    display: none;
  }
  .our-product .list li .box .name {
    font-size: 16px;
    line-height: 30px;
  }
  .i-contact {
    padding: 90px 0;
  }
  .i-contact .form {
    margin-top: 40px;
  }
  .i-contact .form form input {
    font-size: 16px;
    line-height: 30px;
  }
  .our-service {
    padding: 90px 0;
  }
  .our-service .left {
    width: 100%;
  }
  .our-service .right {
    width: 100%;
    margin-top: 40px;
  }
  .our-service .baseTit {
    margin-bottom: 40px;
  }
  .our-news {
    padding: 90px 0;
  }
  .our-news .list {
    margin-top: 40px;
  }
  .our-news .list li .content {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .i-other li {
    width: 100%!important;
  }
}
@media (max-width: 768px) {
  .our-about .mask {
    display: none;
  }
  .our-about {
    padding: 60px 0;
  }
  .baseTit .Tit {
    font-size: 24px;
    line-height: 44px;
  }
  .our-about .box .info {
    padding: 40px;
  }
  .i-advantage {
    padding: 60px 0 0;
  }
  .i-advantage .mask {
    display: none;
  }
  .our-product {
    padding: 60px 0;
  }
  .our-service {
    padding: 60px 0;
  }
  .our-news {
    padding: 60px 0;
  }
  .our-news .list li .content .name {
    font-size: 18px;
    line-height: 32px;
    min-height: 5.4em;
  }
  .i-other .Tit {
    font-size: 24px;
  }
}
@media (max-width: 700px) {
  .baseTit .Tag {
    font-size: 14px;
    line-height: 28px;
  }
  .our-about .box .info {
    padding: 30px 15px;
  }
  .our-about .box .info .num {
    font-size: 30px;
  }
  .our-about .box .info .name {
font-size: 14px;
line-height: 28px;
  }
  .i-contact {
    padding: 60px 0;
  }
  .i-contact .form form {
    display: block;
  }
  .i-contact .form form input {
    width: 100%;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 28px;
  }
  .i-contact .form form input[type="submit"] {
    margin-bottom: 0;
    position: static;
    margin: auto;
    display: block;
  }
  .our-service {
    display: none;
  }
  .our-partner {
    display: none;
  }
  .our-news .list li .content .date::before {
    display: none;
  }
  .our-news .list li .content {
    padding: 20px 0;
  }
  .i-other {
    display: none;
  }
}
@media (max-width: 500px) {
  .i-category li {
    padding: 15px;
  }
  .our-about .box .info .num {
    font-size: 24px;
    line-height: 44px;
  }
}


.faq-page .faq-1 .list ul li {
  border: 1px solid #dcdcdc;
  padding: 1.33333333em 2.3em;
}
.faq-page .faq-1 .list ul li i {
  cursor: pointer;
  cursor: hand;
  font-size: 1.2em;
  line-height: 1;
}
.faq-page .faq-1 .list ul li .text {
  line-height: 2;
}
.faq-page .faq-1 .list ul li.active {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}
.faq-page .faq-1 .list ul li.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.about-5 .more {
    background-color: #fff;
    color: #000;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: inline-block;
    font-size: 18px;
    white-space: nowrap;
    height: 55px;
    line-height: 55px;
    padding: 0 30px;
    position: relative;
    text-transform: uppercase;
}

.about-5 .more:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: translate(8px,8px);
    -moz-transform: translate(8px,8px);
    -ms-transform: translate(8px,8px);
    transform: translate(8px,8px);
    z-index: -1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.about-5 .more:hover:after {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}


.about-5  .more {
    background-color: #000;
    color: #fff;
}

.about-5  .more:after {
    border-right-color: #000;
    border-bottom-color: #000;
}

.inner-banner {
  height: 500px;
  position: relative;
}

.inner-banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.inner-banner .Tit {
  color: white;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
}

.inner-banner .mbx {
  color: white;
}

@media (max-width:1000px) {
  .inner-banner {
    height: 300px;
  }
  .inner-banner .Tit {
    font-size: 24px;
    line-height: 44px;
  }
}

.fw-600 {
  font-weight: 600;
}

.m-page {
  text-align: center;
  margin-top: 80px;
}
.m-page a,
.m-page span {
  font-size: 20px;
  color: #909090;
  padding: 0 10px;
}
.m-page span {
  color: black;
  position: relative;
  margin-right: 50px;
}
.m-page span::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: black;
}


.sideLeft {
  width: 70% !important;
}
.sideRight {
  width: 30% !important;
  padding-left: 5%;
  position: sticky;
  top: 120px;
}
.sideRight form {
  width: 100%;
  position: relative;
  margin-bottom: 80px;
}
.sideRight form input {
  width: 100%;
  background-color: transparent;
  border: none;
  font-size: 16px;
  line-height: 30px;
  border-bottom: 2px solid black;
  height: 40px;
}
.sideRight form input[type="submit"] {
  position: absolute;
  right: 0;
  height: 100%;
  width: 40px;
  background: url(../images/search.png) no-repeat center;
}
.sideRight h5 {
  font-size: 20px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}
.sideRight .category {
  margin-bottom: 50px;
}
.sideRight .category ul li {
  font-size: 20px;
    line-height: 36px;
  color: #909090;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding: 10px 0;
  position: relative;
}
.sideRight .category ul li .fa{
  position: absolute;
  right: 0;
  top: 15px;
}
.sideRight .category ul li ul li{
  font-size: 16px;
  /*padding-left: 35px;*/
}
.sideRight .category ul li.active,
.sideRight .category ul li:hover {
  color: black;
}
.sideRight .like-pro ul {
  margin-bottom: 60px;
}
.sideRight .like-pro ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}
.sideRight .like-pro ul li:last-child{
  border-bottom: none;
}
.sideRight .like-pro ul li .img-box {
  width: 47%;
  border: 1px solid #dcdcdc;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.sideRight .like-pro.news ul li .img-box{
  border: none;
  width: 36%;
}
.sideRight .like-pro.news ul li .txt{
  width: 64%;
}
.sideRight .like-pro ul li:hover .img-box{
  border-color: black;
}
.sideRight .like-pro ul li p {
  width: 53%;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  padding-left: 20px;
}
.sideRight .share {
  margin-bottom: 80px;
}
.sideRight .share a {
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  border: 1px solid #eee;
  margin-right: 7px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.sideRight .share a:hover {
  background: #222;
  color: white;
}
.sideRight .imgbox {
  position: relative;
  background: url(../images/side-bg.jpg) no-repeat;
  background-size: cover;
  height: 365px;
}
.sideRight .imgbox img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.m-link {
  font-size: 18px;
  line-height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.m-link img {
  vertical-align: baseline;
}
.news-page {
  padding: 120px 0;
}
.news-page .sideLeft ul li {
  padding: 55px 0;
  border-bottom: 1px solid #eee;
}
.news-page .sideLeft ul li .img-box {
  position: relative;
  width: 50%;
  padding-right: 40px;
  vertical-align: middle;
}
.news-page .sideLeft ul li .img-box a {
  overflow: hidden;
}
.news-page .sideLeft ul li .img-box span {
  position: absolute;
  left: 15px;
  top: 15px;
  color: white;
  background: #e50014;
  border-radius: 3px;
  font-size: 16px;
  padding: 7px 15px;
}
.news-page .sideLeft ul li .content {
  width: 50%;
  vertical-align: middle;
}
.news-page .sideLeft ul li .content .time {
  font-size: 16px;
  line-height: 30px;
  color: #818181;
}
.news-page .sideLeft ul li .content h5 {
  font-size: 28px;
  line-height: 1.6;
  font-weight: 600;
  margin-top: 13px;
  transition: .5s ease;
}
.news-page .sideLeft ul li .content h5:hover {
  color: #e50014;
}
.news-page .sideLeft ul li .content .des {
  font-size: 18px;
  line-height: 32px;
  color: #818181;
  margin: 17px 0  45px;
}
.news-page .sideLeft ul li .content .mores {
  font-size: 18px;
  font-weight: 600;
}
.news-page .sideLeft ul li .content .mores img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  vertical-align: baseline;
  margin-left: 8px;
}
.news-page .sideLeft ul li .content .mores:hover img {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.news-page .sideLeft ul li:first-child {
  padding-top: 0;
}
.news-page .sideRight .like-pro ul li p {
  width: 100%;
}
.news-page .sideRight .like-pro ul li .time {
  color: #909090;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
}
.newdet-page .sideLeft .time {
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  color: #909090;
  margin: 20px 0 35px;
}
.newdet-page .sideLeft .content {
  margin-bottom: 120px;
}
.newdet-page .sideLeft .form {
  margin-top: 100px;
}
.newdet-page .sideLeft .form .title{
  font-weight: 600;
  line-height: 1.6;
}
.newdet-page .sideLeft .form p {
  font-size: 18px;
  line-height: 32px;
  color: #909099;
  margin: 10px 0 35px;
}
.newdet-page .sideLeft .form form ul {
  margin: -10px;
}
.newdet-page .sideLeft .form form ul li {
  padding: 10px;
  border: none;
  margin-bottom: 12px;
}
.newdet-page .sideLeft .form form ul li span {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.newdet-page .sideLeft .form form ul li input,
.newdet-page .sideLeft .form form ul li textarea {
  height: 55px;
  font-weight: 500;
  padding: 0 15px;
  width: 100%;
  border: 1px solid #bfbfbf;
  font-size: 16px;
}
.newdet-page .sideLeft .form form ul li textarea {
  height: 220px;
  padding: 15px;
}
.newdet-page .sideLeft .form form ul li button {
  border: none;
}
.newdet-page .sideLeft .form form ul li.w-100 {
  width: 100%;
}

.newdet-page .sideLeft .form form ul li input[type="submit"] {
  color: white;
  background-color: #e50014;
  transition: .5s ease;
}

.newdet-page .sideLeft .form form ul li input[type="submit"]:hover {
  background-color: black;
}

.contact-page {
  padding: 120px 0;
}
.contact-page .left {
  width: 55% !important;
  padding-right: 50px;
}
.contact-page .title {
  font-weight: 600;
  margin-bottom: 40px;
}
.contact-page .left form {
  max-width: 100% !important;
}
.contact-page .contact ul {
  margin-right: -12px;
}
.contact-page .contact ul li {
  padding-right: 12px;
  padding-left: 50px;
  position: relative;
  font-size: 18px;
  line-height: 44px;
  color: #818181;
  margin-bottom: 40px;
}
.contact-page .contact ul li.w-50 {
  width: 50%;
}
.contact-page .contact ul li.w-100 {
  width: 100%;
}
.contact-page .contact ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
}
.contact-page .contact ul li:nth-child(1)::after {
  background: url(../images/phone-icon.png) no-repeat left center;
}
.contact-page .contact ul li:nth-child(2)::after {
  background: url(../images/email-icon.png) no-repeat left center;
}
.contact-page .contact ul li:nth-child(3)::after {
  background: url(../images/add-icon.png) no-repeat left center;
}
.contact-page .right {
  width: 45% !important;
}



.gallery-page{
  padding: 120px 0;
}
.gallery-page ul{
  margin: -15px;
}
.gallery-page ul li{
  padding: 15px;
  text-align: center;
}
.gallery-page ul li h5{
  font-size: 20px;
  line-height: 36px;
  text-transform: capitalize;
  margin-top: 15px;
  font-weight: 600;
}
@media screen and (max-width: 1600px) {
  .sideRight {
    padding-left: 65px;
  }
}
@media screen and (max-width: 1400px) {
  .sideRight {
    padding-left: 40px;
  }
}



@media screen and (max-width: 1300px) {
  .contact-page .contact ul li {
    width: 50%!important;
  }
  .contact-page .contact ul li.w-50 {
    width: 100%!important;
  }
}
@media screen and (max-width: 1200px) {
  .sideRight .like-pro ul li p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .sideLeft {
    width: 100% !important;
  }
  .sideRight {
    display: none !important;
  }

  .contact-page .left {
    width: 100% !important;
    padding-right: 0;
  }
  .contact-page .right {
    width: 100% !important;
  }
}
@media screen and (max-width: 700px) {
  .font-28 {
    font-size: 20px;
    line-height: 36px;
  }


  .news-page .sideLeft ul li .content h5 {
    font-size: 22px;
    line-height: 40px;
  }
}
@media screen and (max-width: 500px) {
  .news-page .sideLeft ul li .img-box {
    width: 100%;
    padding-right: 0;
  }
  .news-page .sideLeft ul li .content {
    width: 100%;
    margin-top: 20px;
  }

  .contact-page .contact ul li {
    width: 100%!important;
  }
}

.prodet-page .prodet-2 form {
    margin: auto;
    font-size: 16px;
}

.prodet-page .prodet-2 form ul {
    margin: -10px;
}

.prodet-page .prodet-2 form ul li {
    padding: 10px;
}

.prodet-page .prodet-2 form ul li p {
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}

.prodet-page .prodet-2 form ul li input,.prodet-page .prodet-2 form ul li textarea {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    padding: 0 15px;
    height: 54px;
    border: 1px solid #dcdcdc;
}

.prodet-page .prodet-2 form ul li input[type="submit"] {
  color: white;
  background-color: #000;
  transition: .5s ease;
}

.prodet-page .prodet-2 form ul li input[type="submit"]:hover {
  background-color: #eee;
  color: #000;
}

.prodet-page .prodet-2 form ul li.w-100 {
    width: 100%;
}

.prodet-page .prodet-2 form ul li.w-100 textarea {
    padding: 15px;
    height: 200px;
}





.product2-1 {
  padding: 120px 0;
  background-color: #f5f5f5;
}
.product2-1 .left .text {
  max-height: 14.4em;
  overflow-y: auto;
}
/*
.product2-1 .right {
  height: 500px;
}*/
.product2-1 .right > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product2-2 {
  background-color: #fff;
  padding: 100px 0 130px;
}
.product2-2 .pro-search input {
  padding: 0 25px;
  font-size: 16px;
  float: left;
  width: -webkit-calc(100% - 58px);
  width: -moz-calc(100% - 58px);
  width: calc(100% - 58px);
  height: 58px;
  border: none;
  background-color: #f5f5f5;
}
.product2-2 .pro-search button {
  float: right;
  width: 58px;
  height: 58px;
  border: none;
  background-color: black;
}

.product2-2 .list ul {
  display: flex;
  flex-wrap: wrap;
}

.product2-2 .list li:not(:last-child) {
  margin-bottom: 0;
}
.product2-2 .list .box2 {
  height: 100%;
  background-color: #FFFFFF;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #dcdcdc;
}
.product2-2 .list .box2 .img2 {
  width: 30%;
  padding: 30px 0;
}
.product2-2 .list .box2 .text {
  /*padding-left: 30%;*/
  width: 70%;
  align-self: center;
}
.product2-2 .list .box2 .text > div {
  padding: 30px;
}
.product2-2 .list .box2 .text .size {
  color: #777777;
}
.product2-2 .list .box2 .text .size span {
  color: var(--color1);
}

@media (max-width: 1024px) {
  .product2-1 {
    padding: 60px 0;
  }
  .product2-1 .left {
    width: 100%!important;
  }
  .product2-1 .right {
    width: 100%!important;
    padding: 0;
    text-align: left;
    margin-top: 40px;
  }
  .product2-2 {
    padding: 60px 0;
  }
  .product2-2 .fr {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }

  .product2-2 .list li {
    width: 100%!important;
  } 
}
@media (max-width: 768px) {
  .product2-2 .list .box2 {
    display: block;
  }
  .product2-2 .list .box2 .img2 {
    float: none;
    width: 100%;
  }
  .product2-2 .list .box2 .text {
    padding-left: 0;
    width: 100%;
  }
  .product2-2 .list .box2 .text > div {
    padding: 15px;
  }
}



.quality-1 {
  padding: 120px 0;
}
.quality-1 .left {
  margin-top: 80px;
}
.quality-1 .left .text {
  margin: 20px 0 50px;
    color: #818181;
}
.quality-1 .right .img {
  margin-bottom: 100px;
}
.quality-1 .right 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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.quality-1 .right li {
  width: auto;
}
.quality-1 .right li.line {
  height: 72px;
  border-left: 1px solid #bcbcbc;
}

.quality-1 .right li .icon i {
  float: left;
}
.quality-1 .right li .num {
  font-size: 60px;
  line-height: 1.2;
}
.quality-1 .right li .num span {
  font-size: 30px;
}
.quality-2 {
  padding: 70px 0;
}
.quality-2 .desc {
  max-width: 950px;
  margin: auto;
  color: #818181;
}
.quality-2 .list ul {
  margin: -15px;
}
.quality-2 .list li {
  padding: 15px;
}
.quality-2 .list .img {
  overflow: hidden;
}
.quality-2 .list .img .name {
  padding: 10px;
  width: 100%;
  left: 0;
  bottom: 0;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.quality-2 .list .img:hover .name {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.quality-2 .arrows span.arrow {
  display: inline-block;
  width: 43px;
  height: 43px;
  line-height: 41px;
  text-align: center;
  color: #c7c7c7;
  font-size: 16px;
  border: 1px solid currentcolor;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.quality-2 .arrows span.arrow:hover {
  color: var(--color1);
}
.quality-3 {
  padding: 70px 0;
}

.quality-3 .left .arrows {
  margin-top: 30px;
  margin-right: 0;
  position: relative;
}
.quality-3 .left .arrows span.arrow {
  display: inline-block;
  width: 43px;
  height: 43px;
  line-height: 41px;
  text-align: center;
  color: #c7c7c7;
  font-size: 16px;
  border: 1px solid currentcolor;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.quality-3 .left .arrows span.arrow:hover {
  color: var(--color1);
}
.quality-3 .right {
  margin-top: 0px;
}

.quality-page .honor-1 p.fr {
  width: 50%;
  color: #777777;
  padding-top: 19px;
}
@media (max-width: 1470px) {
  .quality-3 .left .content {
    padding: 60px;
  }
  .quality-3 .right {
    margin-top: 60px;
  }
}
@media (max-width: 1240px) {
  .quality-1 .right li .num {
    font-size: 40px;
  }
  .quality-1 .right li .num span {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .quality-1 {
    padding: 60px 0;
  }
  .quality-1 .left {
    width: 100%!important;
    margin: 0;
    padding: 0;
  }
  .quality-1 .left .text {
    margin: 20px 0 40px;
  }
  .quality-1 .right {
    width: 100%!important;
    margin: 0;
    padding: 0;
  }
  .quality-1 .img {
    display: none;
  }
  .quality-2 {
    padding: 35px 0;
  }
  .quality-3 {
    padding: 35px 0;
  }
  .quality-3 .left {
    width: 100%!important;
  }
  .quality-3 .left .arrows {
    display: none;
  }
  .quality-3 .right {
    width: 100%!important;
    margin-top: 0;
  }
  .quality-3 .left .content::before {
    right: 0;
  }
  .quality-3 .left .content {
    padding: 30px;
  }

  .quality-page .honor-1 p.fr {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .quality-1 .right li .num {
    font-size: 36px;
  }
}





.innovation-2 {
  padding: 120px 0;
}
.innovation-2 .box {
  background: url(../images/innovation-1-bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  padding: 110px 75px 150px;
}
.innovation-2 .box .left {
  max-width: 700px;
  line-height: 1.8;
}

@media (max-width: 1240px) {
  .innovation-2 .box {
    padding: 100px 50px;
  }
}

@media (max-width: 1024px) {
  .innovation-2 {
    padding: 60px 0;
  }
  .innovation-2 .box {
    padding: 60px 25px;
  }
}





.lab-2 {
  padding: 100px 0;
}
.lab-2 .box {
  padding: 80px 15px 70px;
  background-color: #f5f5f5;
}
.lab-2 .Tit {
  color: var(--color1);
}
.lab-2 .text {
  max-width: 800px;
  margin: 30px auto 60px;
}
.lab-2 .rz {
  width: 80%;
  margin: auto;
}

.lab-2 .rz .slick-track {
  display: flex;
  align-items: center;
}

.lab-2 .rz ul {
  margin: 15px
}

.lab-2 .rz li {
  padding: 15px;
}

.lab-3 ul {
  margin: -15px -5px;
}

.lab-3 ul li {
  padding: 15px 10px;
}
.lab-3 ul li .name {
  font-weight: 500;
  min-height: 4em;
}

.lab-5 {
  padding: 100px 0 200px;
  background-color: #f5f5f5;
}
.lab-5 .left .images {
  position: relative;
  margin-right: 66px;
}
.lab-5 .left .images .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #000000;
  transition: .5s ease;
}
.lab-5 .left .images .img img {
  opacity: .3;
  transition: .5s ease;
}
.lab-5 .left .images .img.img_2 {
  left: 33px;
  top: 33px;
  z-index: 2;  
}
.lab-5 .left .images .img.img_2 img {
  opacity: .6;
}
.lab-5 .left .images .img.img_1 {
  left: 66px;
  top: 66px;
  z-index: 3;
}
.lab-5 .left .images .img.img_1 img {
  opacity: 1;
}

.lab-5 .right ul {
  margin-top: 40px;
}
.lab-5 .right li {
  cursor: pointer;
  padding-bottom: 20px;
}
.lab-5 .right li:not(:last-child) {
  margin-bottom: 30px;
  border-bottom: 1px solid #c7c7c7;
}
.lab-5 .right li .name {
  margin: 10px 0;
  font-weight: bold;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.lab-5 .right li .text {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #c7c7c7;
  display: none;
}
.lab-5 .right li .text p {
  min-height: 4.5em;
  color: #818181;
}
.lab-5 .right li.active .name {
  color: var(--color1);
}

@media (max-width: 1240px) {
  .lab-5 .left {
    padding: 0;
  }
  .lab-5 .right {
    margin-top: 0;
  }
  .lab-5 .right ul {
    margin-top: 40px;
  }
}

@media (max-width: 1024px) {
  .lab-2 {
    padding-top: 60px;
  }

  .lab-5 {
    padding: 60px 0;
  }
  .lab-5 .left {
    display: none;
  }
  .lab-5 .right {
    width: 100%!important;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .lab-2 .box {
    padding: 60px 15px;
  }
  .lab-2 .text {
    margin: 30px auto;
  }
  .lab-2 .rz {
    width: 100%;
  }

  .lab-5 .right li .name {
    margin: 10px 0;
  }
  .lab-5 .right li {
    padding-bottom: 10px;
  }
  .lab-5 .right li:not(:last-child) {
    margin-bottom: 20px;
  }
}









.cus-page .cus-1 {
  padding: 120px 0 60px;
}
.cus-page .cus-1 .cusBtn {
  display: inline-block;
  padding: 15px 30px;
  color: white;
  background-color: #e50014;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.cus-page .cus-1 .cusBtn:hover {
  background-color: black;
}
.cus-page .cus-1 .box {
  margin: -25px;
}
.cus-page .cus-1 .left {
  padding: 25px;
}
.cus-page .cus-1 .right {
  padding: 25px;
}
.cus-page .cus-1 .right .info {
  margin-top: 30px;
}
.cus-page .cus-1 .right .info li {
  overflow: hidden;
}
.cus-page .cus-1 .right .info .name {
  line-height: 60px;
  overflow: hidden;
  margin: 15px 0;
}
.cus-page .cus-1 .right .info .name .icon {
  font-size: 0;
}
.cus-page .cus-1 .right .info .name .icon img {
  vertical-align: middle;
}
.cus-page .cus-1 .right .info .name .p {
  padding-left: 60px;
  padding-right: 25px;
  line-height: 30px;
  margin-top: 14px;
}
.cus-page .cus-1 .right .info .name i {
  float: right;
  margin-top: 18px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.cus-page .cus-1 .right .info .name.active i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cus-page .cus-1 .right .info .content {
  background-color: #f5f5f5;
  padding: 25px;
}
.cus-page .cus-1 .right .baseText em{
  color: #ff2a2a;
    margin-right: 10px;
    font-size: 20px;
    font-weight: 600;
}
.cus-page .cus-1 .list {
  margin-top: 120px;
}
.cus-page .cus-1 .list ul {
  margin: -10px;
  display: flex;
  flex-wrap: wrap;
}
.cus-page .cus-1 .list li {
  padding: 10px;
}
.cus-page .cus-1 .list li > div {
  height: 100%;
}
.cus-page .cus-1 .list li > div .content {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background-color: #f5f5f5;
  padding: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.cus-page .cus-1 .list li > div:hover .content {
  opacity: 1;
}

@media (max-width: 1300px) {
  .cus-page .cus-1 .list li {
    width: 33.33%;
  }
}

@media (max-width: 1024px) {
  .cus-page .cus-1 {
    padding: 60px 0;
  }
  .cus-page .cus-1 .box {
    margin: -15px;
  }
  .cus-page .cus-1 .left {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
  .cus-page .cus-1 .right {
    width: 100%;
    padding: 15px;
  }
  .cus-page .cus-1 .list {
    margin-top: 40px;
  }
}
@media (max-width: 700px) {
  .cus-page .cus-1 .list li {
    width: 50%;
  }

  .cus-page .cus-1 .list li > div .content {
    opacity: 1;
  }
}

@media (max-width: 500px) {
  .cus-page .cus-1 .list li {
    width: 100%;
  }

  .support-1 .list li {
    width: 100%!important;
  }
  .support-1 .list .box .text {
    height: auto !important;
  }
}



.support-1 {
  padding: 100px 0 60px;
  overflow: hidden;
}
.support-1 .desc {
  max-width: 1200px;
  margin: auto;
}
.support-1 .list ul {
  margin-right: -35px;
}
.support-1 .list li {
  padding-right: 35px;
  margin-bottom: 35px;
}
.support-1 .list li .img img {
  width: 100%;
}
.support-1 .list .box {
  position: relative;
  overflow: hidden;
}
.support-1 .list .box .text {
  background-color: #f5f5f5;
  padding: 0 20px 40px;
  height: 333px;
}
.support-1 .list .box .text i {
  position: relative;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  background-color: #fff;
  margin: -50px auto 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.support-1 .list .box .text i img {
  vertical-align: middle;
}
.support-1 .list .box .text p {
  color: #818181;
}


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





.custom-page .init-4 {
  padding: 80px 0 120px;
}
.custom-page .init-4 .container .tips_title em {
    display: block;
    font-weight: 700;
}

.custom-page .init-4 .container .form form {
    position: relative;
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.custom-page .init-4 .container .form form input,.custom-page .init-4 .container .form form textarea {
    margin-top: 14px;
    line-height: 28px;
    font-size: 14px;
    padding: 13px 16px;
    width: -webkit-calc(40%);
    width: -moz-calc(40%);
    width: calc(50% - 10px);
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid #2a2a2d;
}

.custom-page .init-4 .container .form form .file_input {
    margin-top: 14px;
    height: 48px;
    width: -webkit-calc(40%);
    width: -moz-calc(40%);
    width: calc(50% - 10px);
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #2a2a2d;
    padding: 13px 16px;
    background-color: #ffffff;
    font-size: 14px;
}

.custom-page .init-4 .container .form form .file_input input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    margin-top: 0;
    cursor: pointer;
}

.custom-page .init-4 .container .form form .file_input span {
    width: 100%;
    display: block;
    padding-right: 50px;
}

.custom-page .init-4 .container .form form .file_input img {
    cursor: pointer;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 10px;
    right: 20px;
}

.custom-page .init-4 .container .form form .content {
    width: 100%;
}

.custom-page .init-4 .container .form form .tips {
    color: #bebebe;
    position: absolute;
    bottom: 13px;
    left: 0;
}

.custom-page .init-4 .container .form form .submit_btn {
    width: 220px;
    text-align: center;
    padding: 14px;
    font-size: 18px;
    margin-top: 14px;
    font-weight: 500;
    background-color: #e50014;
    border: #e50014 solid 1px;
    color: #fff;
    cursor: pointer;
    margin-left: auto;
    transition: .5s;
}

.custom-page .init-4 .container .form form .submit_btn:hover {
    color: #e50014;
    background-color: #fff;
}


@media (max-width: 1000px) {
  .custom-page .init-4 .container .form form .tips {
      position: relative;
      bottom: 0;
      margin-top: 14px;
  }

  .custom-page .init-4 .container .form form .submit_btn {
      margin-top: 14px;
      margin-left: 0;
      max-width: 100%;
      width: 100%;
      display: block;
  }
}

@media (max-width: 700px) {

    .custom-page .init-4 .container .form form input,.custom-page .init-4 .container .form form textarea {
        width: 100%;
    }

    .custom-page .init-4 .container .form form .file_input {
        width: 100%;
    }
}




.sustainability-1 {
  padding: 120px 0;
}
.sustainability-1 .Tit {
  background: url(../images/sustainability-1-bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
    padding: 150px 30px;
    font-size: 40px;
}
.sustainability-1 .text {
    color: #818181;
  max-width: 1100px;
  margin: auto;
}
.sustainability-2 {
  padding: 90px 0;
  background-color: #f5f5f5;
}
.sustainability-2 .left {
  width: 60%;
  vertical-align: middle;
}
.sustainability-2 .right {
  width: 40%;
  vertical-align: middle;
}
.sustainability-3 {
  padding: 130px 0;
}
.sustainability-3 .list {
  margin-top: 70px;
}
.sustainability-3 .list li:not(:last-child) {
  margin-bottom: 80px;
}
.sustainability-3 .list li:nth-child(even) .box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.sustainability-3 .list li:nth-child(even) .box .right {
  padding-left: 0;
  padding-right: 80px;
}
.sustainability-3 .list .box {
  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;
}
.sustainability-3 .list .box .right {
  padding-left: 80px;
}
.sustainability-3 .list .box .right .text {
  color: #818181;
}
@media (max-width: 1024px) {
  .sustainability-1 {
    padding: 60px 0;
  }
  .sustainability-1 .Tit {
    padding: 90px 30px;
  }
  .sustainability-2 {
    padding: 60px 0;
  }
  .sustainability-2 .left {
    width: 100%;
  }
  .sustainability-2 .right {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
  .sustainability-3 {
    padding: 60px 0;
  }
  .sustainability-3 .list .box .right {
    padding-left: 40px;
  }
  .sustainability-3 .list li:nth-child(even) .box .right {
    padding-right: 40px;
  }
  .sustainability-3 .list li:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .sustainability-3 .list .box {
    display: block;
  }
  .sustainability-3 .list .box .left {
    width: 100%;
  }
  .sustainability-3 .list .box .right {
    width: 100%;
    padding: 0!important;
    margin-top: 40px;
  }
}






.honor-1 {
  padding: 100px 0;
}
.honor-1 ul {
  margin: -25px;
}
.honor-1 li {
  padding: 25px;
}
.honor-1 li .box {
  padding: 20px;
  height:200px;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.honor-1 li .box .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 40px;
  padding-right: 40px;
}
.honor-1 li .box .text .name {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.honor-1 li .box .text .desc {
  color: #777777;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.honor-1 li .box .arrow {
  right: 40px;
  bottom: 20px;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.honor-1 li .box:hover {
  background-color: black;
}
.honor-1 li .box:hover .text .name {
  color: #FFFFFF;
}
.honor-1 li .box:hover .text .desc {
  color: #FFFFFF;
}
.honor-1 li .box:hover .arrow {
  opacity: 1;
}


@media (max-width: 1470px) {
  .honor-1 ul {
    margin: -15px;
  }
  .honor-1 li {
    padding: 15px;
  }
}

@media (max-width: 1024px) {
  .honor-1 {
    padding: 60px 0;
  }
  .honor-1 li {
    width: 100%!important;
  }
  .honor-1 li .box .text {
    padding-left: 20px;
  }
}

@media (max-width: 500px) {
  .honor-1 li .box {
    display: block;
    text-align: center;
  }
  .honor-1 li .box .img {
    margin-bottom: 15px;
  }
  .honor-1 li .box .text {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 15px;
  }
  .honor-1 li .box .arrow {
    position: relative;
    right: auto;
    bottom: auto;
    opacity: 1;
  }
  .honor-1 li .box {
    background-color: var(--color1);
  }
  .honor-1 li .box .text .name {
    color: #FFFFFF;
  }
  .honor-1 li .box .text .desc {
    color: #FFFFFF;
  }
}



.more_cont {
  position: relative;
  background-color: #245e3e;
  color: #fff;
  overflow: hidden;
}
.more_cont span,
.more_cont img,
.more_cont div {
  position: relative;
  z-index: 2;
}
.more_cont::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}
.more_cont:hover {
  color: #245e3e;
}
.more_cont:hover::before {
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}


.factory-page .init-1 {
  padding: 120px 0;
  text-align: center;
}
.factory-page .init-1 .container .tips {
  max-width: 1010px;
  font-weight: 500;
  margin: auto;
}
.factory-page .init-1 .container .more {
  display: inline-block;
  padding: 15px 50px;
  background-color: #e50014;
  border: 1px solid #e50014;
  margin-top: 30px;
}
.factory-page .init-1 .container .more:hover {
  color: #e50014;
}
.factory-page .init-2 .container {
  width: 100%;
  padding: 0;
  max-width: 100%;
}
.factory-page .init-2 .container .list {
  padding: 40px 0 80px 0;
}
.factory-page .init-2 .container .list .tips {
  text-align: center;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.2;
}
.factory-page .init-2 .container .list img {
  width: 100%;
}
.factory-page .init-2 .container .list .img-box {
  display: block;
}
.factory-page .init-2 .container .list .big_img {
  margin-top: 50px;
  position: relative;
}
.factory-page .init-2 .container .list .big_img .btn {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  top: 50%;
  right: 20%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.factory-page .init-2 .container .list .big_img .btn img {
  display: block;
  width: 30px;
  margin: 30px auto 0;
  position: relative;
  z-index: 2;
}
.factory-page .init-2 .container .list .big_img .btn::before {
  background-color: #e50014;
}
.factory-page .init-2 .container .list .big_img .prev {
  left: 20%;
}
.factory-page .init-2 .container .list .big_img .slick li {
  padding: 0 8px;
}
.factory-page .init-2 .container .list .small_img {
  margin: 20px auto 0;
  max-width: 740px;
}
.factory-page .init-2 .container .list .small_img ul li {
  padding: 0 2px;
}
.factory-page .init-2 .container .list .small_img ul li .box {
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid #fff;
}
.factory-page .init-2 .container .list .small_img ul .slick-current li .box {
  opacity: 1;
  border: 2px solid #e50014;
}
.factory-page .init-2 .container .list .des {
  color: #818181;
  font-size: 20px;
  line-height: 36px;
  width: 800px;
  margin: 40px auto 0;
}
.factory-page .init-2 .container .list:nth-child(2n-1) {
  background-color: #f9f9f9;
}


@media (max-width: 1500px) {
  .factory-page .init-2 .container .list .big_img .btn {
    right: 10%;
  }
  .factory-page .init-2 .container .list .big_img .prev {
    left: 10%;
  }
}

@media (max-width: 1250px) {
  .factory-page .init-2 .container .list .big_img .btn {
    width: 40px;
    height: 40px;
  }
  .factory-page .init-2 .container .list .big_img .btn img {
    width: 16px;
    margin-top: 16px;
  }
}

@media (max-width: 1000px) {
  .factory-page .init-2 .container .list .small_img {
    display: none;
  }
  .factory-page .init-2 .container .list .des {
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }
}


@media (max-width: 700px) {
  .factory-page .init-2 .container .list {
    padding: 40px 10px;
  }
}

@media (max-width: 500px) {
  .factory-page .init-2 .container .list .big_img {
    margin-top: 20px;
  }
  .factory-page .init-2 .container .list .big_img .slick li {
    padding: 0;
  }
  .factory-page .init-2 .container .list .des {
    max-height: 400px;
    padding-right: 2px;
    overflow-y: auto;
    margin-top: 20px;
  }
}





/* mask */
#mask {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 999;
  display: none;
}

#mask .slick-track {
  margin-left: 0;
}

#mask .mask-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

#mask .mask-close {
  position: absolute;
  z-index: 1;
  right: 30px;
  top: 30px;
  color: #000;
  cursor: pointer;
  font-size: 18px;
}

#mask .mask-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}

#mask .mask-inner .item{
  width: 60%;
  margin: auto;
  max-height: 100%;
  overflow-y: auto;
}

#mask .mask-inner .item .box{
  padding: 40px;
  background-color: white;
  position: relative;
  box-shadow: 0 0 10px #ccc;
}

#mask .mask-inner .item .box .left{
  padding: 20px;
}
#mask .mask-inner .item .box .left ul.mask-big-slick{
  box-shadow: 0 0 10px #ccc;
}
#mask .mask-inner .item .box .right{
  padding: 20px;
}

#mask .mask-inner .item .box .right .content {
  /*max-height: 15em;*/
  overflow-y: auto;
}

#mask .mask-inner .item .box .right .content table tbody {
  min-width: auto;
}

#mask .mask-inner .item .box .right .small-slick{
  margin: -15px;
	overflow-y: auto;
	display:-webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

#mask .mask-inner .item .box .right ul.mask-small-slick .slick-current li img{
  box-shadow: 0 0 15px #ccc;
}

#mask .mask-inner .item .box .right ul.mask-small-slick li{
  padding: 15px;
}


#mask .mask-inner .item .box .right .social-links a {
  font-size: 14px;
  font-family: FontAwesome;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
  background-color: var(--color);
}
#mask .mask-inner .item .box .right .social-links a + a {
  margin-left: 15px;
}

#mask .mask-inner .item .box .right .aboutBtn {
  display: inline-block;
  padding: 15px 30px;
  color: white;
  background-color: #e50014;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}

#mask .mask-inner .item .box .right .aboutBtn:hover {
  background-color: black;
}

@media screen and (max-width: 1000px) {
  #mask .mask-inner .item {
    width: 80%;
  }

  #mask .mask-inner .item .box .right .name{
    font-size: 24px;
  }
}
@media screen and (max-width: 700px) {
  #mask .mask-close{
    right: 0;
    top: 0;
  }
  #mask .mask-inner .item .box{
    padding: 0;
  }
  #mask .mask-inner .item .box .left{
    width: 100%!important;
  }
  #mask .mask-inner .item .box .right{
    width: 100%!important;
  }
  #mask .mask-inner .item .box .right .name{
    font-size: 20px;
  }

  #mask .mask-inner .item .box .right .content{
    max-height: 9em;
  }
}


.fix-tool {
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}
.fix-tool .box .close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

@media (max-width:1000px) {
  .fix-tool {
    width: 90%;
  }
}

dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 29, 29, 0.4);
  z-index: -2;
  opacity: 0;
  padding: 0;
  border: none;
}
dialog.active {
  z-index: 22;
  opacity: 1;
}
dialog .box {
  background-color: white;
  width: 1050px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  position: relative;
}
dialog .dialogBox {
  overflow: hidden;
  width: 1390px;
}
dialog .dialogBox .img {
  position: sticky;
  top: 0;
}
dialog .dialogBox .img li {
  height: 100%;
}
dialog .dialogBox .img a.img-box {
  background-color: #eee;
}
dialog .dialogBox .bottomCoy {
  background-color: #f0f0f0;
}
dialog .dialogBox .bottomCoy i {
  width: .6em;
  height: .6em;
  border-radius: 100%;
  background-color: var(--color);
}
dialog .dialogBox .scroll {
  height: calc(90vh - 70px);
  max-height: 700px;
  overflow: auto;
}
dialog .dialogBox .list {
  padding: 11%;
}
dialog .dialogBox .list li:hover a.img-box {
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.17);
}
dialog .dialogBox .list li:hover span {
  text-decoration: underline;
}
dialog .box .text {
  max-height: 340px;
  overflow: auto;
  padding-right: .5em;
}
dialog .box .text table tbody {
  min-width: auto;
}
dialog .box span.close {
  width: 2em;
  height: 2em;
  background-color: #eee;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 2;
}
dialog .box span.close:hover {
  background-color: var(--color);
  color: white;
}
dialog .box .img {
  /*padding: 5% 11%;*/
  background-color: #f5f5f7;
  display: block;
  position: sticky;
  top: 5%;
}
dialog .box .img img {
  /*-webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);*/
}
dialog .box .right .img {
  /*padding: 12% 25%;*/
}
dialog .box .small .prev {
  right: 100%;
  margin-right: -1em;
}
dialog .box .small .next {
  left: 100%;
  margin-left: -1em;
}

.product-page .slideBar {
    padding-top: 100px;
}

.product-page .slideBar .top {
    position: relative;
    display: flex;
    padding-bottom: 60px;
    margin-bottom: 60px;
}
.product-page .slideBar .top li{
    margin-right: 10px;
}
.product-page .slideBar .top li:last-child{
    margin-right: 0;
}
.product-page .slideBar .top li a.add {
    display: inline-block;
    font-size: 18px;
    line-height: 56px;
    height: 56px;
    transition: .5s;
    background: #000;
    color: #fff;
    padding: 3px 25px;
    position: relative;
}

.product-page .slideBar .top li a.add:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-left: 8px solid transparent;
    border-top: 8px solid var(--color);
    border-right: 8px solid transparent;
    opacity: 0;
    transition: .5s;
}

.product-page .slideBar .top li.active a.add,
.product-page .slideBar .top li:hover a.add {
    background: var(--color);
    color:#fff;
}

.product-page .slideBar .top li.active a.add:after,
.product-page .slideBar .top li:hover a.add:after {
    opacity: 1;
}

.product-page .slideBar .top li a.active.add {
    background: var(--color);
    color: white;
}

.product-page .slideBar .top li a.active.add:after {
    opacity: 1;
}

.product-page .slideBar .top li:hover ul.children {
    transform: rotateX(0deg);
}
.product-page .slideBar .top>li{
    position: relative;
    margin-bottom: 30px;
}
.product-page .slideBar .top li ul.children {
    position: absolute;
    left: 0;
    top: 120%;
    width: fit-content;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    z-index: 10;
    transform: rotateX(90deg);
    transition: all .5s;
    transform-origin: top;
}

.product-page .slideBar .top li ul.children li {
    display: inline-block;
    margin-right: 0;
    white-space: nowrap;
    padding: 10px 30px;
    transition: all 0.5s;
}

.product-page .slideBar .top li ul.children li a {
    font-size: 20px;
    position: relative;
    color: #767676;
    transition: all 0.5s;
}
.product-page .slideBar .top li ul.children li:hover{
    background-color: #000;
}
.product-page .slideBar .top li ul.children li:hover a{
    color:#fff;
}
.product-page .slideBar .top {
    flex-wrap: wrap;
}
.tit1 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.6;
}
h4.font-20.font-w-400.mt-30 {
    line-height: 1.8;
}
.tit1.line::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: currentcolor;
}
.tit1.txt-center.line::after {
    margin: auto;
}
@media screen and (max-width: 1000px) {
    .product-page .slideBar{
        display: none;
    }
    .tit1{
        font-size: 24px;
    }
}
.product-page .category-desc {
    background-color: #f9f9f9;
    line-height: 2;
}
.product-page .productNav ul {
    position: relative;
}
.product-page .productNav ul::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #f2f2f2;
}
.product-page .productNav ul li {
    width: auto;
    position: relative;
}
.product-page .productNav ul li + li {
    margin-left: 45px;
}
.product-page .productNav ul li a {
    padding: 15px 0;
}
.product-page .productNav ul li a::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -1px;
    display: block;
    height: 3px;
    width: 0;
    background-color: var(--color);
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}
.product-page .productNav ul li.active a::after {
    width: 100%;
}
.productList ul {
    margin: -20px;
}
.productList ul li {
    padding: 20px;
}
.productList ul li .img img {
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}
.productList ul li .img img.on {
    opacity: 0;
    left: 0;
    top: 0;
}
.productList ul li .img:hover img.on {
    opacity: 1;
}
.productList ul li .img:hover img.def {
    opacity: 0;
}
.productList ul li .img .more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 47px;
    line-height: 47px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    background: #000;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    z-index: 15;
    padding: 0;
    color: white;
    overflow: hidden;
    border: none;
}
.productList ul li .img .more::after{
  content: '';
  background: #f8f8f8;
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 0%;
  transition: .5s;
  z-index: -1;
}
.productList ul li .img .more:hover:after {
  width: 100%;
  left: 0;
}
.productList ul li .img .more:hover {
    color: #000;
}
.productList ul li .img:hover .more {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
@media screen and (max-width: 1000px) {
    .product-page .productNav {
        display: none;
    }
    .productList ul {
        margin: -15px;
    }
    .productList ul li {
        padding: 15px;
    }
}
.prodet-page {
    padding: 100px 0 10px 0;
    background: #f9f9f9;
}
.prodet-page .prodet-1 .box .left .big-small {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.prodet-page .prodet-1 .box .left .big {
    width: 85%;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    border: none;
    font-size: 13px;
    color: #fff;
    background-color: var(--color);
    font-family: FontAwesome;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-prev {
    left: 20px;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-next {
    right: 40px;
}
.prodet-page .prodet-1 .box .left .small {
    width: 15%;
}
.prodet-page .prodet-1 .box .left .small ul {
    margin: -5px;
}
.prodet-page .prodet-1 .box .left .small ul li {
    padding: 5px;
}
.prodet-page .prodet-1 .box .right .content h1{
    
    font-weight: bold;
    line-height: 1.6;
}
.prodet-page .prodet-1 .box .right .content .text {
    line-height: 2;
    /*max-height: 403px;*/
    padding-right: 20px;
    margin-top: 43px;
    /*overflow: auto;*/
}
.prodet-page .prodet-1 .box .right .content a.msg {
    color: white;
    background-color: #000;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    text-align: center;
}
.prodet-page .prodet-1 .box .right .content a.msg:hover {
    color: #000;
    background-color: #eee;
}
.prodet-page .prodet-1 .box .right .content .social-links h4,
.prodet-page .prodet-1 .box .right .content .social-links ul {
    display: inline-block;
    vertical-align: middle;
}
.prodet-page .prodet-2 {
    padding-top: 100px;
}
.prodet-page .prodet-2 form input,
.prodet-page .prodet-2 form textarea {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    border: 1px solid #e5e5e5;
    /*font-style: italic;*/
}
.prodet-page .prodet-2 form textarea {
    height: 170px;
}
.prodet-page .prodet-2 form button {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
    
    color: #FFFFFF;
    background-color: var(--color);
    border: none;
    padding: 10px 45px;
    text-transform: uppercase;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}
.prodet-page .prodet-2 form button:hover {
    background-color: #000000;
}
.prodet-page .prodet-2 .options ul {
    position: relative;
}
.prodet-page .prodet-2 .options ul::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #f2f2f2;
}
.prodet-page .prodet-2 .options ul li {
    width: auto;
    position: relative;
}
.prodet-page .prodet-2 .options ul li + li {
    margin-left: 130px;
}
.prodet-page .prodet-2 .options ul li a {
    padding: 15px 40px;
    font-weight: 700;
    font-size: 30px;
    /*text-transform: uppercase;*/
    line-height: 1.7;
}
.prodet-page .prodet-2 .options ul li a::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -1px;
    display: block;
    height: 3px;
    width: 0;
    background-color: var(--color);
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}
.prodet-page .prodet-2 .options ul li.active a::after {
    width: 100%;
}
/*.prodet-page .prodet-2 .ret ul li .content {
    padding-left: 90px;
    padding-right: 90px;
}*/
.prodet-page .prodet-2 .ret ul li .content.form {
    padding-top: 60px;
    padding-bottom: 60px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);padding-left: 90px;
    padding-right: 90px;
}
.prodet-page .prodet-3 {
    padding-top: 100px;
}
.prodet-page .prodet-3 ul li .img img{
    width: 100%;
}
.prodet-page .prodet-3 .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    border: none;
    font-size: 20px;
    color: #FFFFFF;
    background-color: var(--color);
}
.prodet-page .prodet-3 .slick-arrow.slick-prev {
    left: -50px;
}
.prodet-page .prodet-3 .slick-arrow.slick-next {
    right: -50px;
}
@media screen and (max-width: 1200px) {
    .prodet-page .prodet-1 .box .right .content h1 {
        margin: 0;
    }
    .prodet-page .prodet-1 .box .right .content a.msg {
        margin-top: 30px;
    }
    .prodet-page .prodet-2 .options ul li + li {
        margin-left: 60px;
    }
}
@media screen and (max-width: 1000px) {
    .prodet-page {
        padding: 60px 0;
    }
    .prodet-page .prodet-1 .box .left {
        width: 100%;
    }
    .prodet-page .prodet-1 .box .right {
        width: 100%;
        padding: 0;
        margin-top: 40px;
    }
    .prodet-page .prodet-2 {
        padding-top: 60px;
    }
    .prodet-page .prodet-3 {
        padding-top: 60px;
    }
    .prodet-page .prodet-2 .ret ul li .content {
        padding-left: 30px;
        padding-right: 30px;
    }
    .prodet-page .prodet-2 .ret ul li .content.form {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 500px) {
    .prodet-page .prodet-1 .box .left .big-small {
        display: block;
    }
    .prodet-page .prodet-1 .box .left .big {
        width: 100%;
        padding: 0;
    }
    .prodet-page .prodet-1 .box .left .small {
        width: 100%;
        margin-top: 10px;
    }
    .prodet-page .prodet-2 form input,
    .prodet-page .prodet-2 form textarea {
        padding: 10px;
    }
    .prodet-page .prodet-2 .options ul li {
        width: 100%;
    }
    .prodet-page .prodet-2 .options ul li + li {
        margin: 0;
    }
    .prodet-page .prodet-2 .ret ul li .content {
        padding-left: 0;
        padding-right: 0;
    }
    .prodet-page .prodet-2 .ret ul li .content.form {
        padding-left: 15px;
        padding-right: 15px;
    }
    .prodet-page .prodet-2 form textarea {
        height: 100px;
    }
}
.innerTag {
  color: #ff0000;
}
.innerTit {
  
}
.about-page .about-1 {
  padding-right: 11%;
}
.about-page .about-1 .left {
  padding-right: 4%;
  vertical-align: middle;
}
.about-page .about-1 .left .play {
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 145px;
  height: 145px;
  line-height: 145px;
  text-align: center;
  cursor: pointer;
}
.about-page .about-1 .left .play:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/play-icon2.png) no-repeat center;
  background-size: 100% 100%;
  animation: rotate 5s linear infinite;
}
.about-page .about-1 .right {
  padding-left: 4%;
  vertical-align: middle;
}
.about-page .about-1 .right .Tit::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 104%;
  width: 128px;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.about-page .about-1 .right .text {
  line-height: 1.8;
  /*max-height: 14.4em;
  overflow-y: auto;*/
}
.about-page .about-1 .right .list {
  margin-top: 80px;
  margin-left: -10%;
}
.about-page .about-1 .right .base_data ul {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .about-1 .right .base_data ul li {
  width: auto;
}
.about-page .about-1 .right .pro_list {
  margin-top: 80px;
  margin-left: -10%;
}
.about-page .about-1 .right .pro_list ul {
  margin: -30px;
}
.about-page .about-1 .right .pro_list li {
  padding: 30px;
}
.about-page .about-1.on .right .Tit::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.about-page .about-2 {
  padding-top: 120px;
}
.about-page .about-2 .right {
  position: relative;
}
.about-page .about-2 .right > ul li {
  margin-bottom: 45px;
  padding-right: 65px;
}
.about-page .about-2 .right > ul li img {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-page .about-2 .right .slick-slide {
  position: relative;
}
.about-page .about-2 .right .slick-current.slick-center {
  z-index: 1;
}
.about-page .about-2 .right .slick-current.slick-center li img {
  -webkit-transform: translate(0, 45px);
  -moz-transform: translate(0, 45px);
  -ms-transform: translate(0, 45px);
  transform: translate(0, 45px);
}
.about-page .about-2 .right .dots {
  position: absolute;
  left: 30px;
  right: 65px;
  bottom: 5%;
}
.about-page .about-2 .right .dots li {
  margin: 0 3px;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #000000;
  display: inline-block;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  cursor: pointer;
}
.about-page .about-2 .right .dots li button {
  display: none;
}
.about-page .about-2 .right .dots li.slick-active {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.about-page .about-2 .list {
  padding: 100px 0;
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.about-page .about-2 .list ul {
  margin: -15px;
}
.about-page .about-2 .list li {
  padding: 15px;
}
.about-page .about-2 .list li img {
  display: block;
  margin: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-page .about-2 .list li:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.about-page .about-2 .list span.arrow {
  font-size: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.about-page .about-2 .list span.arrow.arrow_l {
  left: 0;
}
.about-page .about-2 .list span.arrow.arrow_r {
  right: 0;
}
.about-page .about-3 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.about-page .about-3 li .box {
  color: #FFFFFF;
  background-color: #202328;
  padding: 15% 10%;
  height: 100%;
}
.about-page .about-3 li .box .name {
  font-size: 30px;
  
  font-weight: bold;
  line-height: 3;
  color: #ff0000;
}
.about-page .about-3 li .box .name span {
  line-height: 1.5;
  display: inline-block;
  vertical-align: bottom;
}
.about-page .about-3 li .box .text {
  line-height: 1.8;
}
.about-page .about-3 li:nth-child(2) .box {
  background-color: #4f5155;
}
.about-page .about-4 {
  padding-top: 90px;
}
.about-page .about-4 .text {
  line-height: 1.8;
}
.about-page .about-4 .list ul {
  margin: -20px;
}
.about-page .about-4 .list li {
  padding: 20px;
}
.about-page .about-5 {
  padding: 60px 0 120px;
  background: url(../images/about-5-bg.jpg) no-repeat left 116% top 71%;
}
.about-page .about-5 .text {
  line-height: 1.8;
}
.about-page .about-5 .left {
  padding-top: 60px;
  padding-left: 100px;
  position: relative;
}
.about-page .about-5 .left img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
}
.about-page .about-5 .left img:last-child {
  position: relative;
  z-index: 1;
  width: 80%;
    top: 38px;
    left: 154px;
}
.about-page .about-5 .right {
  margin-top: 100px;
}
.about-page .about-6 {
  padding: 120px 0;
  background: url(../images/about-6-bg.jpg) no-repeat center;
  background-attachment: fixed;
  color: #FFFFFF;
}
.about-page .about-6 ul {
  margin: -45px;
}
.about-page .about-6 li {
  padding: 45px;
}
.about-page .about-6 li .num {
  font-size: 89px;
  
  font-weight: bold;
  color: #ff0000;
}
.about-page .about-6 li .text {
  line-height: 1.8;
  color: white;
}
.about-page .about-7 {
  padding: 130px 0;
}
.about-page .about-7 span.arrow {
  font-size: 16px;
  display: inline-block;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  line-height: 45px;
  text-align: center;
  border: 1px solid currentcolor;
  opacity: .5;
  cursor: pointer;
}
.about-page .about-7 span.arrow:hover {
  opacity: 1;
}
.about-page .about-7 .list {
  margin-top: 80px;
}
.about-page .about-7 .list li {
  padding-right: 50%;
  position: relative;
}
.about-page .about-7 .list li .content {
  position: absolute;
  width: 70%;
  right: 50px;
  top: 50%;
  padding: 20px;
  background: rgb(255 255 255 / 90%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about-page .about-7 .list li .content .name {
  font-size: 30px;
  
  font-weight: 400;
}
.about-page .about-7 .list li .content .text {
  margin-top: 15px;
  line-height: 1.8;
}
@media (max-width: 1600px) {
  .about-page .about-1 {
    padding-right: 5%;
  }
  .about-page .about-3 li .box .name {
    font-size: 24px;
  }
  .about-page .about-3 li .box {
    padding: 10% 5%;
  }
}
@media (max-width: 1400px) {
  .about-page .about-1 {
    padding-right: 15px;
  }
  .about-page .about-1 .left {
    padding-right: 0;
  }
  .about-page .about-1 .right .list {
    margin-left: 0;
  }
  .about-page .about-1 .right .text {
    max-height: 10.8em;
  }
  .innerTit {
    font-size: 32px;
  }
  .about-page .about-2 .left {
    margin-top: 0;
  }
  .about-page .about-5 .right {
    margin-top: 0;
  }
  .about-page .about-6 ul {
    margin: -25px;
  }
  .about-page .about-6 li {
    padding: 25px;
  }
  .about-page .about-6 li .num {
    font-size: 60px;
  }
  .about-page .about-7 .list li .content .name {
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .about-page .about-1 {
    padding: 60px 0;
  }
  .about-page .about-1 .box {
    max-width: 700px;
    margin: auto;
    padding: 0 15px;
  }
  .about-page .about-1 .left {
    width: 100%;
  }
  .about-page .about-1 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .about-page .about-1 .right .Tit::before {
    display: none;
  }
  .about-page .about-1 .right .text {
    max-height: unset;
  }
  .about-page .about-1 .right .list {
    margin-top: 40px;
  }
  .about-page .about-2 {
    padding-top: 60px;
  }
  .about-page .about-2 .left {
    width: 100%;
    padding: 0;
  }
  .about-page .about-2 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .about-page .about-2 .right .dots {
    left: 0;
  }
  .about-page .about-2 .list {
    padding: 60px 0;
  }
  .about-page .about-3 ul {
    display: block;
  }
  .about-page .about-3 li {
    width: 100%!important;
  }
  .about-page .about-3 li .box {
    padding: 60px 5%;
  }
  .about-page .about-3 li .box .name {
    line-height: normal;
  }
  .about-page .about-3 li .box .text {
    margin-top: 20px;
  }
  .about-page .about-4 {
    padding-top: 60px;
  }
  .about-page .about-5 {
    padding: 120px 0 60px;
  }
  .about-page .about-5 .left {
    width: 100%;
  }
  .about-page .about-5 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .about-page .about-6 {
    padding: 60px 0;
  }
  .about-page .about-6 ul {
    margin: -15px;
  }
  .about-page .about-6 li {
    padding: 15px;
    width: 50%!important;
  }
  .about-page .about-6 li .num {
    font-size: 40px;
  }
  .about-page .about-7 {
    padding: 60px 0;
  }
  .about-page .about-7 .list {
    margin-top: 40px;
  }
}
@media (max-width: 700px) {
  .innerTit {
    font-size: 24px;
  }
  .about-page .about-3 li .box .name {
    font-size: 20px;
  }
  .about-page .about-5 .left {
    padding-top: 40px;
    padding-left: 50px;
  }
  .about-page .about-2 .right > ul li img {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .about-page .about-2 .right .slick-current.slick-center li img {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .about-page .about-2 .right > ul li {
    margin-bottom: 0;
    padding-right: 0;
  }
  .about-page .about-2 .right .dots {
    right: 0;
  }
  .about-page .about-7 .list ul {
    margin: -15px;
  }
  .about-page .about-7 .list li {
    padding-right: 0;
    padding: 15px;
  }
  .about-page .about-7 .list li .content {
    position: relative;
    right: auto;
    top: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .about-page .about-6 li {
    width: 100%!important;
  }
}
.trends-page .trends-1 {
  margin-top: 200px;
}
.trends-page .trends-2 {
  margin-top: 120px;
}
.trends-page .trends-2 .left {
  width: 45%;
  vertical-align: middle;
  padding-right: 5%;
}
.trends-page .trends-2 .right {
  width: 55%;
  position: relative;
  vertical-align: middle;
}
.trends-page .trends-2 .right .Tit {
  font-size: 30px;
  
  font-weight: bold;
  position: relative;
}
.trends-page .trends-2 .right .Tit::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 104%;
  width: 128px;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.trends-page .trends-2 .right .text span {
  font-weight: 400;
  font-style: italic;
}
.trends-page .trends-2 .right .list {
  margin: 40px 0 40px -20%;
  padding: 40px 80px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.trends-page .trends-2 .right .list ul {
  margin: -15px;
}
.trends-page .trends-2 .right .list li {
  padding: 15px;
}
.trends-page .trends-2 .right .list li > div {
  display: inline-block;
  padding-left: 70px;
}
.trends-page .trends-2 .right .list i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.trends-page .trends-2 .right .list .num {
  font-size: 32px;
  
  font-weight: bold;
}
.trends-page .trends-2.on .right .Tit::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.trends-page .trends-3 {
  margin-top: 120px;
}
.trends-page .trends-3.row .box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.trends-page .trends-3.row .box .right {
  padding-left: 0;
  padding-right: 10%;
  text-align: right;
}
.trends-page .trends-3.row .box .right .name::before {
  left: 104%;
  right: auto;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.trends-page .trends-3 .box {
  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;
}
.trends-page .trends-3 .box .left {
  width: 53%;
}
.trends-page .trends-3 .box .left img {
  width: 100%;
}
.trends-page .trends-3 .box .left ul.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 5%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.trends-page .trends-3 .box .left ul.slick-dots li {
  margin: 0 3px;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #000;
  display: inline-block;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  cursor: pointer;
}
.trends-page .trends-3 .box .left ul.slick-dots li button {
  display: none;
}
.trends-page .trends-3 .box .left ul.slick-dots li.slick-active {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.trends-page .trends-3 .box .right {
  width: 47%;
  padding-left: 10%;
}
.trends-page .trends-3 .box .right .name {
  font-size: 30px;
  
  font-weight: bold;
  position: relative;
}
.trends-page .trends-3 .box .right .name::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -1px;
  right: 104%;
  width: 170px;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.trends-page .trends-3.on .box .right .name::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.trends-page .trends-4 {
  padding: 140px 0;
}
.trends-page .trends-4 .Tit {
  font-size: 30px;
  
  font-weight: bold;
}
.trends-page .trends-4 .form {
  max-width: 1080px;
  margin: 50px auto 0;
}
.trends-page .trends-4 .form ul {
  margin: -10px;
}
.trends-page .trends-4 .form li {
  padding: 10px;
}
.trends-page .trends-4 .form li.wid-100 {
  width: 100%;
}
.trends-page .trends-4 .form input,
.trends-page .trends-4 .form textarea {
  width: 100%;
  padding: 15px 30px;
  font-size: 14px;
  border: 1px solid #d2d2d2;
}
.trends-page .trends-4 .form input[type="submit"] {
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: #000000;
  font-weight: bold;
  letter-spacing: 1px;
  width: auto;
  border: 1px solid #000;
  transition: .5s ease;
}
.trends-page .trends-4 .form input[type="submit"]:hover {
  background-color: transparent;
  color: #000;
}
@media (max-width: 1400px) {
  .about-page .about-1 .right .pro_list {
    margin-left: 0;
  }
  .trends-page .trends-2 .right .list {
    padding: 20px 40px;
  }
  .trends-page .trends-2 .right .list .num {
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .about-page .about-1 .right .pro_list {
    margin-top: 40px;
  }
  .about-page .about-1 .right .pro_list ul {
    margin: -15px;
  }
  .about-page .about-1 .right .pro_list li {
    padding: 15px;
  }
  .trends-page .trends-1 {
    margin-top: 60px;
  }
  .trends-page .trends-2 {
    margin-top: 90px;
  }
  .trends-page .trends-2 .right .Tit::before {
    display: none;
  }
  .trends-page .trends-2 .left {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .trends-page .trends-2 .right {
    width: 100%;
    margin-top: 40px;
  }
  .trends-page .trends-2 .right .Tit {
    font-size: 24px;
  }
  .trends-page .trends-2 .right .list {
    margin: 20px 0 20px;
  }
  .trends-page .trends-3 {
    margin-top: 90px;
  }
  .trends-page .trends-3 .box {
    display: block;
  }
  .trends-page .trends-3 .box .left {
    width: 100%;
  }
  .trends-page .trends-3 .box .right {
    width: 100%;
    text-align: left!important;
    padding: 0!important;
    margin-top: 40px;
  }
  .trends-page .trends-3 .box .right .name::before {
    display: none;
  }
  .trends-page .trends-3 .box .right .name {
    font-size: 24px;
  }
  .trends-page .trends-4 {
    padding: 90px 0;
  }
  .trends-page .trends-4 .Tit {
    font-size: 24px;
  }
  dialog .box .img {
    position: static;
  }
}
.base_data ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.base_data li .box {
  width: 186px;
  height: 186px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.base_data li .box .dot {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.base_data li .box .dot::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -webkit-calc(50% - 5px);
  top: -moz-calc(50% - 5px);
  top: calc(50% - 5px);
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 11px;
  background-color: #000000;
}
.base_data li .box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/data-box.png) no-repeat center;
  background-size: 100% 100%;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.base_data li .box > div.num {
  font-size: 36px;
  color: #ff0000;
  
  font-weight: bold;
}
.base_data li .box > div:last-child {
  font-weight: 500;
}
.base_data li .p {
  margin-top: 20px;
  font-size: 20px;
  
  font-weight: 400;
}
.base_data li:nth-child(2) .box .dot {
  -webkit-animation: rotate2 10s linear infinite;
  -moz-animation: rotate2 10s linear infinite;
  animation: rotate2 10s linear infinite;
}
.base_data li:nth-child(2) .box .dot::before {
  left: -webkit-calc(50% - 5px);
  left: -moz-calc(50% - 5px);
  left: calc(50% - 5px);
  top: -5px;
}
.base_data li:nth-child(2) .box::before {
  -webkit-animation: rotate2 10s linear infinite;
  -moz-animation: rotate2 10s linear infinite;
  animation: rotate2 10s linear infinite;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate2 {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-moz-keyframes rotate2 {
  from {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -moz-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes rotate2 {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.pr {
  position: relative;
}