@font-face {
  font-family: 'Arial';
  src: url(../fonts/Arial.ttf) format('truetype'), url(../fonts/Arial.eot) format('eot'), url(../fonts/Arial.woff) format('woff'), url(../fonts/Arial.woff2) format('woff2');
}
@font-face {
  font-family: 'Oswald-Bold';
  src: url(../fonts/Oswald-Bold.ttf) format('truetype'), url(../fonts/Oswald-Bold.eot) format('eot'), url(../fonts/Oswald-Bold.woff) format('woff'), url(../fonts/Oswald-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'AGLettericaExtraCompressed-Roman';
  src: url(../fonts/AGLettericaExtraCompressed-Roman.ttf) format('truetype'), url(../fonts/AGLettericaExtraCompressed-Roman.eot) format('eot'), url(../fonts/AGLettericaExtraCompressed-Roman.woff) format('woff'), url(../fonts/AGLettericaExtraCompressed-Roman.woff2) format('woff2');
}


input::-webkit-input-placeholder {
  color: #000;
}
textarea::-webkit-input-placeholder {
  color: #000;
}
input::-moz-placeholder {
  color: #000;
}
input:-moz-placeholder {
  color: #000;
}
input:-ms-input-placeholder {
  color: #000;
}
body {
  margin: 0 auto;
  padding: 0;
  --color: #b91713;
  font-family: 'Arial';
  background-color: white;
  color: #313131;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1570px;
  margin: 0 auto;
  position: relative;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background: rgba(0,0,0);
}
#header.active {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#header .nav {
  position: relative;
  height: 85px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  padding-left: 10%;
  padding-right: 5%;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 50px;
  font-size: 16px;
  color: black;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  border-top: 5px solid transparent;
  line-height: 85px;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
  border-color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  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 {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu > .right {
  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;
}
#header .nav .ui.menu > .right form {
  position: relative;
}
#header .nav .ui.menu > .right form input[type='text'] {
  width: 205px;
  height: 35px;
  border: 1px solid black;
  border-radius: 35px;
  background-color: transparent;
  padding-left: 15px;
  padding-right: 45px;
  font-size: 18px;
}
#header .nav .ui.menu > .right form input[type='submit'] {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  background: url('../images/search.png');
  background-repeat: no-repeat;
  border: none;
}
.language-box {
  margin-left: 85px;
  margin-right: 40px;
}
.language-box .zhuyu {
  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;
      color: #fff;
}

.h-search img {
    filter: drop-shadow(0 -100px #fff);
    position: relative;
    top: 100px;
}
.h-search {
    overflow: hidden;
}


.language-box .zhuyu span {
  font-size: 16px;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  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;
}
.language-box ul.sub-menu li a {
  width: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#banner {
  position: relative;
  margin-top: 85px;
}
#banner .banner-content .page {
  position: absolute;
  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;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  right: -45px;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
#banner .banner-content .page span {
  font-size: 14px;
  color: var(--color);
}
#banner .banner-content .page .line {
  width: 150px;
  height: 1px;
  background: black;
  margin: 0 5px;
}
#banner .banner-content .banner-btn {
  position: absolute;
  right: 0;
  bottom: 40px;
  z-index: 100;
  cursor: pointer;
      display: none;
}
#banner .banner-content .banner-btn span {
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #7f7f7f;
  width: 45px;
  height: 45px;
  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;
  cursor: pointer;
}
#banner .banner-content .banner-btn span:hover {
  background-color: var(--color);
}
#banner .banner-content .banner-btn span i {
  font-size: 18px;
  color: white;
}
#banner .banner-content .dots-container {
  position: absolute;
  right: 200px;
  bottom: 40px;
}
#banner .banner-content .custom-dots {
  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;
}
#banner .banner-content .custom-dots li.slick-active .box {
  opacity: 1;
}
#banner .banner-content .custom-dots li.slick-active .box .right-circle .circle-border {
  -webkit-animation: circle-loading-right 9s linear forwards;
  -moz-animation: circle-loading-right 9s linear forwards;
  animation: circle-loading-right 9s linear forwards;
}
#banner .banner-content .custom-dots li.slick-active .box .left-circle .circle-border {
  -webkit-animation: circle-loading-left 9s linear forwards;
  -moz-animation: circle-loading-left 9s linear forwards;
  animation: circle-loading-left 9s linear forwards;
}
#banner .banner-content .custom-dots li {
  margin-right: 30px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
#banner .banner-content .custom-dots li:last-child {
  margin-right: 0;
}
#banner .banner-content .custom-dots li button {
  background-color: transparent;
  border: none;
  font-weight: bold;
  font-size: 14px;
      color: #fff;
}
#banner .banner-content .custom-dots .box {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .banner-content .custom-dots .box span {
  display: inline-block;
}
@-webkit-keyframes circle-loading-right {
  0% {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes circle-loading-right {
  0% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes circle-loading-right {
  0% {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-webkit-keyframes circle-loading-left {
  0%,
  50% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes circle-loading-left {
  0%,
  50% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes circle-loading-left {
  0%,
  50% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
#banner .banner-content .custom-dots .box .right-circle,
#banner .banner-content .custom-dots .box .left-circle {
  position: relative;
  width: 25px;
  height: 40px;
  overflow: hidden;
}
#banner .banner-content .custom-dots .box .right-circle .circle-border {
  right: 0;
  top: 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
#banner .banner-content .custom-dots .circle-border {
  width: 40px;
  height: 40px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  border: 1px solid transparent;
}
#banner .banner-content .custom-dots .box .left-circle .circle-border {
  left: 0;
  bottom: 0;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .content {
  position: absolute;
  left: 50%;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  height: 100%;
  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;
  padding: 0 95px;
  padding-left: 10%;
  width: 100%;
}
#banner .banner-content ul li .content .box {
  max-width: 57%;
  color: white;
}
#banner .banner-content ul li .content .box h2 {
  font-size: 36px;
  line-height: 1.4;
  font-family: var(--font);
  text-transform: capitalize;
  margin-bottom: 35px;
}
#banner .banner-content ul li .img {
  right: 95px;
  bottom: 80px;
  position: absolute;
}
/*#banner .banner-content ul .slick-list{
    -webkit-clip-path: polygon(14% 6%, 20% 6%, 61% 0%, 100% 0, 100% 84%, 90% 77%, 88% 76%, 87% 76%, 85% 76%, 48% 100%, 0 100%, 0 0);
  clip-path: polygon(14% 6%, 20% 6%, 61% 0%, 100% 0, 100% 84%, 90% 77%, 88% 76%, 87% 76%, 85% 76%, 48% 100%, 0 100%, 0 0);
}*/
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  max-height: 800px;
  -o-object-fit: cover;
  object-fit: cover;
}
.more {
  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;
  width: 160px;
  height: 60px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: var(--color);
}
.more::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
  left: -webkit-calc(100% - 5px);
  left: -moz-calc(100% - 5px);
  left: calc(100% - 5px);
  top: 0;
}
.more:hover::before {
  left: 0;
  background-color: #000000;
}
.more span {
  display: block;
  position: relative;
  z-index: 5;
  font-size: 16px;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: uppercase;
}
.h-title h3 {
  font-size: 38px;
  position: relative;
  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-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-transform: uppercase;
  font-weight: bold;
}
.h-title h3:after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--color);
  margin-top: 10px;
}
.h-title.center h3 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@-webkit-keyframes img_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-moz-keyframes img_scale {
  0% {
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes img_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-webkit-keyframes img_rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-moz-keyframes img_rotate {
  0% {
    -moz-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes img_rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#index-body .product {
    padding: 80px 0 80px;
    position: relative;
    /*background: url(../images/sy-int02-bg.jpg);*/
    background: #eeeeee;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

}
/*#index-body .product .bg {
  position: absolute;
  top: -180px;
  left: 0;
  z-index: -1;
}*/
#index-body .product .bottom {
  margin: 0 auto;
  max-width: 1920px;
}
#index-body .product .bottom ul {
  margin: 60px 0 0;
}
#index-body .product .bottom ul li {
  height: 170px;
  position: relative;
}
#index-body .product .bottom ul li:hover .pro-box {
  opacity: 1;
  z-index: 2;
}
#index-body .product .bottom ul li:hover .box {
  opacity: 0;
}
#index-body .product .bottom ul li .btn:hover i {
  color: var(--color);
  border-color: var(--color);
}
#index-body .product .bottom ul li .btn i {
  margin-top: 15px;
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: transparent;
  text-align: center;
  line-height: 25px;
  color: black;
  font-size: 14px;
  border: 1px solid black;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .bottom ul li .box {
  padding: 0 45px;
  width: 100%;
  height: 100%;
  /*border: 1px solid #e5e5e5;*/
      border: 1px solid #ccc;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .bottom ul li .box .img{
  max-width: 50%;
}
#index-body .product .bottom ul li .box .text{
  max-width: 50%;
}
#index-body .product .bottom ul li .box .text h4 {
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#index-body .product .bottom ul li .pro-box {
  opacity: 0;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-repeat: no-repeat;
  background-position: center;
}
#index-body .product .bottom ul li .pro-box .text {
  width: 100%;
  height: 100%;
  border: 1px solid white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -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;
  color: white;
}
#index-body .product .bottom ul li .pro-box .text h4{
  padding: 0 15px;
  text-align: center;
}
#index-body .product .bottom ul li .pro-box .text .btn i {
  border-color: white;
  color: rgba(255, 255, 255, 0.6);
}
#index-body .about {
  position: relative;
  margin-top: 45px;
  padding: 50px 0 0;
}
#index-body .about .about-content {
  position: relative;
}
#index-body .about .about-content .left .btn:hover i {
  color: var(--color);
  border-color: var(--color);
}
#index-body .about .about-content .left .btn i {
  margin-top: 35px;
  display: block;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background-color: transparent;
  text-align: center;
  line-height: 53px;
  color: black;
  font-size: 20px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  border: 1px solid black;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .about .about-content .right {
  max-width: 710px;
  line-height: 1.6;
  font-size: 17px;
}
#index-body .about .about-play {
  position: relative;
}
#index-body .about .about-play .play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 125px;
  height: 125px;
  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;
}
#index-body .about .about-play .play::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: img_scale 1s ease-in-out infinite;
  -moz-animation: img_scale 1s ease-in-out infinite;
  animation: img_scale 1s ease-in-out infinite;
}
#index-body .about .about-play .play::after {
  content: '';
  width: 105px;
  height: 105px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: img_scale 1s ease-in-out infinite;
  -moz-animation: img_scale 1s ease-in-out infinite;
  animation: img_scale 1s ease-in-out infinite;
}
#index-body .about .about-play .play img {
  position: relative;
  z-index: 5;
}
#index-body .advantage {
  padding: 80px 0 80px;
    background: #eeeeee;
}
#index-body .advantage .advantage-content .container::before{
  content:"";
  display: block;
  width: 35px;
  height: 35px;
  border: 3px solid #313131;
  border-radius: 50%;
  position: absolute;
  top:115px;
  right:32%;
}
#index-body .advantage .advantage-content .top .btn {
  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;
}
#index-body .advantage .advantage-content .top .btn:hover i {
  color: white;
  background-color: var(--color);
}
#index-body .advantage .advantage-content .top .btn:hover span {
  color: var(--color);
}
#index-body .advantage .advantage-content .top .btn i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f2f2f2;
  text-align: center;
  line-height: 35px;
  margin-right: 20px;
  color: black;
  font-size: 18px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .advantage .advantage-content .top .btn span {
  font-size: 16px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .advantage .advantage-content ul {
  margin: 70px -15px 0;
}
#index-body .advantage .advantage-content ul .slick-current + .slick-slide li {
  padding-top: 40px;
}
#index-body .advantage .advantage-content ul .slick-current + .slick-slide + .slick-slide li {
  padding-top: 80px;
}
#index-body .advantage .advantage-content ul .slick-current + .slick-slide + .slick-slide + .slick-slide li {
  padding-top: 120px;
}
#index-body .advantage .advantage-content ul li {
  padding: 0 15px;
}
#index-body .advantage .advantage-content ul li .box {
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: 400px;
  width: 100%;
  padding: 50px 30px 0;
  position: relative;
}
#index-body .advantage .advantage-content ul li .box .btn {
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}
#index-body .advantage .advantage-content ul li .box .btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid black;
  border-radius: 50%;
  display: block;
}
#index-body .advantage .advantage-content ul li .box .btn span {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  line-height: 1;
 
}
#index-body .advantage .advantage-content ul li .box .con{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .advantage .advantage-content ul li .box > span{
    color: transparent;
    font-size: 147px;
    position: absolute;
    right: 20px;
    top: 20%;
    -webkit-text-stroke: 1px rgba(0, 0, 0, .2);
    line-height: 0.8;
     font-family: 'AGLettericaExtraCompressed-Roman';
}
#index-body .application {
  width: 100%;
  padding: 80px 0 80px;
  /*background-color: #f8f8f8;*/
  /*-webkit-clip-path: polygon(40% 6%, 80% 0, 100% 6%, 100% 93%, 62% 94%, 41% 100%, 0 98%, 0 6%);
  clip-path: polygon(40% 6%, 80% 0, 100% 6%, 100% 93%, 62% 94%, 41% 100%, 0 98%, 0 6%)*/
}
#index-body .application .application-content {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin: auto;
}
#index-body .application .application-content ul {
  margin: 50px -100px 0;
}
#index-body .application .application-content ul .slick-current li .box .title {
  padding-left: 120px;
}
#index-body .application .application-content ul li {
  padding: 0 13px;
}
#index-body .application .application-content ul li .box {
  position: relative;
}
#index-body .application .application-content ul li .box .img-box {
  display: block;
}
#index-body .application .application-content ul li .box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .application .application-content ul li .box .title {
  width: 100%;
  height: 90px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  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;
  padding: 0 35px;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .application .application-content ul li .box .title h4 {
  font-size: 24px;
}
#index-body .application .application-content ul li .box .title span {
  font-size: 14px;
}
#index-body .news {
  position: relative;
  padding: 80px 0 80px;
}
#index-body .news .news-content ul {
  margin: 60px -40px 0;
}
#index-body .news .news-content ul .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 90px;
}
#index-body .news .news-content ul .slick-dots li {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #d5d5d5;
  margin: 0 10px;
  padding: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .news .news-content ul .slick-dots li.slick-active {
  background-color: var(--color);
}
#index-body .news .news-content ul .slick-dots li button {
  display: none;
}
#index-body .news .news-content ul li {
  padding: 0 40px;
  position: relative;
}
#index-body .news .news-content ul li .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .news .news-content ul li .box .date {
  padding-top: 10px;
}
#index-body .news .news-content ul li .box .date .day {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background-color: var(--color);
  color: white;
  font-size: 48px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#index-body .news .news-content ul li .box .date .month {
  font-size: 24px;
  margin-top: 10px;
  text-transform: uppercase;
}
#index-body .news .news-content ul li .box .text {
  margin-left: 30px;
  padding: 10px 25px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
#index-body .news .news-content ul li .box .text h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .news .news-content ul li .box .text p {
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  margin: 25px 0 35px;
}
#index-body .news .news-content ul li .box .text .btn {
  font-size: 16px;
  color: var(--color);
}
#footer {
    position: relative;
    background-color: #000;
    color: #fff;
}
#footer .f-form {
  background: url("../images/f-form-bg.jpg") no-repeat;
  background-size: cover;
  padding: 95px 0 85px;
}
#footer .f-form .h-title {
  color: white;
}
#footer .f-form form {
  margin-right: 40px;
}
#footer .f-form form ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
#footer .f-form form input[type='text'] {
  width: 230px;
  height: 55px;
  border: 1px solid white;
  background-color: rgba(0, 127, 255, 0.1);
  color: white;
  font-size: 18px;
  padding: 0 18px;
  margin-right: 20px;
}
#footer .f-form form input[type='text']:last-child {
  margin-right: 0;
}
#footer .f-form form textarea {
  width: 480px;
  height: 130px;
  border: 1px solid white;
  background-color: rgba(0, 127, 255, 0.1);
  color: white;
  font-size: 18px;
  padding: 10px 18px;
  margin-bottom: 15px;
}
#footer .f-form form input::-webkit-input-placeholder,
#footer .f-form form textarea::-webkit-input-placeholder {
  color: white;
}
#footer .f-form form input[type='submit'] {
  width: 200px;
  height: 55px;
  font-size: 18px;
  color: white;
  background: var(--color);
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .f-form form input[type='submit']:hover {
  background: transparent;
  border-color: var(--color);
  color: var(--color);
}
#footer .footer-t {
  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;
  position: relative;
}
#footer .footer-t .footer-t-gird {
  width: 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;
  padding: 80px 0;
}
#footer .footer-t .footer-t-gird .t-list.contact {
  max-width: 320px;
}
#footer .footer-t .footer-t-gird .t-list.link span:hover {
  color: var(--color);
}
#footer .footer-t .footer-t-gird .t-list.pro-link span {
  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;
}
#footer .footer-t .footer-t-gird .t-list.pro-link span::before {
  content: '>';
  display: inline-block;
  margin-right: 5px;
}
#footer .footer-t .footer-t-gird .t-list.pro-link span:hover {
  color: var(--color);
}
#footer .footer-t .footer-t-gird .qcode {
  width: 500px;
}
#footer .footer-t .footer-t-gird .qcode form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
#footer .footer-t .footer-t-gird .qcode form input[type='text'] {
  width: 48%;
  height: 70px;
  font-size: 16px;
  padding: 0 10px;
  color: black;
  border: none;
}
#footer .footer-t .footer-t-gird .qcode form input[type='text']::-webkit-input-placeholder{
  color: #9c9c9c;
}
#footer .footer-t .footer-t-gird .qcode form input[name='content'] {
  width: 100%;
  height: 70px;
  font-size: 16px;
  padding: 0 10px;
  margin-top: 30px;
}
#footer .footer-t .footer-t-gird .qcode form .submit {
  width: 70px;
  height: 70px;
  background-color: #313131;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
#footer .footer-t .footer-t-gird .qcode form .submit input[type='submit'] {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
}
#footer .footer-t .footer-t-gird .qcode form .submit i {
  color: white;
  font-size: 24px;
  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%);
}
#footer .footer-t .footer-t-gird .link-box .share {
  margin-top: 75px;
  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;
}
#footer .footer-t .footer-t-gird .link-box .share span {
  font-size: 24px;
}
#footer .footer-t .footer-t-gird .link-box .share a {
  margin-right: 30px;
}
#footer .footer-t .footer-t-gird .link-box .share a:hover i {
  color: var(--color);
}
#footer .footer-t .footer-t-gird .link-box .share a i {
  font-size: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .link-box .share a:last-child {
  margin-right: 0;
}
#footer .footer-t .footer-t-gird .t-list {
  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;
}
#footer .footer-t .footer-t-gird .t-list .qc-img img,
#footer .footer-t .footer-t-gird .t-list .qc-img canvas {
  width: 100px;
  height: auto;
}
#footer .footer-t .footer-t-gird .t-list .line {
  width: 100%;
  height: 1px;
  background-color: #bbb;
  position: relative;
  margin: 25px 0 20px;
}
#footer .footer-t .footer-t-gird .t-list .line::before {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #313131;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#footer .footer-t .footer-t-gird .t-list h4 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
}
#footer .footer-t .footer-t-gird .t-list span {
  font-size: 16px;
  line-height: 1.4;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 10px;
}
#footer .footer-t .footer-t-gird .t-list span:last-child {
  margin-bottom: 0;
}
#footer .footer-b .footer-b-box {
  padding: 15px;
}
#footer .footer-b .footer-b-box span {
  display: block;
  font-size: 16px;
}
#footer .footer-b .footer-b-box span:first-child a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-b .footer-b-box span:first-child a:hover {
  opacity: 0.6;
}
#footer .footer-b .footer-b-box img {
  width: 260px;
  height: auto;
  padding-top: 4px;
  margin-left: 5px;
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  #banner .banner-content ul li .content .box {
    max-width: 60%;
    color: white;
  }
}
@media (max-width: 1400px) {
  .ui.container,
  #header .nav,
  #banner .banner-content ul li .content {
    width: 1200px;
  }
  #header .nav,
  #banner .banner-content ul li .content {
    padding: 0 15px;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 30px;
  }
  #index-body .product .bottom ul li {
    width: 25%;
  }
  .font-42 {
    font-size: 30px;
  }
  #footer .footer-t .footer-t-gird .qcode {
    width: 400px;
  }
  #footer .footer-t .footer-t-gird .t-list.contact {
    max-width: 225px;
  }
}
@media (max-width: 1200px) {
  .ui.container,
  #header .nav,
  #banner .banner-content ul li .content {
    width: 1000px;
  }
  #index-body .advantage .advantage-content .container::before{
    display: none;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 20px;
  }
  #banner .banner-content .page {
    display: none;
  }
  #index-body .product .bottom ul li {
    width: 33.333333%;
  }
  #index-body .about .about-content .right {
    max-width: 60%;
  }
  .font-42 {
    font-size: 24px;
  }
  #footer .footer-t .footer-t-gird .qcode {
    width: 300px;
  }
  #footer .footer-t .footer-t-gird .link-box .flex-box .t-list:first-child {
    margin-right: 10% !important;
  }
  #index-body .application .application-content ul li .box .title h4 {
    font-size: 18px;
  }
  #index-body .application .application-content ul {
    margin: 50px -13px 0;
  }
  #index-body .application .application-content ul .slick-current li .box .title {
    padding-left: 35px;
  }
  .h-title h3 {
    font-size: 30px;
  }
  #banner .banner-content ul .slick-list,
  #index-body .application{
    clip-path: none;
  }
  #index-body .product .bg,
  #banner .banner-content .dots-container,
  #banner .banner-content .banner-btn{
    display: none;
  }
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block !important;
  }
  .ui.container,
  #header .nav,
  #banner .banner-content ul li .content {
    width: 700px;
  }
  #index-body .product .bottom ul li {
    width: 50%;
  }
  #banner .banner-content ul .slick-list{
     -webkit-clip-path: none;
    clip-path: none;
  }
  #banner .banner-content ul li .bg {
    min-height: 200px;
  }
  #index-body .about .about-content .right {
    max-width: 100%;
    margin: 60px 0;
  }
  #banner .banner-content .banner-btn {
    display: none;
  }
  #banner .banner-content ul li .content .box {
    width: 100%;
    max-width: 100%;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 24px;
  }
  #footer .footer-t .footer-t-gird .link-box {
    display: none;
  }
  #footer .footer-t .footer-t-gird .qcode {
    width: 45%;
  }
  #footer .footer-t .footer-t-gird .t-list.contact {
    max-width: 45%;
  }
  .home-about .box .left {
    padding-right: 0 !important;
    width: 100%;
  }
  .home-about .box .right {
    width: 100%;
    margin-top: 60px;
  }
}
@media (max-width: 700px) {
  .ui.container,
  #header .nav,
  #banner .banner-content ul li .content {
    width: 500px;
  }
  #banner .banner-content ul li .content .box .more {
    display: none;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 20px;
  }
  #banner .banner-content ul li .content .box h2 {
    margin-bottom: 0;
  }
  #index-body .product .bottom ul li {
    width: 100%;
  }
  #footer .footer-t .footer-t-gird .qcode {
    width: 100%;
    margin-top: 60px;
  }
  #footer .footer-t .footer-t-gird .t-list.contact {
    max-width: 100%;
  }
  #footer .footer-t .footer-t-gird {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-b .footer-b-box span {
    text-align: center;
  }
  #index-body .advantage .advantage-content ul li .box {
    height: auto;
    padding: 50px 30px;
  }
  #index-body .about .about-play > img {
    min-height: 200px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #index-body .advantage .advantage-content ul li {
    padding-top: 0 !important;
  }
  #index-body .application {
    padding: 80px 0;
  }
}
@media (max-width: 500px) {
  .ui.container,
  #header .nav,
  #banner .banner-content ul li .content {
    width: 100%;
  }
  #index-body .advantage .advantage-content .top .btn {
    margin-top: 30px;
  }
  .h-title.center h3 {
    text-align: center;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 16px;
  }
}






@keyframes kz {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
@-webkit-keyframes kz {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
@-moz-keyframes kz {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}


@-webkit-keyframes kzs {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@-moz-keyframes kzs {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@keyframes kzs {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
.inner-page .m-link {
  font-size: 16px;
  line-height: 1.8;
}
.inner-page .m-link a {
  display: block;
}
.inner-page .m-link a:hover {
  text-decoration: underline;
}

.inner-banner {
    height: 500px;
    background-position: center;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 3.5%;
    margin-top: 85px;
}
.inner-banner .box .ig {
  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: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 79px 0 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.85);
}
.inner-banner .box .ig .left {
  position: relative;
  z-index: 1;
  width: 64%;
}
.inner-banner .box .ig .left .mbx {
  font-size: 18px;
  position: relative;
}
.inner-banner .box .ig .left .tit {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 5px;
  position: relative;
}
.inner-banner .box .ig .left::after {
  content: '';
  width: 299px;
  height: 299px;
  position: absolute;
  bottom: -90px;
  left: -126px;
  z-index: -1;
  background: url(../images/in-icon.png) no-repeat;
}
.inner-banner .box .ig .right {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  width: 36%;
  margin-bottom: 10px;
}
@media screen and (max-width: 1680px) {
  .inner-banner .box .ig .left::after {
    left: -80px;
  }
  .inner-banner .box .ig .left .tit {
    font-size: 70px;
  }
}
@media screen and (max-width: 1440px) {
  .inner-banner .box .ig .left::after {
    left: -70px;
  }
  .inner-banner .box .ig .left .tit {
    font-size: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .inner-banner .box .ig .left::after {
    left: -50px;
  }
  .inner-banner .box .ig .left .tit {
    font-size: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .inner-banner .box .ig .left .tit {
    font-size: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner {
    height: auto;
    padding: 60px 0 30px;
    margin-top: 120px;
  }
  .inner-banner .box .ig {
    display: block;
    padding: 30px 0;
  }
  .inner-banner .box .ig .left {
    width: 100%;
  }
  .inner-banner .box .ig .left::after {
    display: none;
  }
  .inner-banner .box .ig .right {
    display: none;
  }
  .xian {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner .box .ig .left .mbx {
    font-size: 16px;
  }
  .inner-banner .box .ig .left .tit {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner .box .ig {
    padding: 20px 0;
  }
  .inner-banner .box .ig .left .mbx {
    font-size: 14px;
    line-height: 2;
  }
  .inner-banner .box .ig .left .tit {
    display: none;
  }
}


.gallery-page {
  padding: 100px 0;
}
.gallery-page .list ul {
  margin: -10px;
}
.gallery-page .list ul li {
  padding: 10px;
}
.gallery-page .list ul li a.img-box {
  display: block;
  border-radius: 5px;
    overflow: hidden;
        border: 1px solid #eee;
    /*box-shadow: 0 0 5px 0 rgb(0 0 0 / 5%);*/
}

.inner-page a.link {
  font-size: 15px;
  line-height: 1;
  display: inline-block;
  padding-bottom: .3em;
  font-weight: 500;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
/*.inner-page a.link:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}*/
.inner-page a.link img {
  margin-left: 1em;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  max-width: .7em;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page a.link:hover {
  color: #e71f1a;
}
.inner-page a.link:hover:before {
  width: 0;
}
.inner-page a.link:hover img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.inner-page .slideBarBox .slideBarLeft {
  width: 30%;
}
.inner-page .slideBarBox .slideBarLeft + .slideBarRight {
  padding-left: 4%;
  padding-right: 0;
}
.inner-page .slideBarBox .slideBarLeft .slide {
  margin-bottom: 40px;
  padding: 50px;
  background-color: #efefef;
}
.inner-page .slideBarBox .slideBarLeft .slide span.h5 {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 1em;
}
.inner-page .slideBarBox .slideBarLeft .slide form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  background-color: white;
}
.inner-page .slideBarBox .slideBarLeft .slide form input {
  width: 100%;
  padding: 1em;
  border: none;
  background-color: transparent;
  color: black;
}
.inner-page .slideBarBox .slideBarLeft .slide form input[type="submit"] {
  width: 4em;
  background-image: url("../images/icon-search-black.png");
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}
.inner-page .slideBarBox .slideBarLeft .slide.search {
  background-color: #e71f1a;
  color: white;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li:last-child {
  margin-bottom: 0;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li a.img {
  width: 30%;
  background-size: cover;
  background-position: center;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content {
  width: 70%;
  padding: 10px 0;
  padding-left: 5%;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content span.h6 {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.6;
  height: 3.2em;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content time {
  display: block;
  font-size: 14px;
  margin-top: .5em;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav {
  font-size: 14px;
  font-weight: 500;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li {
  margin-bottom: 1em;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a {
  padding: 1.5em;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: white;
  background-color: #e71f1a;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a i {
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  background-color: white;
  color: black;
  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;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a:hover {
  background-color: #e71f1a;
}
.inner-page .slideBarBox .slideBarLeft .slide:last-child {
  margin-bottom: 0;
}
.inner-page .slideBarBox .slideBarRight {
  width: 70%;
  padding-right: 4%;
}
.inner-page .product_list ul {
  margin: -15px;
}
.inner-page .product_list ul li {
  padding: 15px;
}
.inner-page .product_list ul li a.img-box {
  display: block;
}
.inner-page .product_list ul li span.h6 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin: 1em 0 .5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .product_list ul li span.h6:hover {
  color: #e71f1a;
}
.inner-page .m-page {
  margin-top: 60px;
  text-align: center;
  font-size: 18px;
  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;
}
.inner-page .m-page a,
.inner-page .m-page span {
  width: 2.5em;
  height: 2.5em;
  border-radius: 5px;
  border: 1px solid #c7c7c7;
 display: inline-block;
  text-align: center;
  line-height: 2.5em;
  margin: 0 .3em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background-color: #e71f1a;
  color: white;
  border-color: #e71f1a;
}

.inner-page a.btn {
  font-size: 15px;
  line-height: 4.53333333em;
  height: 4.53333333em;
  padding: 0 2.4em;
  display: inline-block;
  font-weight: 500;
  color: white;
  background-color: #e71f1a;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page a.btn img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  max-width: .7em;
}
.inner-page a.btn:hover {
  background-color: black;
}
.inner-page .form ul {
  margin: -10px;
}
.inner-page .form ul li {
  padding: 10px;
  font-size: 14px;
}
.inner-page .form ul li label {
  display: block;
  margin-bottom: .5em;
  font-weight: 500;
}
.inner-page .form ul li input,
.inner-page .form ul li textarea {
  display: block;
  width: 100%;
  border: none;
  background-color: transparent;
  padding: .5em 0;
  border-bottom: 1px solid #999;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .form ul li input:focus,
.inner-page .form ul li textarea:focus {
  border-color: #e71f1a;
}
.inner-page .form ul li textarea {
  height: 80px;
}
.inner-page .form ul li.wid-100 {
  width: 100%;
}
.news-page .news-1 {
  padding: 100px 0;
}
.news-page .news-1 .list ul {
  margin: -15px;
}
.news-page .news-1 .list ul li {
  padding: 15px;
}
.news-page .news-1 .list ul li a.img-box {
  display: block;
}
.news-page .news-1 .list ul li .content {
  -o-box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
  -webkit-box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
  box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
  padding: 8% 6%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
  background-color: white;
}
.news-page .news-1 .list ul li .content time {
  font-size: 14px;
  display: block;
    margin-bottom: 10px;
    margin-top: 10px;
}
.news-page .news-1 .list ul li .content span.h6 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 4.5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .list ul li .content .text {
  font-size: 14px;
}
.news-page .news-1 .list ul li .content .pre {
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .list ul li .content .pre .text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  height: 9em;
}
.news-page .news-1 .list ul li .content a.link {
  margin-top: 2em;
}
.news-page .news-1 .list ul li:hover .content {
  margin-top: -30px;
}
.news-page .news-1 .list ul li:hover .content span.h6 {
  opacity: 0;
}
.news-page .news-1 .list ul li:hover .content .text {
  opacity: 1;
}
.news-page .news-1 .list ul li:hover .content .pre {
  padding-bottom: 30px;
}
.newdet-page {
  padding: 100px 0;
}
.newdet-page .slideBarRight time {
  font-size: 14px;
  display: block;
}
.newdet-page .slideBarRight h1 {
  font-size: 40px;
  font-weight: bold;
}
.newdet-page .slideBarRight .text {
  margin: 2em 0;
}
.newdet-page .slideBarRight .text p {
  margin-top: 1em;
      font-size: 17px;
}
.newdet-page .slideBarRight .text p:first-child {
  margin-top: 0;
}
.newdet-page .slideBarRight .share {
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
}
.newdet-page .slideBarRight .share a {
  margin-left: 1em;
  width: 1.5em;
  height: 1.5em;
  background-color: black;
  color: white;
  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;
  border-radius: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .slideBarRight .share a:hover {
  background-color: #e71f1a;
}
.newdet-page .slideBarRight span.h5 {
  font-size: 20px;
  font-weight: 500;
  margin: 2em 0 1em;
  display: block;
}
.inner-page .side-title h4 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
}

@media screen and (max-width: 1700px) {
  .newdet-page,
  .news-page .news-1,
  .gallery-page{
    padding: 70px 0;
  }
  .newdet-page .slideBarRight h1{
     font-size: 32px;
   }
   .inner-page .slideBarBox .slideBarLeft .slide {
    padding: 30px;
  }
  .inner-page .product_list ul li span.h6 {
    font-size: 18px;
  }
  .news-page .news-1 .list ul li .content{
    padding: 7%;
  }
  .news-page .news-1 .list ul li .content span.h6{
    font-size: 18px;
  }
}
@media screen and (max-width: 1450px) {
  .newdet-page .slideBarRight h1{
    font-size: 28px;
  }
  .inner-page a.link {
    font-size: 14px;
  }
    .inner-page .slideBarBox .slideBarLeft .slide {
    padding: 20px;
  }
  .inner-page .slideBarBox .slideBarLeft .slide .nav ul li a {
    padding: 1em;
  }
  .inner-page .slideBarBox .slideBarLeft .slide span.h5 {
    font-size: 18px;
  }
  .inner-page .product_list ul li span.h6 {
    font-size: 16px;
  }
  .news-page .news-1 .list ul li .content{
    padding: 5%;
  }
  .news-page .news-1 .list ul li .content span.h6{
    font-size: 16px;
  }
  .news-page .news-1 .list ul li:hover .content .pre {
    padding-bottom: 50px;
  }
  .news-page .news-1 .list ul li:hover .content {
    margin-top: -50px;
  }
}
@media screen and (max-width: 1250px) {
  .newdet-page .slideBarRight h1{
    font-size: 24px;
  }
    .inner-page .slideBarBox .slideBarLeft + .slideBarRight {
    padding-left: 2%;
  }
    .inner-page .product_list ul li {
    padding: 10px;
  }
  .inner-page .product_list ul {
    margin: -10px;
  }
}
@media screen and (max-width: 1000px) {
    .inner-page .slideBarBox .slideBarLeft {
    display: none;
  }
  .inner-page .slideBarBox .slideBarLeft + .slideBarRight {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page,
  .news-page .news-1{
    padding: 30px 0;
  }

  .newdet-page .slideBarRight h1{
    font-size: 20px;
  }

  .news-page .news-1 .list ul li .content .pre .text {
    position: static;
    opacity: 1;
    margin-top: 1em;
  }
  .news-page .news-1 .list ul li:hover .content span.h6 {
    opacity: 1;
  }
  .news-page .news-1 .list ul li:hover .content {
    margin-top: 0;
  }
  .news-page .news-1 .list ul li:hover .content .pre {
    padding-bottom: 0;
  }
  .news-page .news-1 .list ul li .content a.link {
    margin-top: 1em;
  }
}
@media screen and (max-width: 500px) {
  .news-page .news-1 .list ul li .content span.h6,
  .news-page .news-1 .list ul li .content .pre .text {
    height: auto;
  }
}
.about-page .about-1 {
  background-size: 100% auto;
  padding-top: 100px;
      padding-bottom: 80px;
}
.about-page .about-1 .top .left {
    width: 45%;
    padding-right: 8%;
}
.about-page .about-1 .top .left span {
  font-size: 16px;
  padding-left: 21px;
  position: relative;
}
.about-page .about-1 .top .left span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000000;
}
.about-page .about-1 .top .left .title {
font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
    color: #030303;
    text-transform: capitalize;
}
.about-page .about-1 .top .left .title em {
  display: block;
  text-align: right;
}

.about-page .about-1 .top .right p {
    margin-bottom: 10px;
}
.about-page .about-1 .top .right {
width: 55%;
    font-size: 17px;
    line-height: 1.5;
    color: #000;
}
.about-page .about-1 .img {
  padding-top: 65px;
}
.about-page .about-1 .img .box {
  height: 619px;
  position: relative;
  overflow: hidden;
}
.about-page .about-1 .img .box .play{
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 25px;
}
.about-page .about-1 .img .box .play span{
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  text-align: center;
  line-height: 60px;
  padding-left: 5px;
  position: relative;
  z-index: 1;
}
.about-page .about-1 .img .box .play span::before,
.about-page .about-1 .img .box .play span::after{
  content: '';
  position: absolute;
  z-index: -1;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  -webkit-animation: ks 5s linear infinite;
  -moz-animation: ks 5s linear infinite;
  animation: ks 5s linear infinite;
}
.about-page .about-1 .img .box .play span::before{
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.about-page .about-1 .img .box .mask {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/about-1.jpg);
  background-position: center;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-1 .bottom {
 padding-top: 70px;
  font-size: 17px;
  line-height: 1.5;
  color: #000000;

}
.about-page .about-1 .bottom p {
    margin-bottom: 10px;
}
.about-page .about-1 .data {
  padding-top: 60px;
}
.about-page .about-1 .data ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .about-1 .data ul li {
  position: relative;
  padding: 0 54px 0 51px;
}
.about-page .about-1 .data ul li:nth-child(2) p{
  margin-left: 10px;
}
.about-page .about-1 .data ul li .num {
  font-size: 143px;
  font-weight: bold;
  color: #e71f1a;
  opacity: 0.17;
}
.about-page .about-1 .data ul li p {
  position: absolute;
  top: 43%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 17px;
  line-height: 1.4;
}
.about-page .about-1 .data ul li::after {
  content: '';
  position: absolute;
  top: 34%;
  right: 0;
  width: 1px;
  height: 58px;
  background-color: #000000;
  opacity: 0.1;
}
.about-page .about-1 .data ul li:first-child {
  padding-left: 0;
}
/*.about-page .about-1 .data ul li:last-child {
  padding-right: 0;
}*/
.about-page .about-1 .data ul li:last-child p{
  padding-left: 15px;
}
.about-page .about-1 .data ul li:last-child::after {
  display: none;
}
.about-page .about-2 {
  background: url(../images/about2-bg.jpg) no-repeat center 178px;
  margin-top: 129px;
}
.about-page .about-2 ul li {
  color: #fff;
  padding-bottom: 51px;
  position: relative;
  margin-bottom: 110px;
}
.about-page .about-2 ul li .ig {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.about-page .about-2 ul li .img {
  width: 59.267%;
}
.about-page .about-2 ul li .text {
  width: 40.733%;
  padding: 0 0 106px 53px;
}
.about-page .about-2 ul li .text .tit {
  font-size: 51px;
  font-weight: bold;
}
.about-page .about-2 ul li .text .con {
  font-size: 18px;
  line-height: 1.5;
  color: #f4f0ed;
  opacity: 0.65;
  margin-top: 26px;
}
.about-page .about-2 ul li .nr {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 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;
  padding-right: 32px;
}
.about-page .about-2 ul li .nr .left {
  width: 70.466%;
  text-align: right;
  padding-right: 60px;
}
.about-page .about-2 ul li .nr .left span {
  font-size: 18px;
  padding: 0 112px 0 21px;
  position: relative;
}
.about-page .about-2 ul li .nr .left span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}
.about-page .about-2 ul li .nr .left .title {
  font-size: 117px;
  line-height: 1;
  font-weight: bold;
}
.about-page .about-2 ul li .nr .right {
  width: 29.534%;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.26;
}
.about-page .about-2 ul li:nth-child(odd) .ig {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.about-page .about-2 ul li:nth-child(even) .ig {
  -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;
}
.about-page .about-2 ul li:nth-child(even) .ig .text {
  padding: 41px 44px 0 0;
}
.about-page .about-2 ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-page .about-3 {
  padding: 100px 0;
}
.about-page .about-3 .left {
  width: 58.666%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.about-page .about-3 .left span {
  font-size: 18px;
  line-height: 1.5;
  padding-left: 21px;
  position: relative;
}
.about-page .about-3 .left span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000000;
}
.about-page .about-3 .left .title {
  font-size: 82px;
  color: #030303;
  line-height: 1;
  font-weight: bold;
  margin-top: 21px;
}
.about-page .about-3 .left .title em {
  display: block;
}
.about-page .about-3 .right {
  width: 41.334%;
  padding-left: 101px;
  position: relative;
}
.about-page .about-3 .right .tag {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.about-page .about-3 .right .tag ul {
  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-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 100%;
}
.about-page .about-3 .right .tag ul li {
  list-style: none;
  height: 25%;
  position: relative;
  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: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.about-page .about-3 .right .tag ul li span {
  position: absolute;
  width: 1px;
  height: 0;
  background: #20282d;
  left: 27px;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.about-page .about-3 .right .tag ul li a {
  width: 54px;
  height: 54px;
  line-height: 54px;
  background: #fff;
  color: #20282d;
  position: relative;
  text-align: center;
  border: 1px solid #e6e6e6;
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
}
.about-page .about-3 .right .tag ul li.current span {
  height: 100%;
  bottom: auto;
  top: 0;
}
.about-page .about-3 .right .tag ul li.current a {
  background-color: #000000;
  color: #fff;
  border-color: #000;
}
.about-page .about-3 .right .content ul li {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, rgba(246, 246, 246, 0.8)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(rgba(246, 246, 246, 0.8) 90%, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(rgba(246, 246, 246, 0.8) 90%, rgba(255, 255, 255, 0));
  background: linear-gradient(rgba(246, 246, 246, 0.8) 90%, rgba(255, 255, 255, 0));
  padding: 60px 40px 60px 40px;
  margin-bottom: 60px;
}
.about-page .about-3 .right .content ul li .tit {
     font-size: 68px;
    line-height: 1;
    color: #030303;
    font-weight: bold;
}
.about-page .about-3 .right .content ul li .con {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 21px;
}
.about-page .about-3 .right .content ul li:last-child {
  margin-bottom: 0;
}
.about-page .about-3 .right .content ul li.active {
  background: #f6f6f6;
}
@media screen and (max-width: 1680px) {
  .about-page .about-1 .data ul li {
    padding: 0 50px 0 0;
  }
  .about-page .about-2 {
    background-position-y: 100px;
    background-size: 100% 96%;
  }
  .about-page .about-2 ul li {
    margin-bottom: 60px;
  }
  .about-page .about-3 .left .title {
    font-size: 72px;
  }
}
@media screen and (max-width: 1440px) {
  .about-page .about-1 .top .left {
    padding-right: 8.5%;
  }
  .about-page .about-1 .data ul li .num {
    font-size: 100px;
  }
  .about-page .about-2 ul li .text .tit {
    font-size: 46px;
  }
  .about-page .about-2 ul li .nr .left .title {
    font-size: 90px;
  }
  .about-page .about-2 ul li .text .con {
    font-size: 16px;
  }
  .about-page .about-3 .left .title {
    font-size: 66px;
  }
}
@media screen and (max-width: 1280px) {
  .about-page .about-1 .top .left {
    padding-right: 6%;
  }
  .about-page .about-1 .data ul li {
    padding: 0 26px 0 0;
  }
  .about-page .about-1 .data ul li .num {
    font-size: 80px;
  }
  .about-page .about-2 {
    background-position-y: 0px;
    background-size: 100% 100%;
  }
  .about-page .about-2 ul li {
    margin-bottom: 30px;
  }
  .about-page .about-2 ul li .text {
    padding: 0 0 40px 40px;
  }
  .about-page .about-2 ul li .text .tit {
    font-size: 40px;
  }
  .about-page .about-2 ul li:nth-child(even) .ig {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .about-page .about-2 ul li:nth-child(even) .text {
    padding: 0 40px 0 0;
  }
  .about-page .about-3 .right .content ul li {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1100px) {
  
  .about-page .about-2 ul li .nr .left .title {
    font-size: 83px;
  }
  .about-page .about-3 .left .title {
    font-size: 53px;
  }
  .about-page .about-3 .right .content ul li {
    padding: 40px 20px;
  }
  .about-page .about-3 .right .content ul li .tit {
    font-size: 60px;
  }
  .about-page .about-3 .right .content ul li .con {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .about-page .about-1 .top .left {
    width: 100%;
    padding-right: 0;
  }
  .about-page .about-1 .top .left .title {
    font-size: 24px;
  }
  .about-page .about-1 .top .right {
    width: 100%;
    margin-top: 40px;
  }
  .about-page .about-1 .img {
    padding-top: 40px;
  }
  .about-page .about-1 .bottom {
    padding: 30px 0 0 0;
  }
  .about-page .about-1 .data {
    display: none;
  }
  .about-page .about-2 {
    margin-top: 40px;
  }
  .about-page .about-2 ul li {
    padding-bottom: 0;
  }
  .about-page .about-2 ul li .ig {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-2 ul li .img {
    width: 100%;
  }
  .about-page .about-2 ul li .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .about-page .about-2 ul li .nr {
    position: initial;
    margin-top: 20px;
  }
  .about-page .about-2 ul li .nr .left {
    text-align: left;
  }
  .about-page .about-2 ul li .nr .left .title {
    font-size: 54px;
  }
  .about-page .about-2 ul li:nth-child(even) .ig .text {
    padding: 20px 0;
  }
  .about-page .about-3 .left {
    position: initial;
    width: 100%;
  }
  .about-page .about-3 .right {
    width: 100%;
    margin-top: 30px;
  }
  #footer {
    padding: 60px 0 26px;
  }
}
@media screen and (max-width: 700px) {
  .about-page .about-1 {
    background: transparent;
  }
  .about-page .about-2 ul li .nr .left {
    width: 100%;
    padding-right: 0;
  }
  .about-page .about-2 ul li .nr .right {
    display: none;
  }
  .about-page .about-3 .left .title {
    font-size: 46px;
  }
  #footer{
    padding: 20px 0;
  }
}
@media screen and (max-width: 500px) {

  .about-page .about-1 .top .right {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
  }
  .about-page .about-1 .img {
    padding-top: 20px;
  }
  .about-page .about-1 .img .box {
    height: 300px;
  }
  .about-page .about-1 .bottom {
    font-size: 16px;
    line-height: 1.8;
  }
  .about-page .about-2 ul li .text .tit {
    font-size: 32px;
  }
  .about-page .about-2 ul li .nr .left .title {
    font-size: 40px;
  }
  .about-page .about-3 .left .title {
    font-size: 32px;
  }
  .about-page .about-3 .right {
    padding-left: 0;
  }
  .about-page .about-3 .right .tag {
    display: none;
  }
  .about-page .about-3 .right .content ul li {
    margin-bottom: 20px;
    background: rgba(241, 238, 226, 0.8);
    padding: 30px 15px;
  }
  .about-page .about-3 .right .content ul li .tit {
    font-size: 40px;
  }
  .about-page .about-3 .right .content ul li .con {
    font-size: 16px;
    line-height: 1.8;
  }
}
.inner-page span.tag {
  font-size: 18px;
  padding-left: 21px;
  position: relative;
  text-transform: uppercase;
}
.inner-page span.tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000000;
}
.faq-page {
  padding: 60px 0;
}
.faq-page .faq-1 {
  background: url(../images/faq-bg.png) no-repeat right bottom;
}
.faq-page .faq-1 .header {
  max-width: 1134px;
}
.faq-page .faq-1 .header .title {
  font-size: 90px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.faq-page .faq-1 .content {
  margin-top: 82px;
  border-top: 1px solid #bebebe;
}
.faq-page .faq-1 .content ul li {
  border-bottom: 1px solid #bebebe;
  padding: 34px 0 40px;
  color: #030303;
}
.faq-page .faq-1 .content ul li .tit {
  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;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  cursor: pointer;
}
.faq-page .faq-1 .content ul li .tit em {
  padding-right: 34px;
  width: 90%;
}
.faq-page .faq-1 .content ul li .tit i {
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.faq-page .faq-1 .content ul li .tit i img {
  display: inline-block;
  vertical-align: middle;
}
.faq-page .faq-1 .content ul li .con {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
  display: none;
}
.faq-page .faq-1 .content ul li.active .tit i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faq-page .faq-2 .box {
  background: url(../images/faq-1.jpg) no-repeat center center;
  background-size: 100% 100%;
  padding: 11.459% 20% 10.6771%;
  text-align: center;
}
.faq-page .faq-2 .box .play {
  font-size: 36px;
  color: #fff;
  background-color: rgba(71, 26, 26, 0);
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  width: 280px;
  height: 280px;
  line-height: 280px;
  position: relative;
  text-align: center;
}
.faq-page .faq-3 {
  background: url(../images/ab-wz.png) no-repeat center top;
  margin-top: 13%;
  padding-top: 7%;
}
.faq-page .faq-3 .header {
  color: #030303;
}
.faq-page .faq-3 .header .title {
  font-size: 70px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.faq-page .faq-3 .header p {
  font-size: 27px;
  line-height: 1.3;
  margin-top: 12px;
}
.faq-page .faq-3 .search {
  text-align: center;
  margin-top: 87px;
}
.faq-page .faq-3 .search form {
  max-width: 773px;
  margin: 0 auto;
  position: relative;
}
.faq-page .faq-3 .search form input[type="text"] {
  width: 100%;
  height: 54px;
  border: 0;
  border-bottom: 1px solid #000;
  font-size: 18px;
  padding-right: 176px;
}
.faq-page .faq-3 .search form input[type="text"]::-webkit-input-placeholder {
  color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]:-moz-placeholder {
  color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]::-moz-placeholder {
  color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]:-ms-input-placeholder {
  color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]::placeholder {
  color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="submit"] {
  background: url(../images/faq-icon.png) no-repeat 29px center;
  text-align: right;
  border: 0;
  position: absolute;
  bottom: 14px;
  right: 0;
  font-size: 18px;
  width: 176px;
  text-transform: uppercase;
  color: #030303;
  border-left: 1px solid #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.faq-page .faq-3 .search form input[type="submit"]:hover {
  background-position-x: 30px;
  color: #e71f1a;
  border-color: #e71f1a;
}
@media screen and (max-width: 1000px) {
  .faq-page .faq-1 .header .title {
    font-size: 60px;
  }
  .faq-page .faq-3 .header .title {
    font-size: 52px;
  }
  .faq-page .faq-1 {
    background: transparent;
  }
  .inner-page .m-page{
    margin-top: 40px;
  }
}
@media screen and (max-width: 700px) {
  .faq-page .faq-1 .header .title {
    font-size: 45px;
  }
  .faq-page .faq-1 .content {
    margin-top: 40px;
  }
  .faq-page .faq-3 .header .title {
    font-size: 40px;
  }
  .inner-page .m-page{
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .faq-page {
    padding-top: 0;
  }
  .faq-page .faq-1 .header .title {
    font-size: 36px;
  }
  .faq-page .faq-1 .content {
    margin-top: 20px;
  }
  .faq-page .faq-1 .content ul li .tit {
    font-size: 20px;
    line-height: 1.4;
  }
  .faq-page .faq-1 .content ul li .tit em {
    padding-right: 20px;
  }
  .faq-page .faq-2 .box {
    padding-left: 0;
    padding-right: 0;
  }
  .faq-page .faq-3 {
    background: transparent;
    margin-top: 5%;
  }
  .faq-page .faq-3 .header .title {
    font-size: 36px;
  }
  .faq-page .faq-3 .header p {
    font-size: 20px;
    line-height: 1.4;
  }
  .faq-page .faq-3 .search {
    margin-top: 20px;
  }
  .faq-page .faq-3 .search form input[type="text"] {
    padding-right: 0;
  }
  .faq-page .faq-3 .search form input[type="submit"] {
    position: initial;
    margin-top: 20px;
    border: 1px solid #000;
    height: 50px;
    padding-right: 15px;
    background-position-x: 20px;
  }
}

.service-page .service-1 {
  padding-bottom: 9.8%;
}
.service-page .service-1 .top .left {
  width: 47%;
}
.service-page .service-1 .top .left .title {
  font-size: 90px;
  line-height: 1;
  font-weight: bold;
  color: #030303;
  text-transform: uppercase;
}
.service-page .service-1 .top .right {
  width: 53%;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.65);
  vertical-align: bottom;
  margin-bottom: 10px;
}
.service-page .service-1 .bottom {
  padding: 7.8% 0 0 66px;
}
.service-page .service-1 .bottom ul li {
  /*border-right: 1px solid #dcdcdc;*/
  /*text-align: center;*/
  padding-right: 60px;
  width: 21%;
}
.service-page .service-1 .bottom ul li .ig{
  position: relative;
  padding: 15px 20px 0px 0;
}
.service-page .service-1 .bottom ul li .ig::after{
  content: '';
  display: block;
  height: 100%;
  width: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #dcdcdc;
}
.service-page .service-1 .bottom ul li i{
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-page .service-1 .bottom ul li p {
  font-size: 24px;
  line-height: 1.3;
  color: #030303;
  width: 78%;
  margin-top: 18px;
  text-align: left;
}
.service-page .service-1 .bottom ul li .mores {
  display: block;
  margin-top: 38px;
  position: relative;
  top: auto;
  left: auto;
  height: auto;
  width: auto;
  z-index: 1;
  font-size: 15px;
}
.service-page .service-1 .bottom ul li .mores .link_text {
    position: relative;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
    text-indent: -110px;
    visibility: hidden;
    white-space: nowrap;
    opacity: 0;
    margin-top: -10px;
    -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    -ms-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
}
.service-page .service-1 .bottom ul li .mores .link_icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.4em;
    text-align: center;
}
.service-page .service-1 .bottom ul li .mores:hover .link_text{
    opacity: 1;
		text-indent: 0;
		margin-right: 6px;
		visibility: visible;
}
.service-page .service-1 .bottom ul li:last-child{
  padding-right: 0;
  width: 16%;
}
.service-page .service-1 .bottom ul li:last-child .ig::after {
  display: none;
}
.service-page .service-1 .bottom ul li:hover i{
  filter: brightness(0);
}
.service-page .service-2 {
  position: relative;
  padding: 87px 0 79px;
  z-index: 1;
}
.service-page .service-2 .left {
  width: 53.646%;
}
.service-page .service-2 .right {
  width: 46.354%;
  color: #fff;
  padding: 38px 20px 0 0;
}
.service-page .service-2 .right .ig {
  max-width: 706px;
  padding-left: 57px;
}
.service-page .service-2 .right .header {
  text-align: right;
}
.service-page .service-2 .right .header .tag {
  color: #fff;
  padding-right: 138px;
}
.service-page .service-2 .right .header .tag::before {
  background: #fff;
  top: 8px;
}
.service-page .service-2 .right .header .title {
  text-align: center;
  font-size: 90px;
  line-height: 1;
  font-weight: bold;
  margin-top: 6px;
  margin-left: -132px;
}
.service-page .service-2 .right .header .con {
  font-size: 18px;
  line-height: 1.5;
  opacity: .65;
  text-align: left;
}
.service-page .service-2 .right .list {
  margin-top: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service-page .service-2 .right .list ul li {
  padding: 19px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-page .service-2 .right .list ul li .tit {
  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;
  font-size: 26px;
}
.service-page .service-2 .right .list ul li .tit em {
  width: 90%;
}
.service-page .service-2 .right .list ul li .tit i {
  position: relative;
  width: 14px;
  height: 14px;
}
.service-page .service-2 .right .list ul li .tit i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  top: 6px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-2 .right .list ul li .tit i::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  background: #fff;
  top: 0;
  left: 6px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-2 .right .list ul li .con {
  font-size: 18px;
  line-height: 1.5;
  opacity: .65;
  display: none;
}
.service-page .service-2 .right .list ul li.active .tit i::after {
  opacity: 0;
}
.service-page .service-2::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 54.115%;
  height: 100%;
  background-color: #ac8e60;
}
.service-page .service-3 {
  padding-top: 7.2%;
}
.service-page .service-3 .header {
  text-align: right;
}
.service-page .service-3 .header .title {
  font-size: 90px;
  color: #030303;
  line-height: 1;
  font-weight: bold;
  margin-top: 5px;
}
.service-page .service-3 .content {
  margin-top: 65px;
}
.service-page .service-3 .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -20px;
}
.service-page .service-3 .content ul li {
  padding-right: 20px;
  width: 20.79%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.service-page .service-3 .content ul li .ig {
  border: solid 1px #e71f1a;
  border-radius: 20px;
  padding: 55px 35px 30px 37px;
  height: 383px;
}
.service-page .service-3 .content ul li .ig i{
  display: block;
}
.service-page .service-3 .content ul li .ig .tit {
  font-size: 39px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 15px;
}
.service-page .service-3 .content ul li .ig .con {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  transition: opacity 0.1s ease-out, -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  -moz-transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -moz-transform 0.4s ease-out;
  transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -webkit-transform 0.4s ease-out, -moz-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}
.service-page .service-3 .content ul li .ig .num {
  position: absolute;
  bottom: 30px;
  right: 35px;
  font-size: 16px;
  color: #030303;
  font-weight: bold;
}
.service-page .service-3 .content ul li.active {
  width: 37.63%;
}
.service-page .service-3 .content ul li.active .con {
  opacity: .65;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
.service-page .service-4 {
  padding: 10% 0 5.6%;
}
.service-page .service-4 .header .title {
  font-size: 90px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 22px;
}
.service-page .service-4 .content {
  margin-top: 51px;
}
.service-page .service-4 .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -18px;
}
.service-page .service-4 .content ul li {
  padding-right: 18px;
  width: 17.544%;
  -webkit-transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  overflow: hidden;
}
.service-page .service-4 .content ul li .ig {
  position: relative;
  height: 559px;
}
.service-page .service-4 .content ul li .ig .img {
  margin: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-page .service-4 .content ul li .ig .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1.06) translateZ(0);
  -moz-transform: scale(1.06) translateZ(0);
  transform: scale(1.06) translateZ(0);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -moz-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -moz-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.service-page .service-4 .content ul li .ig .text {
  background: #fff;
  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;
  padding: 34px 8px 51px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.service-page .service-4 .content ul li .ig .text .tit {
  font-size: 41px;
  line-height: 1.1;
  font-weight: bold;
  width: 54%;
}
.service-page .service-4 .content ul li .ig .text .mores {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  padding: 25px 0 19px 38px;
  position: relative;
  z-index: 1;
}
.service-page .service-4 .content ul li .ig .text .mores img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-4 .content ul li .ig .text .mores em {
  margin-left: 28px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-4 .content ul li .ig .text .mores::after {
  content: '';
  position: absolute;
  left: 59px;
  top: 0;
  width: 57px;
  height: 56px;
  border-radius: 50%;
  border: solid 1px #dcdcdc;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-4 .content ul li .ig .text .mores:hover em {
  -webkit-transform: translateX(-86px);
  -moz-transform: translateX(-86px);
  -ms-transform: translateX(-86px);
  transform: translateX(-86px);
}
.service-page .service-4 .content ul li .ig .text .mores:hover img {
  -webkit-transform: translateX(150px);
  -moz-transform: translateX(150px);
  -ms-transform: translateX(150px);
  transform: translateX(150px);
}
.service-page .service-4 .content ul li.active {
  width: 29.824%;
}
.service-page .service-4 .content ul li.active .ig .img {
  height: 425px;
}
.service-page .service-4 .content ul li.active .ig .img img {
  -webkit-transform: scale(1) translateZ(0);
  -moz-transform: scale(1) translateZ(0);
  transform: scale(1) translateZ(0);
}
.service-page .service-4 .content ul li.active .text {
  opacity: 1;
}
@media screen and (max-width: 1680px) {
  .service-page .service-1 .bottom ul li{
    padding-right: 40px;
  }
  .service-page .service-4 .content ul li.active .text{
    display: block;
  }
  .service-page .service-4 .content ul li .ig .text .tit{
    font-size: 36px;
    width: 100%;
  }
  .service-page .service-4 .content ul li.active .text .mores{
    margin-top: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .service-page .service-1 .bottom ul li p{
    width: 90%;
  }
  .service-page .service-2 .right .header .title{
    font-size: 78px;
    margin-left: -90px;
  }
  .service-page .service-3 .content ul li .ig{
    padding: 40px 30px 30px;
  }
  .service-page .service-3 .content ul li .ig .tit{
    font-size: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .service-page .service-1 .top .left .title{
    font-size: 80px;
  }
  .service-page .service-1 .bottom{
    padding-left: 0;
  }
  .service-page .service-1 .bottom ul li p {
    width: 100%;
  }
  .service-page .service-2{
    padding: 50px 0;
  }
  .service-page .service-2 .left,
  .service-page .service-2 .right{
    vertical-align: middle;
  }
  .service-page .service-2 .right{
    padding-top: 0;
  }
  .service-page .service-2 .right .ig{
    padding-left: 30px;
  }
  .service-page .service-2 .right .header .title {
    font-size: 62px;
    margin-left: 0px;
  }
  .service-page .service-3 .content ul li .ig {
    padding: 40px 20px 30px;
  }
  .service-page .service-3 .content ul li .ig .tit {
    font-size: 29px;
  }
}
@media screen and (max-width: 1100px) {
  .service-page .service-1 .top .left .title {
    font-size: 70px;
  }
  .service-page .service-1 .bottom ul li p{
    font-size: 21px;
  }
  .service-page .service-2 .right .header .title{
    font-size: 53px;
  }
  .service-page .service-2 .right .list{
    margin-top: 40px;
  }
  .service-page .service-3 .content ul li .ig .tit {
    font-size: 26px;
  }
  .service-page .service-4 .content ul li .ig{
    height: 400px;
  }
  .service-page .service-4 .content ul li.active .ig .img{
    height: 300px;
  }
  .service-page .service-4 .content ul li .ig .text{
    padding: 15px 8px 20px;
  }
  .service-page .service-4 .content ul li .ig .text .tit{
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .service-page .service-1 .top .left,
  .service-page .service-1 .top .right{
    width: 100%;
  }
  .service-page .service-1 .top .right{
    margin-top: 20px;
  }
  .service-page .service-1 .bottom ul{
    margin-bottom: -20px;
  }
  .service-page .service-1 .bottom ul li:last-child{
    width: 33.3333%;
  }
  .service-page .service-1 .bottom ul li{
    width: 33.3333%;
    margin-bottom: 20px;
  }
  .service-page .service-2 .left{
    display: none;
  }
  .service-page .service-2 .right{
    width: 100%;
  }
  .service-page .service-2::after{
    width: 100%;
  }
  .service-page .service-3 .header .title{
    font-size: 70px;
  }
  .service-page .service-3 .content ul{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
  }
  .service-page .service-3 .content ul li{
    width: 50%;
    margin-bottom: 10px;
  }
  .service-page .service-3 .content ul li.active{
    width: 50%;
  }
  .service-page .service-3 .content ul li .ig .con{
    opacity: .65;
    -webkit-clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
    clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
    -webkit-transition-delay: .4s;
    -moz-transition-delay: .4s;
    transition-delay: .4s;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .service-page .service-3 .content ul li .ig {
    padding: 30px 20px 20px;
  }
  .service-page .service-3 .content ul li .ig .con{
    font-size: 17px;
  }
  .service-page .service-4 .header .title{
    font-size: 66px;
  }
  .service-page .service-4 .content ul{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
  }
  .service-page .service-4 .content ul li{
    width: 50%;
    margin-bottom: 10px;
  }
  .service-page .service-4 .content ul li.active{
    width: 50%;
  }
  .service-page .service-4 .content ul li:last-child{
    width: 100%;
  }
  .service-page .service-4 .content ul li:last-child.active{
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .service-page .service-1 .bottom ul li{
    width: 50%;
    padding-right: 20px;
  }
  .service-page .service-1 .bottom ul li:last-child{
    width: 50%;
  }
  .service-page .service-1 .bottom ul li:nth-child(even){
    padding-right: 0;
  }
  .service-page .service-2 .right .list ul li .tit{
    font-size: 22px;
  }
  .service-page .service-3 .header .title {
    font-size: 53px;
  }
  .service-page .service-3 .content{
    margin-top: 20px;
  }
  .service-page .service-3 .content ul li .ig i{
    zoom: .7;
  }
  .service-page .service-3 .content ul li .ig{
    padding: 10px;
  }
  .service-page .service-3 .content ul li .ig .tit{
    font-size: 24px;
    margin-top: 0;
  }
  .service-page .service-3 .content ul li .ig .num{
    bottom: 0;
  }
  .service-page .service-4 .header .title {
    font-size: 50px;
  }
  .service-page .service-4 .content{
    margin-top: 20px;
  }
  .service-page .service-4 .content ul li .ig .text .tit {
    font-size: 24px;
  }
  .service-page .service-4 .content ul li.active .text .mores{
    zoom: .7;
  }
  .service-page .service-4 .content ul li .ig{
    height: 300px;
  }
}
@media screen and (max-width: 500px) {
  .service-page .service-1 .top .left .title {
    font-size: 50px;
  }
  .service-page .service-1 .top .right{
    font-size: 16px;
    line-height: 1.8;
  }
  .service-page .service-1 .bottom ul li{
    width: 100%;
    padding-right: 0;
  }
  .service-page .service-1 .bottom ul li:last-child{
    width: 100%;
  }
  .service-page .service-1 .bottom ul li .ig{
    padding: 0;
  }
  .service-page .service-1 .bottom ul li .ig::after{
    display: none;
  }
  .service-page .service-2 .right{
    padding: 0 15px;
  }
  .service-page .service-2 .right .ig{
    padding-left: 0;
  }
  .service-page .service-2 .right .header .title {
    font-size: 40px;
  }
  .service-page .service-2 .right .header .con{
    font-size: 16px;
    line-height: 1.8;
  }
  .service-page .service-2 .right .list ul li .tit {
    font-size: 20px;
    line-height: 1.4;
  }
  .service-page .service-3 .header .title {
    font-size: 36px;
  }
  .service-page .service-3 .content ul li,
  .service-page .service-3 .content ul li.active{
    width: 100%;
  }
  .service-page .service-3 .content ul li .ig{
    height: auto;
    padding: 20px 15px;
  }
  .service-page .service-3 .content ul li .ig .tit{
    line-height: 1.5;
  }
  .service-page .service-3 .content ul li .ig .con{
    font-size: 16px;
    line-height: 1.8;
  }
  .service-page .service-4 .header .title {
    font-size: 33px;
  }
  .service-page .service-4 .content ul li,
  .service-page .service-4 .content ul li.active{
    width: 100%;
  }
  .service-page .service-4 .content ul li.active .text .mores{
    zoom: 1;
  }
  .service-page .service-4 .content ul li .ig .text .tit{
    line-height: 1.5;
  }
  .service-page .service-4 .content ul li .ig .text{
    opacity: 1;
    display: block;
  }
}
.application-page {
  padding-bottom: 12%;
}
.application-page .application-list .header {
  max-width: 690px;
}
.application-page .application-list .header .title {
  font-size: 90px;
  font-weight: bold;
  line-height: 1.1;
}
.application-page .application-list .swiper {
  margin-top: 132px;
  padding-bottom: 100px;
}
.application-page .application-list .swiper .tit {
  font-size: 30px;
  line-height: 1.3;
  color: #030303;
  text-align: center;
  margin-top: 25px;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.application-page .application-list .swiper .swiper-slide {
  cursor: pointer;
}
.application-page .application-list .swiper .swiper-slide:hover .tit {
  opacity: 1;
}
.application-page .application-list .swiper .swiper-pagination {
  bottom: 0;
  height: 41px;
}
.application-page .application-list .swiper .swiper-pagination-bullet {
  position: relative;
  width: 1px;
  height: 16px;
  border-radius: 0px;
  display: inline-block;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0 9px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  opacity: 1;
}
.application-page .application-list .swiper .swiper-pagination-bullet-active {
  height: 41px;
  background: #5f5e5f;
}
.tc {
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 79px;
  right: 0;
  width: 100%;
  background: url(../images/beijing.jpg) no-repeat;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.tc .list {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tc .list .item {
  position: relative;
  height: 100vh;
  text-align: center;
  padding: 0vh 15vw 0;
}
.tc .list .item .title {
  font-size: 100px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.tc .list .item .img {
  position: relative;
  max-width: 600px;
  margin: -4% auto 0;
}
.tc .list .item .img .desc {
  position: absolute;
  right: 30px;
  top: 10%;
  /*color: #fff;*/
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
}
.tc .list .item .gallery{
  position: absolute;
  bottom: 100px;
  right: 20%;
}
.tc .list .item .gallery 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;
  margin-right: -20px;
  text-align: right;
  margin: 0 auto;
}
.tc .list .item .gallery ul li{
  padding-right: 20px;
  max-width: 100px;
  cursor: pointer;
}
.tc .list .item .gallery ul li img{
  width: 100%;
}
.tc.active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

@media screen and (max-width: 1440px) {
  .tc .list .item{
    padding: 0 10vw;
  }
}
@media screen and (max-width: 1280px) {
  .tc .list .item{
    padding: 0 6vw;
  }
  .tc .list .item .title{
    font-size: 66px;
  }
}
@media screen and (max-width: 1000px) {
  .application-page .application-list .header .title{
    font-size: 60px;
  }
  .application-page .application-list .swiper{
    margin-top: 60px;
  }
  .application-page .application-list .swiper .tit{
    font-size: 25px;
    line-height: 1.4;
  }
  .tc .list .item{
    padding: 0 10vw;
  }
  .tc .list .item .title{
    font-size: 60px;
  }

}
@media screen and (max-width: 700px) {
  .application-page .application-list .header .title{
    font-size: 40px;
  }
  .application-page .application-list .swiper{
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .tc .list .item{
    padding: 0 6vw;
  }
  .tc .list .item .gallery{
    position: initial;
    margin-top: 20px;
  }
  .tc .list .item .title{
    font-size: 46px;
  }

}
@media screen and (max-width: 500px) {
  .application-page .application-list .swiper{
    overflow: hidden;
    padding: 0 15px 30px;
  }
  .application-page .application-list .swiper .tit{
    opacity: 1;
    font-size: 24px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .tc .list .item .title{
    font-size: 36px;
  }

}







/* product */
.plp-product-list ul {
  margin: -30px;
  margin-bottom: 30px;
}
.plp-product-list li {
  padding: 30px;
}
.product-card .color-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
}
.product-card .color-selector .color-option {
  width: 20px;
  height: 20px;
  padding: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-card .color-selector .color-option.active {
  border: 1px solid #091010;
}
.product-card .color-selector .color-option + .color-option {
  margin-left: 12px;
}
.product-card .color-selector .color-block {
  overflow: hidden;
  background-size: 100%;
  /*background-position: 50%;*/
  position: relative;
  width: 16px;
  height: 16px;
}

.inner-pro-img .item .absolute-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-pro-img .item .hover-image {
  z-index: 0;
  opacity: 0;
  /*-webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;*/
}

.inner-pro-img .item:hover .hover-image {
  opacity: 1;
}




/* prodet */
.prodet-1 .left {
  padding-right: 5%;
      position: sticky;
    top: 100px;
}
.prodet-1 .right table{
  table-layout: fixed;
}
.prodet-1 .small-slide {
  margin-top: 30px;
}
.prodet-1 .small-slide ul {
  margin: -15px;
}
.prodet-1 .small-slide li {
  padding: 15px;
}
.prodet-2 {
  margin-bottom: 80px;
}

.pdp-selector {
	border-top: 1px solid #eee;
}
.color-selector {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}
.color-selector .color-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.color-selector .color-item {
    width: 56px;
    font-size: 14px;
    margin-right: 30px;
    margin-top: 20px;
}
.color-selector .color-item .color-core {
	width: 28px;
    height: 28px;
    padding: 2px;
    border: 1px solid transparent;
    margin: 0 auto;
    cursor: pointer;
}
.color-selector .color-item.active .color-core {
	border-color: #091010;
}
.color-selector .color-item .color-core .color-image-box {
	width: 100%;
    height: 100%;
    background-position: 50%;
    background-size: 72px;
    overflow: hidden;
    position: relative;
}
.color-selector .color-item .color-name {
	text-align: center;
    font-size: 14px;
    color: #979797;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-word;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}



.pdp-action-btns {
	margin: 32px 0 0;
}

.pdp-action-btns a {
    display: inline-block;
    padding: 10px 30px;
    font-size: 15px;
    background: #b91713;
    color: white;
}

.pdp-share-row {
	margin: 32px 0;
}

.collapse-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    letter-spacing: 1px;
    cursor: pointer;
}
.collapse-header .title {
    font-size: 16px;
    color: #091010;
    line-height: 18px;
}
.collapse-header .i-expand {
    font-size: 12px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


@media (max-width: 1800px) {
  .prodet-1 .right table{
    overflow-x: auto;
    width: 100% !important;
    display: block;
  }
  .prodet-1 .right table tr td{
    min-width: 180px;
  }
}

@media (max-width: 1000px) {
  .prodet-1 .left {
    width: 100%;
    padding-right: 0;
    position: static;
  }

  .prodet-1 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 60px;
  }
}






/* custom-nav */
.t_1 {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.flex_cont {
    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
}

.flex_a_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.flex_j_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

#header>.nav>.menu .menu_c {
    text-align: center;
    z-index: 2
}

#header>.nav>.menu .menu_c .menu-menu-container {
    z-index: 2;
    width: 100%
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu {
    width: 100%;
    padding: 0;
    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;
    text-align: left;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item {
    display: inline-block;
    position: relative;
    margin-left: 50px;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item:first-child {
    margin-left: 0
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.active>a{
    color: #fff
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.active>a::before,
#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item:hover>a::before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item:hover>.sub-menu {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item>a {
  display: block;
    padding: 30px 10px;
    text-align: left;
    line-height: 1.2;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    /*color: black;*/
    border-top:3px solid transparent;
    transition: all 0.5s;
}
#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item>a{
      color: #fff !important;
}




/*#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item>a:hover{
  border-color: var(--color);
}*/
#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item>a i {
    font-size: 12px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item>a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0)
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    width: auto;
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    -ms-transform: rotate3d(1, 0, 0, -90deg);
    -o-transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    -webkit-transition: opacity .3s, -webkit-transform .5s;
    transition: opacity .3s, -webkit-transform .5s;
    -o-transition: opacity .3s, -o-transform .5s;
    -moz-transition: transform .5s, opacity .3s, -moz-transform .5s;
    transition: transform .5s, opacity .3s;
    transition: transform .5s, opacity .3s, -webkit-transform .5s, -moz-transform .5s, -o-transform .5s;
    transition: transform .5s, opacity .3s, -webkit-transform .5s;
    -webkit-transition: -webkit-transform .5s, opacity .3s;
    -moz-transition: -moz-transform .5s, opacity .3s;
    border-radius: 2px;
    background-color: #f7f7f7
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu .menu-item {
    color: #000;
    position: relative
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu .menu-item a {
    white-space: nowrap;
    font-size: 16px;
    padding: 8px 12px;
    text-align: left;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(189, 189, 189, 0)
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu .menu-item:hover>a {
    background-color: #000;
    color: #fff
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu .menu-item .sub-menu {
    left: 100%;
    top: 0;
    min-width: 120px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu .menu-item:hover .sub-menu {
    transform: rotate3d(0, 0, 0, -90deg);
    -webkit-transform: rotate3d(0, 0, 0, -90deg);
    -moz-transform: rotate3d(0, 0, 0, -90deg);
    -ms-transform: rotate3d(0, 0, 0, -90deg);
    -o-transform: rotate3d(0, 0, 0, -90deg);
    opacity: 1
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about {
    position: unset
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    -ms-transform: rotate3d(1, 0, 0, -90deg);
    -o-transform: rotate3d(1, 0, 0, -90deg);
    transform-origin: top;
    opacity: 0
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about:hover .menu-content {
    transform: rotate3d(0, 0, 0, -90deg);
    -webkit-transform: rotate3d(0, 0, 0, -90deg);
    -moz-transform: rotate3d(0, 0, 0, -90deg);
    -ms-transform: rotate3d(0, 0, 0, -90deg);
    -o-transform: rotate3d(0, 0, 0, -90deg);
    opacity: 1;
      background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08)
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .container {
    padding: 30px;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one {
    width: 45%;
    padding: 0 15px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutTitle {
    font-size: 32px;
    color: #111;
    line-height: 40px;
    margin-bottom: 15px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutDesc {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #666;
    margin-bottom: 20px;
    width: 80%
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutMore {
    font-size: 14px;
    line-height: initial
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutMore:hover {
    color: #e71f1a
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two {
    width: 25%;
    padding: 0 15px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link {
    margin-top: 16px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link:first-child {
    margin-top: 0
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link a {
    padding: 0;
    margin: 0;
    font-size: 16px;
    display: inline-block;
    position: relative
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #e71f1a;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link a:hover:before {
    width: 100%
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .three {
    width: 30%;
    padding: 0 15px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .three img {
    width: 100%
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .three .shipingbiaoti {
    margin-top: 10px;
    font-size: 16px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product {
    position: unset
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content {
    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);
    transform-origin: top;
    opacity: 0;

    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
 
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08)
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product:hover .menu-content {
    transform: rotate3d(0, 0, 0, -90deg);
    -webkit-transform: rotate3d(0, 0, 0, -90deg);
    -moz-transform: rotate3d(0, 0, 0, -90deg);
    -ms-transform: rotate3d(0, 0, 0, -90deg);
    -o-transform: rotate3d(0, 0, 0, -90deg);
    opacity: 1
}



#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product .child-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px
    
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product .child-title:hover {
    color: #e71f1a
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product .child-img {
    width: auto
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul {
 
        margin: 0 -5px;
}



#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul li a:hover {
    color: #e71f1a;
 
          transition: all .5s ease;
}
#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul li a {
          transition: all .5s ease;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right {
    width: 40%;
    padding: 0 23px 20px;
    font-size: 14px;
    top: 0;
    color: #333
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right ul li {
    width: 33.33%;
    padding: 10px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .container {
    background: #fff;
    padding: 40px 30px;
}

#header > .nav > .menu .menu_c .menu-menu-container > .menu > .menu-item.menu-product .menu-content .right .child-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}


@media (max-width: 1600px) {
  #header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item {
    margin-left: 25px;
  }
}

@media (max-width: 1440px) {
  #header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item {
    margin-left: 15px;
  }
}

@media (max-width: 1230px) {
  #header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item>a {
    padding: 30px 0;
  }
}

.inner-banner span.h2 {
    font-size: 26px;
    font-weight: bold;
}

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



/*新闻*/

.inner-page .sideBarBox .sideBarLeft {
  width: 27%;
  padding-right: 3%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.inner-page .sideBarBox .sideBarLeft form {
  font-size: 16px;
  height: 4.375em;
  border-radius: .25em;
  background-color: #f2f1ec;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.inner-page .sideBarBox .sideBarLeft form input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 1.5em;
}
.inner-page .sideBarBox .sideBarLeft form button {
  width: 4.375em;
  background-color: transparent;
  border: none;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarLeft form button i {
  font-size: 1.6em;
}
.inner-page .sideBarBox .sideBarLeft form button:hover {
  background-color: var(--color);
  color: white;
}
.inner-page .sideBarBox .sideBarLeft .box {
  margin-top: 45px;
}
.inner-page .sideBarBox .sideBarLeft .box span.h2 {
  font-size: 24px;
  margin-bottom: 1em;
}
.inner-page .sideBarBox .sideBarLeft .box .nav {
  font-size: 18px;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li {
  padding: .6em 0;
  border-bottom: 1px solid #e7e7e7;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a {
  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;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a i {
  margin-right: 1.5em;
  opacity: .8;
  font-size: .8em;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a em {
  padding: 0 .5em;
  border-radius: .25em;
  background-color: #eeede7;
  margin-left: auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a:hover {
  color: var(--color);
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a:hover em {
  background-color: var(--color);
  color: white;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li ul {
  padding-left: 2.5em;
  font-size: 0.88888889em;
  margin-top: 1em;
  display: none;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li ul li {
  border-bottom: none;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li.active ul {
  display: block;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li {
  margin-bottom: 15px;
  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;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .img-box {
  width: 30%;
  border-radius: 3px;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content {
  width: 70%;
  padding-left: 4%;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content span.h6 {
  font-size: 18px;
  line-height: 1.33333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content time {
  display: block;
  font-size: 14px;
  color: #9a9a9a;
  margin-top: .4em;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li:last-child {
  margin-bottom: 0;
}

.inner-page .sideBarBox .right {
    width: 73%;
}
.inner-page .sideBarBox .slideBarRight {
    width: 73%;
}
.newdet-page .slideBarRight .text p img.wscnph {
    width: 49%;
    padding: 20px;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .img-box img {
    height: 90px;
    object-fit: cover;
    width: 100%;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList {
    margin-top: 2em;
}


@media (max-width: 1000px) {
  .inner-page .sideBarBox .sideBarLeft {
    display: none;
  }

  .inner-page .sideBarBox .slideBarRight {
    width: 100%;
  }

  .inner-page .sideBarBox .right {
    width: 100%;
  }
}
/*新闻-end*/



.about-page .about-3 .right .content ul li .con p {
    margin-bottom: 10px;
}



/*about-4*/
.about-4 {
    padding: 100px 0 100px;
    background: url(../images/cailiao-bg.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.about-4 .container {
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.about-4 .container .left {
    width: 50%;
    text-align: center;
    padding: 0 5%;
}
.about-4 .container .left .content {
    display: inline-block;
    position: relative;
}
.about-4 .container .left .content .ball {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.about-4 .container .left .content .ball .box {
    border-radius: 100%;
    width: 100%;
    height: 100%;
    -webkit-animation: kz 20s infinite linear;
    -moz-animation: kz 20s infinite linear;
    animation: kz 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    position: relative;
}
.about-4 .container .left .content .ball .box .text1 {
      position: absolute;
    top: 0;
    left: -20px;
    border-radius: 100%;
    width: 140px;
    font-size: 18px;
    padding-top: 45px;
    text-transform: capitalize;
    height: 140px;
    text-align: center;
    color: #fff;
    background: rgba(231,31,26,.4);
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-4 .container .left .content .ball .box .text2 {
     position: absolute;
    top: -40px;
    right: 65px;
    border-radius: 100%;
    width: 125px;
    height: 125px;
    padding-top: 35px;
    text-transform: capitalize;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background: rgba(231,31,26,.5);
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-4 .container .left .content .ball .box .text3 {
     position: absolute;
    top: 155px;
    right: -75px;
    border-radius: 100%;
    width: 175px;
    height: 175px;
    color: #fff;
    text-align: center;
    background: rgba(231,31,26,.6);
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    padding-top: 55px;
    text-transform: capitalize;
    font-size: 20px;
}
.about-4 .container .left .content .ball .box .text4 {
  position: absolute;
    bottom: -40px;
    right: 35px;
    border-radius: 100%;
    width: 170px;
    height: 170px;
    color: #fff;
    text-align: center;
    background: rgba(231,31,26,0.8);
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    padding-top: 70px;
    text-transform: capitalize;
    font-size: 20px;
}
.about-4 .container .left .content .ball .box .text5 {
 position: absolute;
    bottom: 32px;
    left: -50px;
    border-radius: 100%;
    width: 195px;
    height: 195px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    background: rgba(231,31,26,1);
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    padding-top: 65px;
    text-transform: capitalize;
}
.about-4 .container .right {
    width: 50%;
}
.about-4 .container .right .text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.about-4 .container .right h2 {
    font-size: 60px;
    line-height: .8;
    color: #ffffff;
    font-weight: bold;
}
.about-4 .container .right h3 {
     line-height: 2;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    font-style: normal;
    text-transform: capitalize;
}
.about-4 .container .right p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.9);
    margin-top: 10px;
}


@media (max-width: 1000px) {
  .about-4 .container .left {
    display: none;
  }

  .about-4 .container .right {
    width: 100%;
  }

  .about-4 .container .right h3 {
    font-size: 24px;
  }
}

/*实力*/

.capacity-1 .top h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
}
.capacity-1 .top p {
    line-height: 1.8;
    font-size: 17px;
}
.capacity-1 .btnC{
  margin-top: 20px;
}
.capacity-1 .btnC .btn{
  background: #fff;
  color: #e71f1a;
  border: 1px solid #e71f1a;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 40px;
}
.capacity-1 .btnC .btn:hover{
  background: #e71f1a;
  color: #fff;
}

.capacity-1 .btnC .next{
  margin-left: 20px;
}

.capacity-1 .bottom ul{
margin: 0 -10px;
}

.capacity-1 .bottom ul li{
  padding: 10px;
}
.capacity-1 {
    padding: 80px 0;
}
.capacity-1 .top {
    padding-bottom: 20px;
}


.capacity-2 {
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
        padding: 80px 0;
  }
  .capacity-2 .container .title_c {
    position: relative;
    z-index: 2;
  }
  .capacity-2 .container .title_c .left .tips {
    position: relative;
    padding-left: 28px;
    color: #fff;
  }
  .capacity-2 .container .title_c .left .tips .sub1 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 5px;
    left: 0;
  }
  .capacity-2 .container .title_c .left .tips_title {
    margin-top: 10px;
  }
  .capacity-2 .container .title_c .btnC{
    margin: 10px 0 0 auto;
  }
  .capacity-2 .container .title_c .btnC .btn {
    color: #fff;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 40px;
  }
  .capacity-2 .container .title_c .btnC .btn:hover{
    background: #e71f1a;
    color: #fff;
  }
  .capacity-2 .container .title_c .btnC .next{
    margin-left: 10px;
  }
  .capacity-2 .container .title_c .more {
    margin: 10px 0 0 auto;
    color: #e71f1a;
  }
  .capacity-2 .container .title_c .more .more_sub {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e71f1a;
    font-size: 20px;
    margin-right: 18px;
    color: #fff;
  }
  .capacity-2 .container .title_c .more:hover {
    color: #fff;
  }
  .capacity-2 .container .title_c .more:hover .more_sub {
    background-color: #fff;
    color: #e71f1a;
  }
  .capacity-2 .container .title_c .sub_2 {
    position: absolute;
    width: 6px;
    height: 6px;
    top: 90px;
    left: 50%;
    background-color: #fff;
    border-radius: 50%;
  }
  .capacity-2 .container .title_c .sub_3 {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 2px solid #fff;
    top: 80px;
    left: 60%;
  }
  .capacity-2 .container .content {
    margin-top: 30px;
  }
  .capacity-2 .container .content ul {
    margin: 0 -13px;
  }
  .capacity-2 .container .content ul li {
    width: 25%;
    padding: 0 13px;
  }
  .capacity-2 .container .content ul li .box {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    border: 1px solid #898989;
  }
  .capacity-2 .container .content ul li .box .img {
    height: 70px;
    background-position: left center;
  }
  .capacity-2 .container .content ul li .box .title {
  margin-top: 20px;
    text-transform: capitalize;
    height: 60px;
  }
  .capacity-2 .container .content ul li .box .line {
    height: 1px;
    background-color: #5a5a5a;
    margin: 16px 0;
  }
  .capacity-2 .container .content ul li .box .des {
    color: #d1d1d1;
    height: 150px;

  }
  .capacity-2 .container .content ul li .box .more {
    margin-top: 14px;
    color: #d1d1d1;
    line-height: 1;
  }
  .capacity-2 .container .content ul li .box .more .text {
    border-bottom: 1px solid #d1d1d1;
  }
  .capacity-2 .container .content ul li .box .more .sub {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
    border: 1px solid #fff;
  }
  .capacity-2 .container .content ul li .box .more:hover .text {
    color: #e71f1a;
    border-bottom: 1px solid #e71f1a;
  }
  .capacity-2 .container .content ul li .box .more:hover .sub {
    border: 1px solid #e71f1a;
  }
  .capacity-2 .container .content ul .li2 {
    margin-top: 40px;
  }
  .capacity-2 .container .content ul .li3 {
    margin-top: 80px;
  }
  .capacity-2 .container .content ul .li4 {
    margin-top: 120px;
  }


  .capacity-2 .container .title_c .more {
    margin-left: 0;
  }
  .capacity-2 .container .content ul li {
    width: 50%;
    margin-top: 20px;
  }
  .capacity-2 .container .content ul .li4,
  .capacity-2 .container .content ul .li3,
  .capacity-2 .container .content ul .li2 {
    margin-top: 20px;
  }

  .capacity-2 .container .content ul li:hover .box{
    background: rgba(0,0,0,.5);
        transition: all .5s ease;
}
.capacity-2 .container .content ul li .box{
        transition: all .5s ease;
}

.shuzi span {
    font-size: 60px;
    font-weight: 700;
    opacity: .5;
}

.capacity-3 {
    padding-top: 90px;
    background: #eee;
    padding-bottom: 10px;
}

.capacity-3 .bottom{
    text-align: center;
    color: white;
    }
    .capacity-3 .bottom h2 {
    font-size: 44px;
    text-transform: uppercase;
    }
    .capacity-3 .bottom .box{
    padding: 0 16%;
    }
    .capacity-3 .bottom .box ul {
    margin: -50px;
    }
    .capacity-3 .bottom .box ul li {
    padding: 50px;
    }
    .capacity-3 .bottom .box ul li .text{
    vertical-align: middle;
    padding-right: 3%;
    text-align: left;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 1;
    }
    .capacity-3 .bottom .box ul li .text h6 {
    font-size: 22px;
    color: rgba(0,0,0,.5);
    }
    .capacity-3 .bottom .box ul li .text h6 span {
    font-weight: bold;
    font-size: 36px;
    color: #000;
    vertical-align: top;
    line-height: 1.4;
    }
    .capacity-3 .bottom .box ul li .text h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    line-height: 1.2;
    color: #000;
    word-break: break-word;
        margin-bottom: 15px;
    }
    .capacity-3 .bottom .box ul li .img {
    position: relative;
    text-align: left;
    vertical-align: middle;
    left: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    }
    .capacity-3 .bottom .box ul li .img img {
    width: 100%;
    object-fit: cover;
    height: 470px;
    }
    .capacity-3 .bottom .box ul li .img .box2 {
    height: 80%;
    top: 10%;
    width: 30%;
    left: -15%;
    background: #e71f1a;
    padding: 10px;
    position: absolute;
    opacity: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    }
    .capacity-3 .bottom .box ul li .img .box2 span {
    font-size: 22px;
    font-weight: bold;
    }
    .capacity-3 .bottom .box ul li .img .box2 h6 {
    font-size: 12px;
    line-height: 1.2;
    position: absolute;
    padding: inherit;
    width: 100%;
    bottom: 0;
    left: 0;
    }
    .capacity-3 .top h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
        margin-bottom: 15px;
}
.capacity-3 .top p {
    line-height: 1.8;
    font-size: 17px;
        margin-bottom: 15px;
}
.capacity-3 .top .btns a {
    font-size: 15px;
    font-weight: bold;
}
    .capacity-3 .bottom{
    overflow: hidden;
    margin: 90px 0;
    }
    .capacity-3 .bottom .box ul .slick-list {
    overflow: unset;
    }
    .capacity-3 .bottom .box ul .slick-current+div li .text{
    opacity: 0;
    }
    .capacity-3 .bottom .box ul .slick-current+div li .img{
    left: -45%;
    }
    .capacity-3 .bottom .box ul .slick-current+div li .img .box2 {
    opacity: 1;
    }
    .capacity-3 .bottom .box ul .slick-arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    left: 0;
    margin-left: -80px;
    z-index: 1;
    background: url('../images/inner-l.png') center center no-repeat;
 
    border: none;
    cursor: pointer;
    cursor: hand;
    color: transparent;
    font-size: 0;
    }
    .capacity-3 .bottom .box ul .slick-arrow.slick-next {
    margin-top: 40px;
    transform: rotate(180deg);
    }
    
    @media screen and (max-width: 1400px) {
    .capacity-3 .bottom h2 {
        font-size: 36px;
    }
    .capacity-3 .bottom .box ul li .text h3 {
        font-size: 40px;
    }
    
    }
    
    
    @media screen and (max-width: 1200px) {
    .capacity-3 .bottom {
        padding: 20px 0;
    }
    .capacity-3 .bottom .box ul li .text h3 {
        font-size: 22px;
    }
    .capacity-3 .bottom .box ul li .text h6 {
        font-size: 18px;
    }
    .capacity-3 .bottom .box ul li .text h6 span {
        font-size: 24px;
    }
    }
    
    @media screen and (max-width: 700px) {
    .capacity-3 .bottom .box ul li {
        padding: 10px;
    }
    .capacity-3 .bottom .box ul {
        margin: -10px;
    }
    .capacity-3 .bottom .box ul .slick-arrow {
        width: 30px;
        height: 30px;
        background-size: 8px;
        display: none !important;
    }
    .capacity-3 .bottom .box ul li .img .box2 h6 {
        display: none;
    }
    .capacity-3 .bottom .box ul .slick-current+div li .img {
        left: 0 !important;
        margin-top: 10px;
    }
    .capacity-3 .bottom .box ul li .img .box2 {
        display: none;
    }
    
    }

    .capacity-4 {
    padding: 100px 0;
}
.capacity-4 .ui.container {
    display: flex;
        align-items: center;
        flex-wrap: wrap;
}
.capacity-4 .left {
    width: 50%;
}
.capacity-4 .right {
    width: 50%;
        padding-left: 50px;
}


.capacity-4 h2.toubu{
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 35px;

}

.capacity-4 .right p {
    line-height: 1.8;
    font-size: 16px;
    padding: 5px 0;
}


.capacity-4 .right p em {
font-weight: bold; 
}


.capacity-4 .left ul .slick-arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 0;
    right: 40%;
    z-index: 1;
    border: none;
    cursor: pointer;
    color: transparent;
    font-size: 0;
    }
.capacity-4 .left ul .slick-arrow.slick-prev {
          background: url('../images/inner-l.png') center center no-repeat;
          right: 50%;
}
.capacity-4 .left ul .slick-arrow.slick-next {
    background: url('../images/inner-r.png') center center no-repeat;
    }
.capacity-3 .top {
    text-align: center;
}


.capacity-3 .bottom .box ul li .neiro p {
    font-size: 17px;
    color: #222;
}


/*实力*/


#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right.last {
    border-left: 1px solid #ccc;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right ul li .box {
    border: 1px solid #eee;
}
#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right ul li h2 {
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-top: 10px;
}

.product-page .sider-box .left .series {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.product-page .sider-box .left .series h2 {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: bold;
}
.product-page .sider-box .left .series h2.active{
  color: var(--color);
}
.product-page .sider-box .left .series ul li {
    font-size: 16px;
    line-height: 1.8;
}
.product-page .sider-box .left .series ul li a {
  padding: 5px 15px;
}
.product-page .sider-box .left .series ul li a.active {
  color: #FFFFFF;
  background-color: #b91713;
}

.product-page .sider-box .left .series ul li span.active {
  color: #FFFFFF;
}

.product-page .sider-box .left .series ul li > ul {
  display: none;
}

.product-page .sider-box .left .series ul li.active > ul {
  display: block;
}
.product-page .sider-box .left .series ul li > span {
  width: 30px;
  text-align: center;
  margin-top: .25em;
}
.product-page .sider-box .left .series ul li.active > span {
  transform: rotate(90deg);
}

.product-page .sider-box .left .series > ul > li:hover > span {
  color: #FFFFFF;
}

.product-page .sider-box .left .series > ul > li:hover > a {
  color: #FFFFFF;
  background-color: #b91713;
}

.product-page .sider-box .left .series > ul > li li:hover > a {
  color: #FFFFFF;
  background-color: #b91713;
}


.product-page .sider-box .left {
    width: 25%;
        position: sticky;
    top: 100px;
}

.product-page .sider-box .right {
    width: 75%;
        padding-left: 5%;
}

@media (max-width:1000px) {
  .product-page .sider-box .left {
    display: none;
  }

  .product-page .sider-box .right {
    width: 100%;
    padding-left: 0;
  }
}

.inner-pro-img .item:hover .op-imge{
      opacity: 0;
}


.product-page .sider-box .left form {
    font-size: 16px;
    height: 50px;
    background-color: #eee;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
        margin-bottom: 40px;
}


.product-page .sider-box .left form input {
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 0 1.5em;
}


.product-page .sider-box .left form button {
    width: 4.375em;
    background-color: transparent;
    border: none;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.product-page .sider-box .left form button i {
    font-size: 20px;
}

.plp-product-list li .cate {
    text-align: center;
}

.plp-product-list li .name {
    text-align: center;
}
.inner-page.prodet-page {
    padding: 10px 0 0px;
}
.prodet-1 .right .pdp-promotions .cpdd p {
    font-size: 18px;
    padding: 3px 0;
    line-height: 28px;
}
.pdp-share-row a {
    padding-right: 30px;
}

.collapse.normal .collapse-content {
    margin-bottom: 20px;
    padding-left: 25px;
}
.collapse.normal .collapse-content p {
    font-size: 15px;
    line-height: 1.8;
}

.i-category .right li:hover .bag .imgs .img img {
    transform: scale3d(1.05, 1.05, 1);
    transition: all .5s ease;
}
.i-category .right li .bag .imgs .img img {
    transition: all .5s ease;
}


.inner-mbx {
  margin-top: 85px;
    padding: 20px 0;

}
.inner-mbx .mbx {
    font-size: 15px;
        color: #ababab;
        line-height: 28px;
}


.inner-mbx span {
    color: #000;
}

@media (max-width: 1000px) {
  .inner-mbx {
    margin-top: 120px;
  }
}

.prodet-1 .left .slick-slide img {
    background: #f7f5f4;
}
.prodet-1 .left .dt02 li {
    padding: 15px;
}

.prodet-1 .left .dt02 li img.wscnph {
    background: #f7f5f4;
}

.i-category .left .img img {
    width: 100%;
    object-fit: cover;
    min-height: 700px;
}









.about-5 {
  padding: 120px 0;
  overflow: hidden;
      background: url(../images/his-banner.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

#his_pint {
  left: 0;
  top: -120px;
}

.about-5 .left {
  width: 46%;
  z-index: 10;
  right: 0;
  position: absolute;
  top: 18px;
}

.about-5 .right {
  padding-right: 50%;
}

.about-5 .right .topic {
    position: relative;
    padding: 50px 0;
    z-index: 8;
    overflow: hidden;
}

.about-5 .right .topic ._num {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    pointer-events: none;
    width: 100%;
    left: 0;
    font-size: 32px;
    opacity: 0;
    z-index: 8;
    color: #d70c18;
}

.about-5 .right .topic ._num.on {
    opacity: 1;
}

.about-5 .loop {
  position: relative;
  height: 120px;
  margin-top: 180px;
}

.about-5 .loop .list {
  position: relative;
  z-index: 10;
  height: 100%;
}
.about-5 .loop .t-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.1);
}

.about-5 .loop .list ul {
  height: 100%;
}

.about-5 .loop .list ul .slick-list {
  height: 100%;
}

.about-5 .loop .list ul .slick-track {
  height: 100%;
  justify-content: flex-start;
  display: flex;
  align-items: center;
      margin-left: 0;
}

.about-5 .loop .list ul .slick-slide {
  height: auto;
}

.about-5 .loop .list ul .slick-current li .msg,
.about-5 .loop .list li:hover .msg {
  color: #d70c18;
}

/*
.about-5 .loop .list li:hover .dot {
    background-color: #fff;
}*/

.about-5 .loop .list ul .slick-current li .dot:before,
.about-5 .loop .list li:hover .dot:before {
    opacity: 1;
}

.about-5 .loop .list ul .slick-current li .dot:after,
.about-5 .loop .list li:hover .dot:after {
    background-color: #fff;
}

.about-5 .loop .list li {
  text-align: center;
  position: relative;
  cursor: pointer;
}
.about-5 .loop .list li .msg {
  /*left: 0;
  top: 100%;
  display: inline-block;
  width: 100px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;*/
}


.about-5 .loop .list li .dot {
  position: relative;
  display: block;
  line-height: 40px;
  height: 40px;
  width: 50px;
  margin: auto;
  margin-bottom: 18px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

.about-5 .loop .list li .dot:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -3px;
  margin: 5px auto;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  line-height: 15px;
  text-align: center;
  background-color: #d70c18;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

.about-5 .loop .list li .dot:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  margin: 5px auto;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  line-height: 9px;
  text-align: center;
  background-color: #c1c1c1;
}




.about-5 .loop .pager .f-prev {
  left: -6%;
  z-index: 10;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  line-height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 39px;
  text-indent: -4px;
  cursor: pointer;
  color: #888;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

.about-5 .loop .pager .f-prev:hover {
    color: #fff;
    background-color: #000;
}


.about-5 .loop .pager .f-next {
  position: absolute;
  right: -6%;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  line-height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 39px;
  text-indent: 3px;
  cursor: pointer;
  color: #888;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}



.about-5 .loop .pager .f-next:hover {
    color: #fff;
    background-color: #000;
}


@media (max-width: 1230px) {
  .about-5 .right .topic {
    padding: 25px 0;
    height: 100px;
  }

}

@media (max-width: 1000px) {
  .about-5 .loop .pager .f-next,
  .about-5 .loop .pager .f-prev{
    display: none;
  }
  .about-5 .left {
    width: 100%;
    position: static;
  }
  .about-5 .right {
    padding-right: 0;
    margin-bottom: 60px;
  }

  .about-5 .loop {
    margin-top: 40px;
  }
}


.gallery-page.inner-page.honor .list h2 {
    font-size: 32px;
    margin-bottom: 25px;
}



/*设计*/



.contact-page {
    padding-bottom: 110px;
}


.contact-page .left .box2 {
    background-color: #edeef0;
    padding: 30px 5% 90px;
    position: relative;
}

.contact-page .left .box2:before {
    content: '';
    width: 50%;
    height: 70px;
    position: absolute;
    left: 0;
    bottom: 100%;
    background-color: inherit;
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.contact-page .left .box2:after {
    content: '';
    width: 50%;
    height: 70px;
    position: absolute;
    right: 0;
    bottom: 100%;
    background-color: inherit;
}

.contact-page .left .box2 span.h2 {
    font-size: 36px;
    font-weight: 700;
    color: #363636;
    line-height: 1.2;
    display: block;
    margin-bottom: 1.5em;
}

.contact-page .left .box2 .text {
    font-size: 16px;
    color: #7e7f81;
    line-height: 1.4;
}

.contact-page .left .box2 .form {
    margin-top: 50px;
}

.contact-page .left .box2 .form ul li {
    font-size: 16px;
    color: #666;
}

.contact-page .left .box2 .form ul li label {
    display: block;
    margin: 1em 0 .5em;
    font-weight: 600;
}

.contact-page .left .box2 .form ul li label em {
    color: #8e221f;
}

.contact-page .left .box2 .form ul li input,
.contact-page .left .box2 .form ul li textarea {
    display: block;
    width: 100%;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #aaabad;
    padding: .2em 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.contact-page .left .box2 .form ul li input:focus,
.contact-page .left .box2 .form ul li textarea:focus {
    border-color: #8e221f;
}

.contact-page .left .box2 .form ul li textarea {
    height: 140px;
}

.contact-page .left .box2 .form ul li a.more {
    margin-top: 50px;
    border-radius: 15px;
    background-color: #8e221f;
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 10px 30px;
}

.contact-page .left .box2 .form ul li a.more:hover {
    background-color: #8e221f;
}

.contact-page .right {


}

.contact-page .right span.h2 {
    font-size: 36px;
    font-weight: 700;
    color: #363636;
    display: block;
}

.contact-page .right span.h2:after {
    content: '';
    width: 2em;
    height: .11111111em;
    background-color: #000;
    display: block;
    margin-top: .2em;
}

.contact-page .right .text {
    font-size: 16px;
    color: #7e7f81;
    line-height: 1.4;
    margin: 1em 0 1.5em;
}

.contact-page .right .phone {
    font-size: 15px;
    color: #fff;
    padding: 1em;
    text-align: center;
    background-color: #8e221f;
    position: relative;
    margin-bottom: 30px;
}

.contact-page .right span.h5 {
    font-size: 24px;
    font-weight: 700;
    color: #363636;
    display: block;
    line-height: 1.2;
    margin: 1.5em 0 .5em;
}

.contact-page .right span.h6 {
    display: block;
    font-size: 16px;
    color: #7e7f81;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-page .right .info {
    font-size: 16px;
    color: #7e7f81;
}

.contact-page .right .info li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: .5em;
}

.contact-page .right .info li i {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5em;
    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;
}

.contact-page .right .info li i {
    color: #8e221f;
    text-align: center;
    font-size: 16px;
    width: 24px;
}

.contact-page .right iframe {
    height: 800px;
    width: 100%;
}


@media screen and (max-width: 1600px) {
  .contact-page .right {
      padding-top: 60px;
  }

  .contact-page {
      padding-bottom: 60px;
  }

  .contact-page .left .box2 span.h2,
  .contact-page .right span.h2 {
      font-size: 28px;
  }

  .contact-page .right span.h5 {
      font-size: 20px;
  }

  .contact-page .right span.h6 {
      font-size: 14px;
  }
}

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

    .contact-page .left .box2:after,
    .contact-page .left .box2:before {
        height: 10px;
    }

    .contact-page .right .phone {
        font-size: 14px;
    }

    .contact-page .right .info {
        font-size: 14px;
    }

    .contact-page .right span.h5 {
        font-size: 18px;
    }

    .contact-page .right iframe {
        height: 280px;
    }

    .contact-page .left .box2 span.h2,
    .contact-page .right span.h2 {
        font-size: 24px;
    }

}

@media screen and (max-width: 1000px) {
  .contact-page .left {
      width: 100% !important;
      padding-right: 0;
  }

  .contact-page .right {
      width: 100% !important;
      padding-left: 0;
  }

  .contact-page .left .box2 {
      padding: 20px 15px;
  }

  .contact-page .left .box2 .form {
      margin-top: 20px;
  }
}

@media screen and (max-width: 500px) {
  .contact-page .left .box2 span.h2,
  .contact-page .right span.h2 {
        font-size: 20px;
    }
}

.contact-page .left {
    padding: 105px;
}



.contact-01 {
    margin-top: -400px;
    background: #fff;
        margin-bottom: 100px;
}

.contact-01 .box .left span.h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
.contact-01 .box .left .top {
    margin-bottom: 100px;
}

.contact-01 .box .left ul {
    margin-top: 50px;
}

.contact-01 .box .left ul li {
    font-size: 17px;
    color: #575b60;
    padding-bottom: 20px;
}

.contact-01 .box {
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
}


.contact-02 .form ul {
    font-size: 0;
}
.contact-02 .form ul li:nth-child(1),
.contact-02 .form ul li:nth-child(2),
.contact-02 .form ul li:nth-child(3),
.contact-02 .form ul li:nth-child(4) {
    width: 50%;
    display: inline-block;
}


.contact-02 .form ul li label {
    display: none;
}

.contact-02 {
    /*text-align: center;*/
}

.contact-02 span.h2 {
    font-size: 36px;
    font-weight: bold;
}

.contact-02 .form {
    margin-top: 40px;
}

.contact-02 .form ul li:last-child {

    color: #fff;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
        padding: 0;
}
.contact-02 .form ul li:last-child a.more {
    width: 100%;
}


.contact-02 .form ul li:last-child .more:hover::before
{

}

.inner-banner.con {
     height: 700px;
    align-items: normal;
    padding-top: 6%;
        margin-top: 85px;
}


#header>.nav>.menu .menu_c {
    text-align: center;
    z-index: 2
}

#header>.nav>.menu .menu_c .menu-menu-container {
    z-index: 2;
    width: 100%
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu {
    width: 100%;
    padding: 0;
    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;
    text-align: left;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item {
    display: inline-block;
    position: relative;
    margin-left: 50px;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item:first-child {
    margin-left: 0
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.active>a{
    color: #fff
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.active>a::before,
#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item:hover>a::before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item:hover>.sub-menu {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item>a {
  display: block;
    padding: 30px 10px;
    text-align: left;
    line-height: 1.2;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: black;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item>a i {
    font-size: 12px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item>a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color);
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0)
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    width: auto;
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    -ms-transform: rotate3d(1, 0, 0, -90deg);
    -o-transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    -webkit-transition: opacity .3s, -webkit-transform .5s;
    transition: opacity .3s, -webkit-transform .5s;
    -o-transition: opacity .3s, -o-transform .5s;
    -moz-transition: transform .5s, opacity .3s, -moz-transform .5s;
    transition: transform .5s, opacity .3s;
    transition: transform .5s, opacity .3s, -webkit-transform .5s, -moz-transform .5s, -o-transform .5s;
    transition: transform .5s, opacity .3s, -webkit-transform .5s;
    -webkit-transition: -webkit-transform .5s, opacity .3s;
    -moz-transition: -moz-transform .5s, opacity .3s;
    border-radius: 2px;
    background-color: #f7f7f7
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu .menu-item {
    color: #000;
    position: relative
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu .menu-item a {
    white-space: nowrap;
    font-size: 16px;
    padding: 8px 12px;
    text-align: left;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(189, 189, 189, 0)
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu .menu-item:hover>a {
    background-color: #000;
    color: #fff
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu .menu-item .sub-menu {
    left: 100%;
    top: 0;
    min-width: 120px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item .sub-menu .menu-item:hover .sub-menu {
    transform: rotate3d(0, 0, 0, -90deg);
    -webkit-transform: rotate3d(0, 0, 0, -90deg);
    -moz-transform: rotate3d(0, 0, 0, -90deg);
    -ms-transform: rotate3d(0, 0, 0, -90deg);
    -o-transform: rotate3d(0, 0, 0, -90deg);
    opacity: 1
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about {
    position: unset
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    -ms-transform: rotate3d(1, 0, 0, -90deg);
    -o-transform: rotate3d(1, 0, 0, -90deg);
    transform-origin: top;
    opacity: 0
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about:hover .menu-content {
    transform: rotate3d(0, 0, 0, -90deg);
    -webkit-transform: rotate3d(0, 0, 0, -90deg);
    -moz-transform: rotate3d(0, 0, 0, -90deg);
    -ms-transform: rotate3d(0, 0, 0, -90deg);
    -o-transform: rotate3d(0, 0, 0, -90deg);
    opacity: 1
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .container {
    padding: 30px;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one {
    width: 45%;
    padding: 0 15px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutTitle {
    font-size: 32px;
    color: #111;
    line-height: 40px;
    margin-bottom: 15px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutDesc {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #666;
    margin-bottom: 20px;
    width: 80%
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutMore {
    font-size: 14px;
    line-height: initial
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutMore:hover {
    color: #e71f1a
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two {
    width: 25%;
    padding: 0 15px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link {
    margin-top: 16px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link:first-child {
    margin-top: 0
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link a {
    padding: 0;
    margin: 0;
    font-size: 16px;
    display: inline-block;
    position: relative
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #e71f1a;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link a:hover:before {
    width: 100%
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .three {
    width: 30%;
    padding: 0 15px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .three img {
    width: 100%
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-about .menu-content .three .shipingbiaoti {
    margin-top: 10px;
    font-size: 16px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product {
    position: unset
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content {
    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);
    transform-origin: top;
    opacity: 0;

    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08)
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product:hover .menu-content {
    transform: rotate3d(0, 0, 0, -90deg);
    -webkit-transform: rotate3d(0, 0, 0, -90deg);
    -moz-transform: rotate3d(0, 0, 0, -90deg);
    -ms-transform: rotate3d(0, 0, 0, -90deg);
    -o-transform: rotate3d(0, 0, 0, -90deg);
    opacity: 1
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left {
    position: relative;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product {
    font-size: 14px;

    padding-right: 20px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product .child-title {
     display: none;
    font-size: 17px;
    margin-bottom: 20px
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product .child-title:hover {
    color: #e71f1a
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product .child-img {
    width: auto
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul li {
    margin-top: 5px;
    font-size: 16px;
    padding: 0 5px;
    margin-bottom: 10px;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul li a:hover {
    color: #e71f1a;
 
          transition: all .5s ease;
}
#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul li a {
          transition: all .5s ease;
              font-size: 14px;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right {
    width: 38%;
    padding: 0 23px 20px;
    font-size: 14px;
    top: 0;
    color: #333
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right ul li {
    width: 33.33%;

}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .container {
    padding: 40px 30px;
}

#header > .nav > .menu .menu_c .menu-menu-container > .menu > .menu-item.menu-product .menu-content .right .child-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}


@media (max-width: 1600px) {
  #header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item {
    margin-left: 25px;
  }
}

@media (max-width: 1440px) {
  #header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item {
    margin-left: 15px;
  }
}

@media (max-width: 1230px) {
  #header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item>a {
    padding: 30px 0;
  }
}


.inner-page.prodet-page .det {
  margin-top: 40px;
  padding-bottom: 60px;
}
.inner-page.prodet-page .det ul{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}
.inner-page.prodet-page .det ul li{
  font-size: 16px;
  padding: 5px 15px;
   -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-right: 10px;
  cursor: pointer;
  background: #f6f6f6;
}
.inner-page.prodet-page .det ul li:hover,
.inner-page.prodet-page .det ul li.active{
  background: #014099;
  color: white;
}
.inner-page.prodet-page .det .detbox{
  font-size: 18px;
  margin-top: 30px;
}
.inner-page.prodet-page .det .sidebar,
.inner-page.prodet-page .det .inner-prodet-right{
  float: unset;
      font-size: 17px;
}
/*.inner-page.prodet-page .det .inner-prodet-right .content{
  display: none;
}*/
.inner-page.prodet-page .det .inner-prodet-right .content.active{
  display: block;
}
.inner-page.prodet-page .det table tr td{
  width: auto !important;
  word-break: normal;
  border: 1px solid #eee;
  color: black;
}
.inner-page.prodet-page .det table tr{
  background: unset;
}
 
@media screen and (max-width: 1000px) {
  .capacity-2 .container .title_c .left .tips_title{
    font-size: 24px;
    word-break: break-all;
  }
  .capacity-2 .container .title_c .left .tips_title br{
    display: none;
  }
  .inner-page.prodet-page .det table{
    display: block;
    width: 100%;
    overflow-y: auto;
  }
  .inner-page.prodet-page .det table tr td{
    width: 200px !important
  }
}
 
.inner-page.prodet-page .det .tab-2 table tr:nth-child(2) td,
.inner-page.prodet-page .det table tr:nth-child(1) td{
  border-color: white;
  color: white;
}
/*.inner-page.prodet-page .det .det_box{
  height: 520px;
  overflow: hidden;
}*/
.inner-page.prodet-page .det.active .det_box{
  height: auto;
}
.inner-page.prodet-page .det .arrow{
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 40px;
  cursor: pointer;
}
.inner-page.prodet-page .det.active  .arrow{
  -webkit-transform: translateX(-50%) rotate(180deg);
  -moz-transform: translateX(-50%) rotate(180deg);
  -ms-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
}


 .sidebar.fl {
    margin-bottom: 25px;
}
 .det .sidebar.fl p {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
}


.det ul li:hover, .det ul li.active {
    background: #014099;
    color: #fff;
}

.det ul li {
    font-size: 16px;
    padding: 5px 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin-right: 10px;
    cursor: pointer;
    background: #f6f6f6;
}

.about-4 .container .right .content ul {
    margin-top: 35px;
}


.about-4 .container .right .content ul li {
    color: #fff;
    font-size: 17px;
    line-height: 2;
}

.capacity-1 .right {
    padding-left: 60px;
}

.capacity-1 .right h2 {
    font-size: 26px;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
}
.capacity-1 .right p {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 10px;
}

.why-page {
  overflow: hidden;
}
.why-page .slide {
  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;
}
.why-page .slide .left {
  width: 50%;
  padding-right: 5%;
}
.why-page .slide .left .content {
  min-height: 350px;
  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-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;*/
}
.why-page .slide .left .content span.tag {
  margin-bottom: .5em;
}
.why-page .slide .left .content span.h2 {
 margin-top: 0;
    font-size: 36px;
    line-height: 1.4;
    font-weight: bold;
  /*margin-bottom: auto;*/
}
.why-page .slide .left .content .text {
  margin: 1em 0 3em;
      font-size: 18px;
    color: #222;
    line-height: 1.7;
}
.why-page .slide .left .content a.link {
  --color2: var(--color);
      display: flex;
  /*margin-top: auto;*/
}
.why-page .slide .right {
  width: 50%;
}
.why-page .slide .img {
    min-height: 780px;
    width: 126%;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.why-page .slide:nth-child(even) {
  -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;
}
.why-page .slide:nth-child(even) .left {
  padding-left: 5%;
  padding-right: 0;
}
.why-page .slide:nth-child(even) .right {
  direction: rtl;
}

.why-page .slide:nth-child(even) .right .img {
    background-position: center left;
}
.why-page .slide .left .content .text p {

}


.why-page .slide .left .link em {
    border-bottom: 1px solid var(--color2);
    line-height: 1;
    margin-right: 1em;
}

.why-page .slide .left .link i.iconfont {
    width: 2em;
    height: 2em;
    border-radius: 100%;
    border: 1px solid var(--color2);
    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;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.why-page .slide .left .link {
    font-size: 17px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    --color2: #fff;
    color: var(--color2);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.inner-page.prodet-page .det.active .det_box span {

}


.prodet-2 .txt-center {
    font-size: 25px;
    text-transform: capitalize;
}


.plp-product-list li:hover .inner-pro-img .item.pr img {
    transform: scale3d(1.05, 1.05, 1);
    transition: all .5s ease;
}

.plp-product-list li .inner-pro-img .item.pr img {

    transition: all .5s ease;
}

.plp-product-list li {

    transition: all .5s ease;
}

.plp-product-list li .inner-pro-img .item.pr {
    background: #f0f0f0;
}
.inner-page.prodet-page .det .det_box table {
    width: 100% !important;
}


/*设计*/

#Pop_UpsBtn{
  bottom: 8% !important;
}

#header .nav a.logo img {
    width: 85%;
}
.home-about .box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.home-about .box .right .h-cont p {
    font-size: 17px;
    padding: 8px 0;
}
.home-about .box .right .h-cont {
    margin-top: 30px;
    margin-bottom: 40px;
}
.home-about .box .right a.btn i {
    margin-top: 15px;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    line-height: 45px;
    color: black;
    font-size: 20px;
    border: 1px solid black;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

/*.home-about .box .right a.btn i:hover {
    color: #fff;
    border: 1px solid var(--color);
    background-color: var(--color);
}*/

.home-about .box .right a.btn i:hover {
    color: #fff;
    border: 1px solid var(--color);
    background-color: var(--color);
    width: 100px;
    border-radius: 5%;
}
.home-about .box .left {
    padding-right: 80px;
}
.home-about .box .left img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}
.home-about {
    padding: 80px 0;
}


.home-news ul li .box .text h4 {
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.home-news ul li .box .img {
    padding-right: 20px;
}
.home-news ul li .box .img img {
    width: 100%;
    object-fit: cover;
    height: 200px;
}
.home-news ul li .box .text p {
    font-size: 15px;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin: 10px 0;
}

.home-news a.link {
    font-size: 15px;
    line-height: 1;
    display: inline-block;
    padding-bottom: 0.3em;
    font-weight: 500;
    position: relative;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}


.home-news a.link img {
    margin-left: 1em;
    -webkit-filter: brightness(0);
    filter: brightness(0);
    max-width: 0.7em;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.home-news a.link:hover {
    color: #e71f1a;
}
.home-news a.link:hover img {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.home-news {
  padding: 80px 0;
    background: #eeeeee;
}

.home-news ul {
    margin-top: 45px;
}

.home-news ul li .box {
    padding: 0 20px;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul li .box .img {
    background: #eee;
        margin-bottom: 10px;
}


.product-page .sider-box .right .text {
    font-size: 17px;
    margin-top: 15px;
}
.inner-page.product-y .inner-pro-img {
    margin-bottom: 20px;
}



.inner-page.prodet-page .det .det_box01 table tr:nth-child(1), .inner-page.prodet-page .det .det_box01 table tr:nth-child(2) {
    background: #b91713;
    color: white;
}


.inner-page.prodet-page .det .det_box02 table tr:nth-child(1), 
.inner-page.prodet-page .det .det_box02 table tr:nth-child(2), 
.inner-page.prodet-page .det .det_box02 table tr:nth-child(3) {
    background: #b91713;
    color: white;
} 



.inner-page.prodet-page .det .det_box01 table tr:nth-child(1) td,
.inner-page.prodet-page .det .det_box01 table tr:nth-child(2) td
 {
    border-color: white;
    color: white;
}


.inner-page.prodet-page .det .det_box02 table tr:nth-child(1) td,
.inner-page.prodet-page .det .det_box02 table tr:nth-child(2) td,
.inner-page.prodet-page .det .det_box02 table tr:nth-child(3) td
 {
    border-color: white;
    color: white;
}

.inner-page.prodet-page .det h2.det_biao {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
}

.inner-page.prodet-page .det table {
    font-size: 15px;
}
.inner-page.prodet-page .prodet-1 .box {
    overflow: hidden;
}
.box-yd h2 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 35px;
}

.home-about .h-title h3 {
    display: block;
}
.home-about .h-title h3 em {
    color: var(--color);
}
.home-about .box .right .h-cont h2 {
    color: var(--color);
    font-size: 20px;
    font-weight: bold;
}



#index-body .advantage .advantage-content ul li .box img {
    filter: drop-shadow(0 200px #b91713);
    position: relative;
    bottom: 200px;
}

#index-body .advantage .advantage-content ul li .box{
      overflow: hidden;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul li .box {
    text-align: center;
}

/*设计-end*/


    .seoPublic .title {
        font-size: 32px;
        font-weight: bold;
        line-height: 1.4;
        margin-bottom: 2em;
    }

    .seoPublic > div {
        padding: 60px 0;
    }

    .seoPublic > div:nth-child(odd) {
        background: #fafafa;
    }

    .seoPublic .Auxil-about .box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

    .seoPublic .Auxil-about .box .left {
        width: 40%;
    }

    .seoPublic .Auxil-about .box .left .img {
        height: 100%;
        background-size: cover;
        background-position: center center;
        display: block;
    }

    .seoPublic .Auxil-about .box .right {
        width: 60%;
        padding-left: 5%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: 24px;
        font-weight: normal;
        line-height: 1.2;
        margin-bottom: 1em;
    }

    .seoPublic .Auxil-about .box .right .text {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
        max-height: 400px;
        overflow: auto;
    }

    .seoPublic .Auxil-honor .list ul {
        margin: -10px;
    }

    .seoPublic .Auxil-honor .list ul li {
        padding: 10px;
    }

    .seoPublic .Auxil-honor .list ul li a {
        display: block;
    }

    .seoPublic .Auxil-honor .list ul li a img {
        width: 100%;
    }

    .seoPublic .Auxil-news .list ul {
        margin: -13px;
    }

    .seoPublic .Auxil-news .list ul li {
        padding: 13px;
    }

    .seoPublic .Auxil-news .list ul li a.img-box {
        display: block;
        height: 240px;
        background-size: cover;
        background-position: center center;
    }

    .seoPublic .Auxil-news .list ul li .content {
        margin-top: 30px;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: 22px;
        line-height: 1.4;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-news .list ul li .content time {
        font-size: 14px;
        margin-top: .5em;
        display: block;
    }

    .seoPublic .Auxil-news .list ul li .content p {
        font-weight: 300;
        font-size: 16px;
        line-height: 1.4;
        margin: 1em 0;
    }

    .seoPublic .Auxil-news .list ul li .content a.link {
        font-weight: 300;
        font-size: 16px;
        text-transform: uppercase;
        line-height: 1;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        border-bottom: 1px solid transparent;
        display: inline-block;
    }

    .seoPublic .Auxil-news .list ul li .content a.link:hover {
        border-color: var(--color);
        color: var(--color);
    }

    .seoPublic .Auxil-form .form ul {
        margin: -10px;
    }

    .seoPublic .Auxil-form .form ul li {
        padding: 10px;
    }

    .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea {
        display: block;
        width: 100%;
        border: 1px solid #eee;
        font-size: 16px;
        padding: 8px 15px;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-form .form ul li textarea {
        height: 100px;
    }

    .seoPublic .Auxil-form .form ul li input:focus,
    .seoPublic .Auxil-form .form ul li textarea:focus {
        border-color: var(--color);
    }

    .seoPublic .Auxil-form .form ul li.wid-100 {
        width: 100%;
    }

    .seoPublic .Auxil-form .form ul li input[type="submit"] {
        width: auto;
        display: inline-block;
        padding-left: 25px;
        padding-right: 25px;
        background: var(--color);
        color: whitesmoke;
        border: none;
    }

    .seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
        background: #222;
    }

    .seoPublic .seoIndustry .text {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
    }

    .seoPublic .text a {
        color: var(--color);
    }

    .seoPublic .text a:hover {
        text-decoration: underline;
    }

    .seoPublic .Auxil-through {
        padding: 15px 0;
        background: none !important;
    }

    .seoPublic .Auxil-through a {
        display: inline-block;
        line-height: 40px;
        height: 40px;
        padding: 0 25px;
        font-size: 14px;
        color: black;
        border: 1px solid #eee;
        background: #f8f8f8;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-through a:hover {
        background: var(--color);
        color: white;
    }

    .seoPublic .Auxil-related .list ul {
        margin: -20px -25px;
    }

    .seoPublic .Auxil-related .list ul li {
        padding: 20px 25px;
    }

    .seoPublic .Auxil-related .list ul li .box {
        display: block;
        background: white;
        -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    }

    .seoPublic .Auxil-related .list ul li .box a.img-box {
        display: block;
    }

    .seoPublic .Auxil-related .list ul li .box .content {
        display: block;
        padding: 20px;
        text-align: center;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: 22px;
        color: #111;
        font-weight: 500;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content p {
        display: block;
        font-size: 16px;
        color: #888;
        line-height: 1.6;
        font-weight: 400;
        margin: .5em 0;
        height: 4.8em;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        height: 40px;
        padding: 0 20px;
        border: 1px solid var(--color);
        font-size: 16px;
        font-weight: 700;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more i {
        margin-left: 5px;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more:hover {
        color: white;
        background: var(--color);
    }

    @media screen and (max-width: 1400px) {
        .seoPublic .title {
            font-size: 28px;
            margin-bottom: 1.5em;
        }

        .seoPublic .Auxil-about .box .right div.title,
        .seoPublic .Auxil-related .list ul li .box .content div.h3 {
            font-size: 20px;
        }

        .seoPublic .Auxil-form .form ul li input,
        .seoPublic .Auxil-form .form ul li textarea,
        .seoPublic .Auxil-about .box .right .text,
        .seoPublic .Auxil-news .list ul li .content p,
        .seoPublic .seoIndustry .text,
        .seoPublic .Auxil-related .list ul li .box .content p {
            font-size: 14px;
        }

        .seoPublic .Auxil-news .list ul li .content div.h6 {
            font-size: 18px;
        }

        .seoPublic .Auxil-related .list ul li .box .content a.more {
            font-size: 14px;
            line-height: 34px;
            height: 34px;
            padding: 0 15px;
        }

        .seoPublic .Auxil-related .list ul li {
            padding: 15px;
        }

        .seoPublic .Auxil-related .list ul {
            margin: -15px;
        }
    }

    @media screen and (max-width: 1000px) {
        .seoPublic .title {
            font-size: 24px;
            margin-bottom: 1em;
        }

        #cp-Nav {
            display: block;
        }

        #cp-Nav .nav {
            padding: 0 15px;
        }

        #cp-Nav .nav div.title {
            font-size: 18px;
            font-weight: bold;
            padding: 8px 10px;
            background: var(--color);
            border-radius: 5px;
            color: white;
        }

        #cp-Nav .nav i.mask {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 230;
            background: rgba(0, 0, 0, 0.2);
        }

        #cp-Nav .nav > ul {
            display: none;
        }

        #cp-Nav .nav ul {
            position: fixed;
            top: 10%;
            max-height: 80%;
            left: 5%;
            width: 90%;
            padding: 20px;
            border-radius: 5px;
            background: white;
            z-index: 300;
            font-size: 16px;
            overflow: auto;
        }

        #cp-Nav .nav ul ul {
            padding: 0 10px;
            font-size: 14px;
            position: static;
            max-height: none;
            width: 100%;
            margin: 10px 0;
        }

        #cp-Nav .nav ul li a {
            display: block;
            padding: 5px 0;
            line-height: 28px;
        }

        .seoPublic .Auxil-about .box {
            display: block;
        }

        .seoPublic .Auxil-about .box .right {
            width: 100%;
            padding: 0;
            margin-top: 20px;
        }

        .seoPublic .Auxil-about .box .left {
            width: 100%;
            padding: 0;
        }

        .seoPublic .Auxil-about .box .left .img {
            height: 300px;
        }

        .seoPublic .Auxil-about .box .right div.h3 {
            font-size: 18px;
        }

        .seoPublic > div {
            padding: 30px 0;
        }
        .seoPublic .Auxil-about .box .right .text {
            max-height: none;
        }
    }
    
    .inner-page.prodet-page .det .det_box04{
      padding-top: 70px;
    font-size: 16px;
    line-height: 30px;
    }
    .inner-page.prodet-page .det .det_box04 p{
      max-height: 120px;
    overflow-y: scroll;
    }

  
table {
    border-collapse: collapse;
    border-spacing: 0;
    font: inherit;
    margin-bottom: 20px;
    word-break: break-word;
    width: 100%!important;
    height: auto!important;
    display: block;
    overflow: auto
}

table tbody {
    display: table;
    min-width: 700px;
    width: 100%!important
}

table td,table th {
    padding: 5px 10px;
    border: 1px solid #888;
    width: auto!important;
    height: auto!important
}

table tr {
    width: auto!important;
    height: auto!important
}

table tr:nth-child(even) {
    background: #eee
}

@media screen and (max-width: 1000px) {
    table tbody {
        white-space:nowrap
    }
}