@font-face {
  font-family: 'AktivGroteskEx-Regular';
  src: url(../fonts/AktivGroteskEx-Regular.ttf) format('truetype'), url(../fonts/AktivGroteskEx-Regular.eot) format('eot'), url(../fonts/AktivGroteskEx-Regular.woff) format('woff'), url(../fonts/AktivGroteskEx-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Syne-Bold';
  src: url(../fonts/Syne-Bold.ttf) format('truetype'), url(../fonts/Syne-Bold.eot) format('eot'), url(../fonts/Syne-Bold.woff) format('woff'), url(../fonts/Syne-Bold.woff2) format('woff2');
}
input::-webkit-input-placeholder {
  color: #8e8e8e;
}
textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
input::-moz-placeholder {
  color: #8e8e8e;
}
input:-moz-placeholder {
  color: #8e8e8e;
}
input:-ms-input-placeholder {
  color: #8e8e8e;
}
body {
  margin: 0 auto;
  padding: 0;
  --color: #b51f2a;
  --yellow: #fccf1b;
  font-family: 'AktivGroteskEx-Regular';
  --font: 'Syne-Bold';
  background-color: #fff;
  max-width: 1920px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1750px;
  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-color: transparent;
}
#header.inner-header{
  background-color: black !important;
}
#header.active {
  background-color: black;
}
#header .nav {
  position: relative;
  height: 90px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: 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: 65px;
  font-size: 18px;
  color: #fff;
  -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;
  font-family: var(--font);
  border-bottom: 1px solid transparent;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  border-color: white;
}
#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 .h-search {
  margin-left: 50px;
  margin-right: 20px;
  cursor: pointer;
  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;
}
.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;
}
.language-box .zhuyu span {
  font-size: 12px;
  color: white;
  margin-left: 10px;
  margin-right: 5px;
  padding-top: 2px;
}
.language-box .zhuyu i {
  font-size: 14px;
  color: white;
}
.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: 110px;
  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;
}
#banner .banner-content {
  position: relative;
}
#banner .banner-content ul li .line-center{
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  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%);
  z-index: 2;
}
#banner .banner-content ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 5;
}
#banner .banner-content ul li::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 90px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 5;
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .content {
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 10;
  color: white;
}
#banner .banner-content ul li .content .left {
  padding-top: 0px;
  max-width: 45%;
  transform: translate(0, 0);
  position: relative;
}
#banner .banner-content ul li .content .left h2 {
  font-size: 64px;
  font-family: var(--font);
  line-height: 1.2;
}
#banner .banner-content ul li .content .left p {
  margin: 20px 0 50px;
}
.font-18{
    line-height: 32px;
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#banner .banner-bot {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80px;
  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;
}
#banner .banner-bot a {
  margin-right: 25px;
}
#banner .banner-bot a i {
  color: white;
  font-size: 20px;
  transition: all 0.5s
}
#banner .banner-bot a:hover i {
    color: black;
}
.more {
  padding: 13px 70px 7px;
  background-color: var(--color);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 35px;
}
.more:hover {
  border-color: var(--color);
  background-color: transparent;
}
.more:hover span {
  color: var(--color);
}
.more span {
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 30px;
  font-family: var(--font);
  color: white;
}
.more.black {
  background-color: black;
}
.more.black span {
  color: white;
}
.more.black:hover {
  background-color: transparent;
  border-color: white;
}
.h-title {
  text-align: center;
}
.font-20{
    line-height: 36px;
}
.font-16{
    line-height: 30px;
}
.font-35{
    font-size: 34px!important;
    line-height: 1.4;
}
.h-title span {
  font-size: 16px;
  line-height: 30px;
  color: var(--color);
  text-transform: uppercase;
  font-family: var(--font);
}
.h-title h3 {
  font-size: 50px;
  font-family: var(--font);
  color: #181818;
  position: relative;
  text-align: center;
  line-height: 1.2;
  margin-top: 15px;
}
.h-title p {
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
}
@-webkit-keyframes scale_play {
  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 scale_play {
  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 scale_play {
  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);
  }
}
#index-body .category {
  padding: 90px 0 90px;
  position: relative;
  background-color: #f2f2f2;
}
#index-body .category .category-content .tag {
  position: absolute;
  left: 15px;
  top: 25px;
}
#index-body .category .category-content .btn {
  position: absolute;
  left: 15px;
  top: 41%;
}
#index-body .category .category-content .btn span {
  cursor: pointer;
}
#index-body .category .category-content .btn span:first-child {
  margin-right: 35px;
}
#index-body .category .category-content .btn span:hover i {
  color: var(--color);
}
#index-body .category .category-content .btn span i {
  font-size: 30px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .category-content ul {
  margin: 0 -20px 0;
}
#index-body .category .category-content ul li {
  padding: 105px 20px 60px;
  position: relative;
}
#index-body .category .category-content ul li h2 {
    font-size: 100px;
    color: #fafafa;
    position: absolute;
    left: 90%;
    top: -100px;
    -webkit-transform: rotate(89deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 0% 0%;
    font-weight: bold;
    white-space: nowrap;
}
#index-body .category .category-content ul li .text {
  max-width: 710px;
  position: absolute;
  left: 15px;
  top: 60px;
  z-index: 10;
}
#index-body .category .category-content ul li .text h3 {
  font-size: 50px;
  line-height: 1.2;
  font-family: var(--font);
}
#index-body .category .category-content ul li .text p {
  margin: 10px 0 75px;
  opacity: 0.6;
}
#index-body .category .category-content ul li .text .more:hover {
  background-color: var(--color);
}
#index-body .category .category-content ul li .img_box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding-right: 300px;
  position: relative;
}
#index-body .category .category-content ul li .img_box .img {
  position: relative;
  z-index: 5;
}
#index-body .category .category-content ul li .img_box .bg {
  position: absolute;
  left: 35.5%;
  top: 39%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index-body .category .product-box {
  width: -webkit-calc(100% - 70px);
  width: -moz-calc(100% - 70px);
  width: calc(100% - 70px);
  margin: 50px auto 0;
}
#index-body .category .product-box ul {
  margin: 0 -25px;
}
#index-body .category .product-box ul .slick-current + .slick-slide li {
  padding-top: 20px;
}
#index-body .category .product-box ul .slick-current + .slick-slide li .box {
  height: 565px;
  -webkit-transform: scaleX(1.06) translateX(-10px);
  -moz-transform: scaleX(1.06) translateX(-10px);
  -ms-transform: scaleX(1.06) translateX(-10px);
  transform: scaleX(1.06) translateX(-10px);
}
#index-body .category .product-box ul .slick-current + .slick-slide li .box .img {
  height: -webkit-calc(100% - 215px);
  height: -moz-calc(100% - 215px);
  height: calc(100% - 215px);
}
#index-body .category .product-box ul .slick-current + .slick-slide li .box .text {
  height: 215px;
}
#index-body .category .product-box ul .slick-current + .slick-slide li .btn {
  bottom: 15px;
}
#index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide li {
  padding-top: 0;
}
#index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide li .box {
  height: 595px;
  -webkit-transform: scaleX(1.12);
  -moz-transform: scaleX(1.12);
  -ms-transform: scaleX(1.12);
  transform: scaleX(1.12);
}
#index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide li .box .img {
  height: -webkit-calc(100% - 225px);
  height: -moz-calc(100% - 225px);
  height: calc(100% - 225px);
}
#index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide li .box .text {
  height: 225px;
}
#index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide li .btn {
  bottom: 10px;
}
#index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide + .slick-slide li {
  padding-top: 20px;
}
#index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide + .slick-slide li .box {
  height: 565px;
  -webkit-transform: scaleX(1.06) translateX(10px);
  -moz-transform: scaleX(1.06) translateX(10px);
  -ms-transform: scaleX(1.06) translateX(10px);
  transform: scaleX(1.06) translateX(10px);
}
#index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide + .slick-slide li .box .img {
  height: -webkit-calc(100% - 215px);
  height: -moz-calc(100% - 215px);
  height: calc(100% - 215px);
}
#index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide + .slick-slide li .box .text {
  height: 215px;
}
#index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide + .slick-slide li .btn {
  bottom: 15px;
}
#index-body .category .product-box ul li {
  padding: 40px 25px;
  height: auto;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
#index-body .category .product-box ul li:hover .btn {
  opacity: 1;
}
#index-body .category .product-box ul li .btn {
  position: absolute;
  left: 50%;
  bottom: 15px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  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: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--color);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .product-box ul li .btn img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: 28px;
}
#index-body .category .product-box ul li .box {
  height: 530px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
#index-body .category .product-box ul li .box .img {
  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;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  height: -webkit-calc(100% - 200px);
  height: -moz-calc(100% - 200px);
  height: calc(100% - 200px);
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .product-box ul li .box .text {
  height: 200px;
  color: white;
  padding: 25px 25px 0;
  background-color: #383838;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .product-box ul li .box .text h4 {
  font-size: 18px;
  font-family: var(--font);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .category .product-box ul li .box .text .con {
  font-size: 16px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .init-2 {
  padding: 95px 0 120px;
}
#index-body .init-2 .content {
  width: 1550px;
  margin: 0 auto;
  overflow: hidden;
}
#index-body .init-2 ul {
  margin: 70px -28px 0;
}
#index-body .init-2 ul .slick-prev.slick-arrow {
  display: none !important;
}
#index-body .init-2 ul .slick-current li {
  padding: 0;
}
#index-body .init-2 ul .slick-current li .box {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
#index-body .init-2 ul .slick-current li .con {
  -webkit-transform: translateY(500px);
  -moz-transform: translateY(500px);
  -ms-transform: translateY(500px);
  transform: translateY(500px);
  opacity: 0;
}
#index-body .init-2 ul li .con {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .init-2 ul .slick-current + .slick-slide .box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
#index-body .init-2 ul .slick-current + .slick-slide .box .box-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
#index-body .init-2 ul .slick-current + .slick-slide .box .box-t h4 {
  margin: 0 0 15px;
}
#index-body .init-2 ul .slick-current + .slick-slide .box .con {
  opacity: 0;
}
#index-body .init-2 ul li {
  padding: 0 28px;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: 600px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#index-body .init-2 ul li .box {
  max-width: 430px;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .init-2 ul li .box .box-t h4 {
  margin: 15px 0 0;
}
#index-body .init-2 .bot {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#index-body .init-2 .bot .btn span {
  border-bottom: 1px solid black;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .init-2 .bot .btn span:hover {
  color: var(--color);
  border-color: var(--color);
}
#index-body .init-2 .bot .next {
  cursor: pointer;
}
#index-body .about .about-t {
  position: relative;
  background: url("../images/about-bg.jpg") no-repeat;
  background-size: cover;
  padding: 100px 0 270px;
}
#index-body .about .about-t .left .img {
  margin-left: 95px;
}
#index-body .about .about-t .left ul {
  margin-top: 155px;
}
#index-body .about .about-t .left ul li {
  color: white;
  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;
  margin-bottom: 90px;
}
#index-body .about .about-t .left ul li:last-child {
  margin-bottom: 0;
}
#index-body .about .about-t .left ul li h4 {
  font-size: 150px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: -40px;
}
#index-body .about .about-t .right {
  max-width: 965px;
  color: white;
  position: relative;
  padding-top: 40px;
}
#index-body .about .about-t .right .dou {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
#index-body .about .about-t .right .text {
  padding-left: 40px;
  padding-right: 80px;
  line-height: 1.4;
  font-family: var(--font);
}
#index-body .about .about-t .right .btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 25px;
}
#index-body .about .about-t .right .btn img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#index-body .about .about-t .right .img {
  border-radius: 20px;
  overflow: hidden;
}
#index-body .about .about-bot {
  height: auto;
}
#index-body .about .about-bot .img_box {
  -webkit-transform: translateY(-105px);
  -moz-transform: translateY(-105px);
  -ms-transform: translateY(-105px);
  transform: translateY(-105px);
  display: flex;
  justify-content: center;
  position: relative;
}
#index-body .about .about-bot .img_box video{
  height: 100%;
  width: 100%;
}
#index-body .about .about-bot .img_box .player {
  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%);
  z-index: 10;
  display: none;
}
#index-body .about .about-bot .img_box .player::before {
  content: "";
  display: block;
  width: 165px;
  height: 165px;
  background-color: rgba(150, 20, 25, 0.4);
  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%);
  border-radius: 50%;
  -webkit-animation: scale_play 1s infinite linear;
  -moz-animation: scale_play 1s infinite linear;
  animation: scale_play 1s infinite linear;
}
#index-body .about .about-bot .img_box .player img {
  position: relative;
  z-index: 10;
}
#index-body .about .about-bot .img_box > img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .news {
  padding: 120px 0 100px;
  background-color: #f7f7f7;
  position: relative;
  z-index: 5;
}
#index-body .news .h-title {
  text-align: left;
}
#index-body .news .h-title h3 {
  text-align: left;
}
#index-body .news .news-t {
  margin-right: -15px;
  margin-left: auto;
}
#index-body .news .news-t .text{
  margin-right: 15%;
}
#index-body .news .news-content {
  margin-top: 65px;
  margin-right: -15px;
}
#index-body .news .news-content .left {
  width: 33.5%;
}
#index-body .news .news-content .left ul li .img-box {
  display: block;
  width: 100%;
}
#index-body .news .news-content .left ul li .img-box img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .news .news-content .left ul li .box {
  padding: 30px 40px 0 30px;
}
#index-body .news .news-content .left ul li .box h4 {
  margin: 10px 0 30px;
}
#index-body .news .news-content .left ul li .box .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 .news .news-content .left ul li .box .btn:hover span {
  margin-right: 15px;
  color: var(--color);
  border-color: var(--color);
}
#index-body .news .news-content .left ul li .box .btn span {
  font-size: 16px;
  font-family: var(--font);
  border-bottom: 1px solid black;
  line-height: 30px;
  margin-right: 35px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .news .news-content .right {
  width: -webkit-calc(66.5% - 20px);
  width: -moz-calc(66.5% - 20px);
  width: calc(66.5% - 20px);
  margin-left: 20px;
}
#index-body .news .news-content .right ul {
  margin: 0 -10px;
}
#index-body .news .news-content .right ul li {
  padding: 0 10px;
}
#index-body .news .news-content .right ul li .box {
  padding: 30px 50px 0 25px;
}
#index-body .news .news-content .right ul li .box h4 {
  margin: 10px 0 30px;
}
#index-body .news .news-content .right ul li .box .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 .news .news-content .right ul li .box .btn:hover span {
  margin-right: 15px;
  color: var(--color);
  border-color: var(--color);
}
#index-body .news .news-content .right ul li .box .btn span {
  font-size: 16px;
  font-family: var(--font);
  border-bottom: 1px solid black;
  line-height: 30px;
  margin-right: 35px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer {
  position: relative;
  z-index: 20;
  background-color: #171717;
}
#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;
  padding: 90px 15px 50px;
  position: unset;
}
#footer .footer-t .content {
  width: 100%;
}
#footer .footer-t .content .t-list.link span {
  border-bottom: 1px solid transparent;
}
#footer .footer-t .content .t-list.link span:hover {
  border-color: white;
}
#footer .footer-t .content .t-list.contact {
  width: 365px;
}
#footer .footer-t .content .t-list.contact ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
#footer .footer-t .content .t-list.contact ul li:last-child {
  margin-bottom: 0;
}
#footer .footer-t .content .t-list.contact ul li:last-child span {
  border: none;
  font-size: 16px;
  line-height: 30px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .content .t-list.contact ul li:last-child span:hover {
  color: white;
}
#footer .footer-t .content .t-list.contact ul li span {
  margin-bottom: 0;
  color: var(--color);
  border-bottom: 1px solid var(--color);
  line-height: 32px;
  margin-left: 30px;
  margin-top: 5px;
  font-weight: bold;
  font-size: 18px;
}
#footer .footer-t .content .t-list.contact ul li p{
    font-size: 18px;
    line-height: 32px;
}
#footer .footer-t .content .t-list.contact ul li i {
  color: var(--color);
  font-size: 20px;
  line-height: 36px;
}
#footer .footer-t .content .t-list.contact span {
  opacity: 1;
}
#footer .footer-t .content .t-list {
  color: #fff;
  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 .content .t-list .qc-img img,
#footer .footer-t .content .t-list .qc-img canvas {
  width: 100px;
  height: auto;
  border: 5px solid #fff;
}
#footer .footer-t .content .t-list h4 {
  font-size: 20px;
  line-height: 36px;
  font-family: var(--font);
  margin-bottom: 50px;
}
#footer .footer-t .content .t-list span {
  font-size: 18px;
  color: white;
  line-height: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 10px;
}
#footer .footer-t .content .t-list form {
  z-index: 5;
  width: 450px;
  position: relative;
}
#footer .footer-t .content .t-list form input[type='text'] {
  width: 100%;
  padding-bottom: 2px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-right: 15px;
  padding-left: 10px;
  color: white;
  font-size: 16px;
  line-height: 30px;
  font-family: var(--font);
  margin-bottom: 25px;
}
#footer .footer-t .content .t-list form input[name='content'] {
  margin-bottom: 0;
}
#footer .footer-t .content .t-list form input::-webkit-input-placeholder {
  color: white;
}
#footer .footer-t .content .t-list form input[type='submit'] {
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  right: 0;
  bottom: 5px;
  border: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background: url("../images/submit.png") no-repeat;
}
#footer .footer-t .content .t-list form input[type='submit']:hover {
  color: white;
  background-color: #000;
}
#footer .footer-b {
  color: white;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .footer-b .box {
  height: 95px;
  opacity: 0.4;
}
#footer .footer-b span {
  display: block;
  font-size: 16px;
  line-height: 30px;
  font-family: var(--font);
}
#footer .footer-b img {
  width: 260px;
  height: auto;
  padding-top: 5px;
  margin-left: 5px;
}
@media (max-width: 1800px) {
  .ui.container {
    width: 1600px;
  }
  #banner .banner-content ul li .content .right {
    max-width: 39%;
  }
  #banner .banner-content ul li .content .left {
    padding-top: 15px;
  }
  #index-body .category .category-content ul li .img_box {
    padding-right: 15%;
  }
  #index-body .category .category-content ul li h2 {
    font-size: 90px;
  }
  #index-body .category {
    padding: 90px 0;
  }
  #index-body .about .about-t .right {
    max-width: 50%;
  }
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  #banner .banner-content ul li .content{
    bottom:25px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 45px;
  }
  #banner .banner-content ul li .content .right {
    max-width: 38%;
  }
  #banner .banner-content ul li .content .left h2 {
    font-size: 46px;
  }
  #banner .banner-content ul li .content .left {
    padding-top: 10px;
  }
  #banner .banner-content ul li .content .left p {
    margin: 20px 0 30px;
  }
  #index-body .category .category-content ul li .img_box {
    width: 65%;
  }
  #index-body .category .category-content ul li .img_box .bg {
    height: 100%;
  }
  #index-body .category .category-content ul li .text {
    max-width: 45%;
  }
  #index-body .category .category-content ul li .text p {
    margin: 10px 0 45px;
  }
  #index-body .category .category-content .btn {
    top: 55%;
  }
  #index-body .category .category-content ul li h2 {
    font-size: 56px;
  }
  #index-body .category .product-box ul .slick-current + .slick-slide li .box {
    -webkit-transform: scaleX(1.06);
    -moz-transform: scaleX(1.06);
    -ms-transform: scaleX(1.06);
    transform: scaleX(1.06);
  }
  #index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide li {
    padding-top: 40px;
  }
  #index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide li .box {
    height: 530px;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
  #index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide li .box .img {
    height: -webkit-calc(100% - 200px);
    height: -moz-calc(100% - 200px);
    height: calc(100% - 200px);
  }
  #index-body .category .product-box ul .slick-current + .slick-slide + .slick-slide li .box .text {
    height: 200px;
  }
  #index-body .init-2 .content {
    width: 1370px;
  }
  #index-body .init-2 {
    padding: 95px 0;
  }
  #index-body .about .about-bot {
    height: 480px;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #banner .banner-content ul li .content {
    bottom: 60px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 30px;
    font-size: 16px;
  }
  #banner .banner-content ul li .content .left h2 {
    font-size: 38px;
  }
  #index-body .category .category-content ul li h2 {
    bottom: 0;
  }
  #index-body .category .category-content ul li .text h3 {
    font-size: 36px;
  }
  #index-body .init-2 .content {
    width: 1170px;
  }
  #index-body .init-2 ul li {
    height: 500px;
  }
  #index-body .about .about-t .left ul li h4 {
    font-size: 90px;
    margin-bottom: -20px;
  }
  #index-body .about .about-t .right .text {
    font-size: 24px;
  }
  #index-body .about .about-t .left .img {
    max-width: 200px;
  }
  #index-body .about .about-bot {
    height: 400px;
  }
  .h-title h3 {
    font-size: 40px;
  }
  #footer .footer-t .content .t-list form {
    width: 320px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  
  .seoPublic .Auxil-news .list ul li .content div.h6{
      line-height: 32px;
  }
  #banner .banner-content ul li .content .right {
    max-width: 36%;
  }
  #banner .banner-content ul li .content .left h2 {
    font-size: 28px;
  }
  #banner .banner-content ul li .content .left {
    padding-top: 0;
  }
  #banner .banner-content ul li .content .left p {
    margin: 20px 0;
  }
  .more {
    padding: 9px 30px 4px;
  }
  .more span {
    font-size: 14px;
    line-height: 2;
  }
  #index-body .category .category-content ul li h2 {
    font-size: 38px;
  }
  #index-body .category .category-content ul li .img_box {
    width: 55%;
    padding-right: 10%;
  }
  #index-body .category .category-content ul li {
    padding: 105px 20px 0;
    position: relative;
  }
  #header .nav .logo {
    max-width: 150px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 20px;
  }
  #index-body .init-2 .content {
    width: 970px;
  }
  #index-body .init-2 ul li {
    height: 440px;
  }
  #index-body .about .about-t .left ul li h4 {
    font-size: 68px;
    margin-bottom: -10px;
  }
  #index-body .about .about-t {
    padding: 100px 0 300px;
  }
  #index-body .about .about-bot {
    height: 300px;
  }
  .h-title h3 {
    font-size: 34px;
  }
  #footer .footer-t .content .t-list.contact {
    width: 300px;
  }
  #footer .footer-t .content .t-list.form {
    max-width: 25%;
  }
  #footer .footer-t .content .t-list.form form {
    width: 100%;
  }
  #footer .footer-t .content .t-list.form p br {
    display: none;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block !important;
  }
  #banner {
    margin-top: 120px;
  }
  #banner .banner-content ul li .content .left {
    max-width: 50%;
  }
  #banner .banner-content::before,
  #banner .banner-content ul li::before,
  #banner .banner-content ul li::after {
    display: none;
  }
  #banner .banner-content ul li .content .left h2 {
    font-size: 24px;
    line-height: 44px;
  }
  #banner .banner-content ul li .content .left h2 br {
    display: none;
  }
  #banner .banner-content ul li .content .left .more,
  #banner .banner-bot {
    display: none;
  }
  #banner .banner-content ul li .content {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  #index-body .category .category-content .btn,
  #index-body .category .category-content ul li h2 {
    display: none;
  }
  #index-body .category .category-content ul li .text p {
    margin: 10px 0 30px;
    font-size: 14px;
    line-height: 2;
  }
  #index-body .category .category-content ul li .text h3 {
    font-size: 24px;
    line-height: 44px;
  }
  #index-body .category .category-content ul li .img_box {
    padding-right: 0;
  }
  #index-body .category .product-box ul li {
    padding: 0 15px 40px !important;
  }
  #index-body .category .product-box ul li .box .text {
    height: 200px !important;
  }
  #index-body .category .product-box ul li .btn {
    bottom: 10px !important;
  }
  #index-body .category .product-box ul li .box {
    height: 530px !important;
  }
  #index-body .category .product-box ul li .box .img {
    height: -webkit-calc(100% - 200px) !important;
    height: -moz-calc(100% - 200px) !important;
    height: calc(100% - 200px) !important;
  }

  #index-body .init-2 .content {
    width: 700px;
    padding: 0 15px;
    margin: 0 auto;
  }
  #index-body .init-2 ul li .box {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -moz-box-orient: vertical !important;
    -moz-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    max-width: 100% !important;
  }
  #index-body .init-2 ul li {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -moz-box-orient: vertical !important;
    -moz-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  #index-body .init-2 ul .slick-current li .con {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  #index-body .init-2 ul .slick-current li {
    padding: 0 28px;
  }
  #index-body .init-2 ul li .box .box-t h4,
  #index-body .init-2 ul .slick-current + .slick-slide .box .box-t h4 {
    margin: 15px 0;
  }
  #index-body .init-2 ul .slick-current + .slick-slide .box .box-t {
    -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;
  }
  #index-body .init-2 ul .slick-current + .slick-slide .box .con {
    opacity: 1;
  }
  #index-body .about .about-t .left ul {
    margin-top: 60px;
  }
  #index-body .about .about-t .left {
    width: 100%;
    max-width: 100%;
    margin-bottom: 60px;
  }
  #index-body .about .about-t .left .img {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
  #index-body .about .about-t .left ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 60px;
  }
  #index-body .about .about-t .right {
    max-width: 100%;
  }
  #index-body .about .about-t .right .dou {
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
  #index-body .about .about-t .right .text {
    padding-left: 80px;
  }
  #index-body .about .about-bot {
    height: 140px;
  }
  #index-body .news .news-content {
    margin: 65px auto 0;
  }
  #index-body .news .news-content .left {
    display: none;
  }
  #index-body .news .news-content .right {
    width: 100%;
    margin-left: 0;
  }
  #index-body .news .news-content .right ul li .box {
    padding: 30px 0 0;
  }
  #footer .footer-t .content .t-list.link {
    display: none;
  }
  #footer .footer-t .content .t-list.form {
    max-width: 50%;
  }
  #footer .footer-b .box {
    height: auto;
    padding: 10px 0;
  }
  #index-body .init-2 ul li {
    height: auto;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  #banner .banner-content ul li .content .left {
    max-width: 100%;
  }
  #banner .banner-content ul li .content .right {
    display: none;
  }
  #index-body .category .category-content ul li .text {
    max-width: 100%;
    position: unset;
    margin-bottom: 100px;
  }
  #index-body .category .category-content ul li .img_box {
    width: 100%;
  }
  #index-body .init-2 {
    display: none;
  }
  #index-body .about .about-t .left ul li {
    width: 100%;
  }
  #index-body .about .about-t .right .text {
    padding: 0;
    font-size: 26px!important;
    line-height: 1.6;
    margin: 30px 0;
  }
  #index-body .about .about-t {
    padding: 100px 0;
  }
  #index-body .about .about-bot {
    height: auto;
  }
  #index-body .about .about-bot .img_box {
    padding: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  #index-body .about .about-bot .img_box .play img {
    width: 80px;
  }
  #index-body .news .news-t {
    margin: 0 auto;
  }
  #index-body .news .news-t .text {
    margin-top: 30px;
  }
  #index-body .news .news-content .right ul li .img-box img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #footer .footer-t .content .t-list.contact {
    width: 100%;
  }
  #footer .footer-t .content .t-list.form {
    max-width: 100%;
  }
  #footer .footer-b span {
    text-align: center;
  }
  #index-body .category .category-content ul li {
    padding: 60px 20px 0;
  }
  #index-body .category {
    padding: 35px 0 90px;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #banner .banner-content ul li .content .left p {
    display: none;
  }
  #banner .banner-content ul li .content .left h2 {
    font-size: 20px;
    line-height: 36px;
  }
  #index-body .about .about-t .left ul li h4 {
    font-size: 50px;
    margin-bottom: -8px;
  }
  .h-title h3 {
    font-size: 24px;
    line-height: 44px;
  }
  #index-body .news {
    padding: 80px 0;
  }
}.
.font-14{
    line-height: 2;
}

























/*------------------------inner-page--------------------*/
.mbx{
  margin-top:90px;
  font-size: 14px;
  line-height: 2;
  background-color: #f4f4f4;
  height: auto;
  padding: 15px 0 6px;
  color:rgba(0, 0, 0, 0.4);
  font-weight: bold;
}

.gallery-page .tab {
    border-bottom: 1px solid #e1e1e1;
    font-size: 0;
    margin-bottom: 4.5rem
}

.gallery-page .tab li {
    text-align: center;
    padding: 24px 0;
    border-left: 1px solid #e1e1e1;
    position: relative
}

.gallery-page .tab li a {
    overflow: hidden;
    display: block
}

.gallery-page .tab li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #666;
    transition: transform ease .4s;
    -ms-transition: transform ease .4s;
    -o-transition: transform ease .4s;
    -webkit-transition: transform ease .4s;
    -moz-transition: transform ease .4s;
    position: relative
}

.gallery-page .tab li:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color);
    transition: width cubic-bezier(.47,-.01,.09,1.08) .6s
}

.gallery-page .content .box {
    text-align: center;
    padding-bottom: 4.5rem
}

.gallery-page .content .box h2 {
    color: #182333;
    font-size: 1.75rem;
    margin-top: 10px;
    font-family: var(--font);
    line-height: 1.3
}

.gallery-page .content .box p {
    text-align: center;
    color: #565969;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    margin-top: 20px
}

.gallery-page .content .box div {
    color: #565969;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    margin-top: 20px
}

.gallery-page .content .box ul {
    margin: 0 -15px;
    text-align: left
}

.gallery-page .content .box ul li {
    padding: 15px
}

.gallery-page .content .box ul li .imgbox {
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(205,205,205,.3);
    padding: 10px;
    border-radius: 5px
}
.gallery-page .content .box ul li .imgbox a.img-box{
    display: block;
}

.gallery-page .content .box ul li .imgbox .text {
    text-align: center;
    margin-top: 1rem
}

.gallery-page .content .box ul li .imgbox .text h5 {
    display: block;
    color: #111;
    font-size: 18px;
    padding: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.gallery-page .content .box ul li .imgbox .text .con {
    margin-top: 1rem;
    min-height: 90px;
    overflow: auto;
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.7
}

.gallery-page .content .box ul li .imgbox .text .con::-webkit-scrollbar-thumb {
    background: var(--color)
}

.gallery-page .content .box ul li .imgbox .textbox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    background: rgba(0,0,0,.3);
    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-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-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all
}

.gallery-page .content .box ul li .imgbox .textbox i {
    margin-bottom: 20px;
    font-size: 45px;
    color: var(--color)
}

.gallery-page .content .box ul li .imgbox .textbox i:hover {
    cursor: pointer
}

.gallery-page .content .box ul li .imgbox .textbox h4 {
    font-size: 24px;
    font-family: var(--font);
    line-height: 1.3em;
    color: var(--color);
    padding: 5px 20px;
    background: rgba(0,0,0,.5);
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    min-width: 100px;
    text-align: center
}

.gallery-page .content .box ul li .imgbox .textbox h4:hover {
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    background: #000
}

.gallery-page .content .box ul li .imgbox:hover .text h5 {
    background: var(--color);
    color: #fff
}

.gallery-page .content .box ul li:hover {
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all
}

.gallery-page .content .box ul li:hover .imgbox .textbox {
    top: 0
}

.gallery-page .content .box:nth-child(even) {
    background: #f8f8f8;
    padding: 4.5rem 0
}

@media screen and (max-width: 1440px) {
    .gallery-page .content .box ul li {
        width:25%
    }
}

@media screen and (max-width: 1100px) {
    .gallery-page .content .box ul li {
        width:33.3333%
    }
}

@media screen and (max-width: 992px) {
    .gallery-page .content .box ul li {
        width:50%
    }
}

@media screen and (max-width: 700px) {
    .gallery-page .content .box p {
        font-size:14px
    }

    .gallery-page .content .box ul li {
        width: 100%
    }
}
.contact-page .contact-1 {
    padding: 6rem 0
}

.contact-page .contact-1 .left {
    padding-right: 8%
}

.contact-page .contact-1 .left h5 {
    color: #000;
    font-size: 24px;
    font-family: var(--font);
    line-height: 44px;
    margin-bottom: 15px
}

.contact-page .contact-1 .left p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 1.5rem
}

.contact-page .contact-1 .left ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #555;
    text-decoration: none
}

.contact-page .contact-1 .left ul li .contact-link-icon {
    margin-right: 20px;
    margin-bottom: 20px;
    width: 60px;
    max-height: 60px;
    min-height: 60px;
    min-width: 60px;
    background-color: var(--color);
    color: #fff;
    font-size: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.contact-page .contact-1 .left ul li .contact-link-icon i,.contact-page .contact-1 .left ul li .contact-link-icon span {
    background: var(--color);
    color: #fff;
    width: 100%;
    text-align: center
}

.contact-page .contact-1 .left ul li .contact-link-title {
    margin-bottom: 0;
    color: #000;
    font-size: 16px;
    line-height: 2;
    font-family: var(--font);
    margin-top: 7px
}

.contact-page .contact-1 .left ul li .contact-link-text {
    color: #555;
    font-size: 16px;
    line-height: 2
}

.contact-page .contact-1 .right {
    text-align: right;
    padding-left: 15%
}

.contact-page .contact-1 .right .form-wrap {
    position: relative;
    border-radius: 0 0 40px
}

.contact-page .contact-1 .right .form-wrap .form-box {
    padding: 40px;
    background: #fff;
    z-index: 3;
    margin-bottom: 30px;
    margin-right: 30px;
    text-align: left;
    border-radius: 0 0 40px
}

.contact-page .contact-1 .right .form-wrap .form-box:before {
    content: '';
    position: absolute;
    top: 90px;
    right: 10px;
    left: 120px;
    bottom: -20px;
    background: var(--color);
    z-index: -1;
    border-radius: 0 0 40px
}

.contact-page .contact-1 .right .form-wrap .form-box:after {
    content: '';
    width: 50%;
    position: absolute;
    top: -5%;
    bottom: 55%;
    left: -5%;
    background-image: url(/template/en/images/dots.png);
    background-repeat: repeat;
    z-index: -1
}

.contact-page .contact-1 .right .form-wrap .form-box h5 {
    color: #000;
    font-size: 24px;
    line-height: 44px;
    font-family: var(--font);
    margin-bottom: 15px
}

.contact-page .contact-1 .right .form-wrap .form-box li.wid-100 {
    width: 100%
}

.contact-page .contact-1 .right .form-wrap .form-box li input,.contact-page .contact-1 .right .form-wrap .form-box li textarea {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 15px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 2;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    background-image: none;
    border-bottom: 1px solid rgba(0,0,0,.04);
    border-color: ease-in-out .15s,box-shadow ease-in-out .15s
}

.contact-page .contact-1 .right .form-wrap .form-box li input:focus,.contact-page .contact-1 .right .form-wrap .form-box li textarea:focus {
    border-bottom-width: 1px;
    border-color: var(--color)
}

.contact-page .contact-1 .right .form-wrap .form-box li textarea {
    height: 127px
}

.contact-page .contact-1 .right .form-wrap .form-box li .button-secondary {
    font-family: var(--font);
    display: inline-block;
    height: auto;
    padding: 14px 30px;
    border: 1px solid transparent;
    font-size: 16px;
    border-radius: 80px;
    background-color: var(--color);
    -webkit-transition: border-color .4s ease,background-color .4s ease;
    transition: border-color .4s ease,background-color .4s ease;
    color: #fff;
    line-height: 20px;
    text-align: center;
    text-decoration: none
}

.contact-page .contact-1 .right .form-wrap .form-box li .button-secondary:hover {
    background: #000
}

.contact-page .contact-1 .map {
    margin-top: 4.5rem
}

.contact-page .contact-2 {
    background: #f5f5f5;
    padding: 6rem 0
}

.contact-page .contact-2 .contact-link-icon {
    font-size: 48px;
    color: #d12138
}

.contact-page .contact-2 .list ul {
    margin: -10px
}

.contact-page .contact-2 .list ul li {
    padding: 10px;
    text-align: center
}

.contact-page .contact-2 .list ul li .box {
    padding: 20px;
    background-color: #fff;
    border-radius: 30px
}

.contact-page .contact-2 .list ul li .box span.h6 {
    font-size: 18px;
    font-family: var(--font)
}

.contact-page .contact-2 .list ul li .box .text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 1.5em
}

.contact-page .contact-2 .header p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 15px
}

.contact-page .contact-2 .header .section-title {
    font-size: 36px;
    font-family: var(--font);
    line-height: 1.6;
    color: #000;
    position: relative;
    margin-bottom: 20px
}

.contact-page .contact-2 .header .section-title span {
    color: var(--color)
}

.contact-page .contact-2 .content ul {
    margin-right: -2rem
}

.contact-page .contact-2 .content ul li {
    padding-right: 2rem;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 2
}

.contact-page .contact-2 .content ul li .title {
    padding: 30px 30px 30px 80px;
    cursor: pointer;
    position: relative;
    border: none;
    border: 1px solid #fff;
    margin-bottom: 0;
    background-color: #fff
}

.contact-page .contact-2 .content ul li .title:after {
    content: "\f27b";
    font-family: fontAwesome;
    font-weight: 400;
    font-size: 16px;
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color);
    padding: 9px 14px;
    color: #fff
}

.contact-page .contact-2 .content ul li .title h6 {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 0;
    color: #000
}

.contact-page .contact-2 .content ul li .accordion-info {
    display: none;
    padding: 20px;
    margin-top: 0;
    margin-left: 0;
    background: #fff;
    font-size: 16px;
    line-height: 1.7;
    color: #555
}

.contact-page .contact-2 .content ul li.active .title {
    color: #fff;
    background: var(--color);
    border: 1px solid var(--color);
    -webkit-box-shadow: 0px 5px 30px rgba(0,0,0,.05);
    box-shadow: 0px 5px 30px rgba(0,0,0,.05)
}

.contact-page .contact-2 .content ul li.active .title h6 {
    color: #fff
}

.contact-page .contact-2 .content ul li.active .title:after {
    background: #fff;
    color: var(--color)
}

@media screen and (max-width: 1366px) {
    .contact-page .contact-1 .right {
        padding-left:10%
    }
}

@media screen and (max-width: 1200px) {
    .contact-page .contact-1 .right {
        padding-left:4%
    }

    .contact-page .contact-2 .content ul li {
        width: 50%
    }
}

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

    .contact-page .contact-1 .right {
        width: 100%;
        padding: 2rem 0 0
    }
}

@media screen and (max-width: 700px) {
    .contact-page .contact-2 .content ul li {
        width:100%
    }
}

.pd1 .Cit h2 {
    max-width: 960px
}

.pd1 {
    padding: 62px 0 30px
}

.pd1 .ev {
    display: block;
    padding: 83px 0 0;
    position: relative;
    margin-bottom: 123px
}

.pd1 .ev:nth-of-type(even) .wrap {
    flex-direction: row-reverse
}

.pd1 .ev:nth-of-type(even) .intr {
    padding-left: 5%;
    padding-right: 0
}

.pd1 .ev:nth-of-type(even):after {
    left: auto;
    right: 0
}

.pd1-wrap {
    padding: 40px 0 0
}

.pd1 .ev:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 74%;
    height: 100%;
    background: #f8f8f8;
    z-index: -1;
    transition: all ease .8s;
    border-radius: 40px
}

.pd1 .ev:hover:after {
    width: 88%;
    background: #eaeaea
}

.pd1 .ev:nth-of-type(even):after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.pd1 .ev:nth-of-type(odd):after {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.pd1 .ev .intr {
    width: 37%;
    padding-right: 5%
}
.pd1 .ev .intr .text{
   font-size: 16px;
   line-height: 30px;
}
.pd1 .ev .pic {
    width: 50%
}

.pd1 .ev .pic img {
    width: 100%
}

.pd1 .ev h2 {
    font-size: 30px;
    line-height: 1.4;
    color: var(--color);
    font-family: var(--font);
}

.pd1 .ev h2:after {
    content: '';
    display: block;
    width: 37px;
    height: 6px;
    background: #d5d5d5;
    margin: 15px 0 20px
}

.pd1 .ev p {
    font-size: 16px;
    color: #666;
    line-height: 30px;
    /*text-align: justify*/
}

.pd2 {
    overflow-x: hidden;
    overflow-y: auto
}

.pd2 .content {
    margin-top: 40px
}

.pd2 .ev {
    width: 24%;
    margin-bottom: 46px;
    transition: all ease .8s
}

.zhanwei {
    width: 24%
}

.pd2 .ev .pic {
    width: 100%;
    padding: 20px 0;
    background: #e9edf2;
    text-align: center
}

.pd2 .ev .pic img {
    max-width: 80%;
    transition: all ease .8s
}

.pd2 .ev:hover .pic img {
    transform: scale(1.1)
}

.pd2 .ev .intr {
    padding: 30px 35px;
    background: #fff;
    color: #fff;
    position: relative
}

.pd2 .ev .intr:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: var(--color);
    transition: all ease .3s
}

.pd2 .ev:hover .intr:after {
    height: 100%
}

.pd2 .ev .intr h2 {
    font-size: 20px;
    line-height: 1.8;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all ease .3s;
    color: #000;
    position: relative;
    z-index: 2
}

.pd2 .ev .intr b {
    display: block;
    width: 32px;
    height: 2px;
    margin: 10px 0;
    transition: all ease .3s;
    background: #9c9999;
    position: relative;
    z-index: 2
}

.pd2 .ev .intr p {
    font-size: 16px;
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #9c9999;
    transition: all ease .3s;
    position: relative;
    z-index: 2
}

.pd2 .ev:hover .intr h2 {
    color: #fff
}

.pd2 .ev:hover .intr h2:after {
    background: #fff
}

.pd2 .ev:hover .intr p {
    color: #fff
}

.function {
    margin-top: 56px
}

.filter {
    width: 100%
}

.filter .flex {
    display: flex;
    margin-bottom: 20px
}

.filter .flex .name {
    width: 20%;
    margin-right: 5%;
    font-size: 14px;
    font-family: var(--font)
}

.filter .select {
    display: block;
    width: 420px;
    margin-right: 30px;
    position: relative;
    float: left
}

.filter .select dt {
    border: 1px solid #c9ced6;
    border-radius: 3px 3px 0 0;
    padding-right: 43px !important;
    cursor: pointer;
    position: relative
}

.filter .select dt span {
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1
}

.filter .select dt:after {
    content: '';
    display: block;
    width: 43px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: url('/template/en/images/pr-d.svg') no-repeat center/5px;
    border-left: 1px solid #c9ced6
}

.filter .select:hover dt:after {
    border-left: none;
    transform: rotate(90deg)
}

.filter .select .down {
    border: 1px solid #c9ced6;
    border-top: none;
    position: absolute;
    left: 1000vw;
    top: 100%;
    width: 100%;
    z-index: 50;
    opacity: 0;
    transition: opacity ease .3s
}

.filter .select:hover .down {
    opacity: 1;
    left: 0
}

.filter .select dt,.filter .select dd {
    padding: 10px 15px;
    font-size: 16px;
    color: #3c444d;
    background: #fff;
    cursor: pointer;
    transition: all ease .3s
}

.filter .select dd a {
    display: block
}

.filter .select dd.on,.filter .select dd:hover {
    color: #fff;
    background: var(--color)
}

.function form {
    display: block;
    width: 234px;
    height: 43px;
    position: relative;
    float: right
}

.function form input {
    width: 100%;
    height: 100%;
    border: none;
    color: #cfcfcf;
    padding: 10px 40px 10px 15px;
    box-shadow: 0px 3px 6px rgba(0,0,0,.07)
}

.function form input::placeholder {
    color: #cfcfcf
}

.function form button {
    position: absolute;
    width: 43px;
    height: 100%;
    right: 0;
    top: 0;
    background: 0 0;
    border: none
}

.flex {
    display: flex;
    flex-wrap: wrap
}

.flex-xc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.flex-xb {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.flex-xend {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}

.flex-yc {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.flex-xc-yc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.flex-column {
    flex-direction: column
}

.Cmore {
    font-size: 16px;
    color: #fff;
    background: var(--color);
    padding: 0 50px;
    width: max-content;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 50px;
    border-radius: 25px;
    cursor: pointer;
    transition: all ease .3s;
    margin-top: 30px
}

.Cmore span {
    white-space: nowrap;
        font-family: var(--font);
}

.Cmore:hover {
    opacity: .8
}



.about-page h2.h2 {
    font-size: 38px;
    font-family: var(--font);
    margin-bottom: 20px;
    text-transform: capitalize
}

.about-page p.p {
    font-size: 18px;
    color: #fff;
    line-height: 2
}

.about-ab .top {
    padding-top: 80px
}

.about-ab .top .left {
    position: relative;
    z-index: 1
}

.about-ab .top h2 {
    color: var(--primary);
    font-size: 20px;
    line-height: 36px;
    padding-bottom: 20px;
    color: #3e3e3e
}

.about-ab .top h3 {
    color: #000;
    font-size: 38px;
    font-family: var(--font);
}

.about-ab .top p {
    color: #383838;
    font-size: 18px;
    padding: 50px 0;
    line-height: 2
}

.about-ab .about-factory .box:after {
    position: absolute;
    content: "";
    width: 402px;
    height: 389px;
    right: -92px;
    top: -113px
}

.about-ab .about-factory .box img {
    width: 100%
}
@keyframes play_scale{
    0%{
        transform: translate(-50%,-50%) scale(0.8);
    }
    100%{
        transform: translate(-50%,-50%) scale(1);
    }
}
.about-ab .about-factory .box .play {
    position: absolute;
    top: 50%;
    left: calc(25% - 32.5px);
    transform: translateY(-50%);
    cursor: pointer;
}
.about-ab .about-factory .box .play::before{
    content:"";
    display: block;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left:  50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    animation: play_scale linear 1s infinite;
}
.about-ab .about-factory .box .play img{
    position: relative;
    z-index: 5;
}
.about-page {
    overflow: hidden
}

.about-page .about-ab .factory .content ul {
    margin: -10px
}

.about-page .about-ab .factory .content ul li {
    padding: 10px
}

.about-page .about-num 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-num ul li {
    padding: 15px 18.5px 5px 90px;
    position: relative;
    background: url(/template/en/images/a-icon.png) no-repeat left center
}

.about-page .about-num ul li:last-child {
    padding: 15px 0 5px 90px
}

.about-page .about-num ul li em {
    font-size: 70px;
    line-height: 1.5;
    /*color: var(--primary);*/
        color: #ae292f;
    font-family: var(--font)
}

.about-page .about-num ul li p {
    font-size: 18px;
    line-height: 32px;
    color: #545252
}
.about-page .about-num ul li span{
    font-size: 16px;
    line-height: 30px;
}
.about-page .about-num ul li:nth-child(1) {
    background: url(/template/en/images/about-icon.png) no-repeat left center
}

.about-page .about-num ul li:nth-child(2) {
    background: url(/template/en/images/about-icon2.png) no-repeat left center
}

.about-page .about-num ul li:nth-child(3) {
    background: url(/template/en/images/about-icon3.png) no-repeat left center
}

.about-page .about-num ul li:nth-child(4) {
    background: url(/template/en/images/about-icon4.png) no-repeat left center
}

.corporate-culture {
    padding: 70px 0;
    background: #efefef
}

.corporate-culture .ui.container {
    display: flex;
    align-items: center
}

.corporate-culture .left {
    width: 50%;
    padding-right: 38px
}

.corporate-culture .left h2 {
    color: #025294;
    font-size: 24px
}

.corporate-culture .left h3 {
    color: #000;
    font-size: 38px;
    margin-bottom: 20px;
    margin-top: 10px;
    font-family: var(--font);
}

.corporate-culture .left p {
    color: #383838;
    font-size: 18px;
    padding: 8px 0;
    line-height: 2
}

.corporate-culture .right {
    width: 50%
}

.corporate-culture .left p em {
    color: #000;
    text-transform: capitalize;
    font-family: var(--font)
}

.corporate-culture .left ul {
    display: flex;
    margin-left: -21px;
    width: 95%;
    margin-top: 20px
}

.corporate-culture .left ul li {
    width: 25%;
    text-align: center
}

.corporate-culture .left ul li p {
    border: 2px solid var(--primary);
    border-radius: 100%;
    height: 120px;
    width: 120px;
    line-height: 100px;
    margin: 0 auto;
    margin-bottom: 10px;
    color: #000;
    font-size: 26px;
    font-family: var(--font)
}

.corporate-culture .left ul li span {
    font-size: 14px;
    color: #000
}

.about-page .ab-2 {
    background: url(/template/en/images/advantage-bg.jpg) no-repeat center center;
    padding-bottom: 100px;
    background-attachment: fixed
}

.about-page .ab-2 .header {
    text-align: center;
    width: 56%;
    margin: 0 auto;
    padding-top: 70px
}

.about-page .ab-2 .header span {
    font-size: 38px;
    color: #fff;
    font-family: var(--font);
}

.about-page .ab-2 .header h3 {
    font-size: 36px;
    line-height: 1.1
}

.about-page .ab-2 .header p {
    font-size: 18px;
    line-height: 2;
    color: #e7e7e7;
    margin-top: 30px
}

.about-page .ab-2 .header .mores {
    width: 133px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    background: rgba(195,13,34);
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin-top: 36px;
    transition: all .5s ease
}

.about-page .ab-2 .header .mores:hover {
    background: rgba(195,13,34,.7);
    transition: all .5s ease
}

.about-page .ab-2 .header .play {
    margin-top: 79px
}

.about-page .ab-2 .header .play i {
    display: inline-block;
    position: relative;
    z-index: 1
}

.about-page .ab-2 .header .play i:before,.about-page .ab-2 .header .play i:after {
    position: absolute;
    z-index: -1;
    content: '';
    left: -12px;
    right: -12px;
    top: -12px;
    bottom: -12px;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    -webkit-animation: ks 2s linear infinite;
    -o-animation: ks 2s linear infinite;
    -ms-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite
}

.about-page .ab-2 .header .play i:before {
    -webkit-animation-delay: .6s;
    -o-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s
}

.about-page .ab-2 .content {
    padding-top: 70px;
    color: #fff
}

.about-page .ab-2 .content ul li {
    padding: 0 10px;
    position: relative
}

.about-page .ab-2 .content ul li:after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(255,255,255,.3)
}

.about-page .ab-2 .content ul li span {
    display: block;
    font-size: 18px;
    line-height: 1
}

.about-page .ab-2 .content ul li h4 {
    display: block;
    font-size: 24px;
    font-family: var(--font);
    line-height: 2;
    margin: 22.5px 0 13px;
    font-style: italic;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.about-page .ab-2 .content ul li p {
    display: block;
    font-size: 18px;
    line-height: 1.8;
    min-height: 56px
}

.about-page .ab-2 .content ul li a.mores {
    display: inline-block;
    width: 17.5px;
    height: 17.5px;
    border: 1px solid #fff;
    line-height: 17.5px;
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    border-radius: 100%;
    background: 0 0;
    color: #fff
}

.about-page .ab-2 .content ul li a.mores:before {
    border-bottom-color: #fa582a
}

.about-page .ab-2 .btn {
    padding: 46px 25px 0;
    display: block;
    text-align: right;
    color: #fff
}

.about-page .ab-2 .btn div {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.about-page .ab-2 .btn div.next {
    margin-left: 15px
}

.about-page .ab-2 .btn div:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 2px;
    background: #fff;
    margin-left: 0;
    margin-top: -4px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.about-page .ab-2 .btn div:hover:after {
    width: 18px;
    margin-left: 10px
}

.about-page .i-semi {
    text-align: center;
    padding: 80px 0 60px;
    background: -webkit-gradient(linear,left top,left bottom,color-stop(50%,#f1f7fc),color-stop(50%,#fff));
    background: -webkit-linear-gradient(#f1f7fc 50%,#fff 50%);
    background: -moz-linear-gradient(#f1f7fc 50%,#fff 50%);
    background: linear-gradient(#f1f7fc 50%,#fff 50%)
}

.about-page .i-semi p.p {
    color: #383838
}

.about-page .i-semi .semi-list {
    margin-top: 40px;
    position: relative
}

.about-page .i-semi .semi-list ul {
    padding-bottom: 80px
}

.about-page .i-semi .semi-list .slick-arrow {
    position: absolute;
    cursor: pointer;
    width: 49px;
    height: 48px;
    background: url(/template/en/images/factory-l.jpg) no-repeat center;
    bottom: 0;
    z-index: 8;
    color: rgba(255,255,255,0);
    border: none
}

.about-page .i-semi .semi-list .slick-prev {
    right: 50%;
    margin-right: 5px
}

.about-page .i-semi .semi-list .slick-next {
    background: url(/template/en/images/factory-r.jpg) no-repeat center;
    left: 50%;
    margin-left: 5px
}

.about-page .i-semi .semi-list ul li {
    padding: 0 10px
}

.about-page .i-semi .semi-list ul li img {
    width: 100%
}

.his-bg .ui.container {
    display: flex;
    align-items: center
}

.his-bg {
    background-repeat: no-repeat
}

.his-bg .left-his {
    margin-left: -13%;
    width: 38%
}

.his-bg .right-his {
    width: 70%;
    margin-left: 5%
}

.his-bg .right-his .about-4 h3 {
    color: #000;
    font-size: 38px;
    margin-bottom: 50px;
    margin-top: 0;
    font-family: var(--font);
}

.his-bg .right-his .about-4 h2 {
    color: #383838;
    font-size: 24px;
    text-transform: capitalize;
    line-height: 2
}

.about-page .about-3 {
    padding: 90px 0 100px;
    background: #f7f7f7
}

.about-page .about-3 h2,.about-page .about-network h2 {
    display: block;
    font-size: 38px;
    text-transform: capitalize;
    font-family: var(--font);
    line-height: 2
}

.about-page .about-3 .offerBox ul {
    margin: -15px
}

.about-page .about-3 .offerBox ul li {
    padding: 15px
}

.about-page .about-network ul {
    margin: -15px
}

.about-page .about-network ul li {
    padding: 15px
}

@media screen and (max-width: 1600px) {
    .about-page .i-semi .semi-list ul li p {
        padding:15px 0 0
    }

    .about-page .abt-2 .grid-box .right .text h2,.about-page .abt-7 .grid-box .right .text h2{
        font-size: 30px
    }
    .pd1 .ev {
        padding: 83px 0;
    }
}
@media screen and (max-width: 1400px) {

    .pd1 .ev .intr .text{
        max-height: 300px;
        overflow-y: auto;
        padding-right: 30px;
    }
}
@media screen and (max-width: 1200px) {

    .about-page .i-semi .semi-list {
        padding: 0 7%
    }

    .about-page h2.h2 {
        font-size: 25px
    }

    .about-page .about-3 {
        padding: 60px 0
    }
}

@media screen and (max-width: 1000px) {
    .pd1 .ev .wrap{
        flex-direction: column;
        align-items: flex-start;
    }
    .pd1 .ev .intr{
        width: 70%;
        margin-bottom: 30px;
    }
    .pd1 .ev .pic{
         width: 100%;
    }
    .pd1 .ev p {
        font-size: 14px;
    }
    .pd1 .ev .intr .text {
        max-height: unset;
        overflow-y: unset;
        padding-right: 0;
    }
    .about-ab .top .con {
        max-height: 500px;
        overflow: auto;
        padding-right: 10px
    }

    .about-ab .top .con::-webkit-scrollbar-thumb {
        background: var(--primary)
    }

    .about-ab .about-factory .box:after {
        display: none
    }

    .about-page .about-num ul {
        flex-wrap: wrap
    }

    .about-page .about-num ul li {
        width: 50%;
        margin-bottom: 20px
    }

    .about-page .about-num ul li:after {
        display: none
    }

    .about-page .about-num ul li p {
        font-size: 16px;
        line-height: 2
    }

    .about-page .about-num ul li em {
        font-size: 24px
    }

    .about-page .ab-2 .header {
        width: 100%
    }

    .about-page .ab-2 .header span {
        font-size: 24px;
        line-height: 44px;
    }

    .about-page .ab-2 .header h3 {
        font-size: 16px
    }

    .about-page p.p {
        font-size: 14px
    }

    .his-bg .right-his .about-4 h3 {
        font-size: 28px;
        line-height: 1.6;
        margin-bottom: 20px
    }

    .about-page .about-3 h2,.about-page .ab-4 h2,.about-page .about-network h2 {
        font-size: 24px;
        line-height: 44px;
    }

    .about-page .about-3 .offerBox ul li {
        width: 50%
    }
}

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

    .about-ab .top h2 {
        font-size: 20px;
        -webkit-text-stroke: 1px rgba(0,0,0,.5);
        line-height: 36px;
    }

    .about-ab .top {
        padding-top: 30px
    }

    .about-ab .top h3 {
        font-size: 32px;
        line-height: 2;
        font-family: var(--font);
    }

    .about-page .about-2,.about-page .about-3,.about-page .about-gy,.about-page .i-semi {
        display: none
    }

    .his-bg .ui.container {
        display: block
    }

    .his-bg .left-his {
        width: 100%;
        margin-left: 0;
        display: none
    }

    .his-bg .right-his {
        width: 100%;
        margin-left: 0;
        padding: 30px 0
    }

    .about-page .about-3 .list ul li {
        width: 100%
    }

    .about-page .about-3 .list ul li p {
        height: auto !important
    }
}

@media screen and (max-width: 500px) {
    .about-page .abt-2 .grid-box .right .text h2,.about-page .abt-7 .grid-box .right .text h2,.inner-banner .box h6,{
        font-size:20px
    }

    .about-ab .top h2 {
        font-size: 20px
    }

    .about-ab .top h3 {
        font-size: 28px;
        line-height: 1.6;
    }

    .about-ab .top p {
        font-size: 14px;
        line-height: 2;
    }

    .about-page .about-num ul li {
        width: 100%
    }
    .his-bg .right-his .about-4 h2 {
        font-size: 20px;
        line-height: 36px;
    }
}


.faq-page {
    padding: 120px 0
}

.faq-page ul li {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    background: #f8f8f8
}

.faq-page ul li h4 {
    font-size: 20px;
    line-height: 36px;
    font-family: var(--font);
    margin-bottom: 10px
}

.faq-page ul li .content {
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 16px;
    line-height: 1.8
}

.faq-page ul li:last-child {
    margin-bottom: 0
}

@media screen and (max-width: 1000px) {
    .faq-page {
        padding:60px 0
    }

    .faq-page ul li h4 {
        font-size: 18px;
        line-height: 32px;
    }

    .faq-page ul li .content {
        font-size: 14px;
        line-height: 2;
    }
}

@media screen and (max-width: 700px) {
    .faq-page {
        padding:30px 0
    }
}






.p05 h2 {
    font-size: 46px;
    font-weight: 500;
    line-height: 1;
    color: #fff
}

.p05 div,.p05 p {
    font: inherit
}

.white {
    color: #fff
}

.p05 .support .item {
    display: flex;
    align-items: center;
    margin: 30px 0;
    padding-bottom: 88px
}

.p05 .support .item:nth-child(odd) {
    flex-direction: row-reverse
}

.p05 {
    font-size: 16px
}

.p05 h2 {
    margin-bottom: 40px
}

.p05 .samples,.p05 .consultation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 120px auto
}

.p05 .samples .mml-text,.p05 .consultation .mml-text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    max-width: 50%;
    color: #565656;
    font-size: 18px
}

.p05 .samples .mml-image,.p05 .consultation .mml-image {
    margin: auto
}

.p05 .samples h2,.p05 .consultation h2 {
    color: #000;
    text-align: initial;
    line-height: 1.4
}

.p05 .samples p,.p05 .samples ul,.p05 .consultation p,.p05 .consultation ul {
    margin-top: 15px;
    line-height: 2
}

.p05 .samples li,.p05 .consultation li {
    margin: 5px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px
}

.p05 .samples .green,.p05 .consultation .green {
    margin-right: 5px;
    color: #56d079
}

.p05 .consultation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.p05 .stable {
    overflow: hidden;
    padding: 120px 0;
    background-color: #19181d;
    text-align: center
}
.p05 .stable p{
    color: white;
}
.p05 ol{
    max-width: 1360px;
    margin: 90px auto 0;
}
.p05 ol::before{
    content:"";
    width: 100%;
    border:1px dashed white;
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.p05 ol .slick-current li .img{
    width:85px;
    height: 85px;
    padding: 15px;
}
.p05 ol li{
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 85px;
}
.p05 ol li .img{
    width:45px;
    height: 45px;
    background-color: var(--color);
    padding: 10px;
    border-radius: 50%;
}
.p05 .slicker-stable {
    margin: 60px 0 0
}

.p05 .slicker-stable {
    margin:60px -25px 0;
}
.p05 .slicker-stable li{
    padding: 0 25px;
}
.p05 .slicker-stable li .box{
    color: white;
    background-color: var(--color);
    border-radius:20px; 
    padding:60px;
    height: 480px;
}
.p05 .slicker-stable li .box .title h6{
    font-size: 24px;
    font-family: var(--font);
    text-align: left;
    line-height: 44px;
}
.p05 .slicker-stable li .box .con{
    text-align: left;
    font-size: 18px;
    line-height: 32px;
    margin-top: 20px;
}



/*
.p05 .slicker-stable .slick-list {
    padding-right: 200px !important
}

.p05 .slicker-stable .slick-slide {
    position: relative;
    margin: 0 20px
}

.p05 .slicker-stable .slick-slide:before {
    content: '\20';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all .24s;
    -o-transition: all .24s;
    transition: all .24s
}

.p05 .slicker-stable .slick-slide.slick-current:before {
    opacity: 0
}

.p05 .slick-dots {
    max-width: 820px;
    width: 50%;
    margin: 40px auto 0
}

.p05 .slick-dots>li {
    display: inline-block;
    background-color: #f7f7f7
}

.p05 .slick-dots>li.slick-active {
    background-color: var(--primary)
}*/

.p05 .support {
    overflow: hidden;
    color: #fff
}

.p05 .support .mml-row {
    margin: 60px auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.p05 .support .mml-row:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.p05 .support .mml-image {
    margin: auto
}

.p05 .support .mml-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 20px;
    max-width: 50%;
    color: #000;
    text-align: initial
}

.p05 .support .sup-title {
    display: block;
    margin-top: 70px;
    color: #111;
    line-height: 1.4;
}

.p05 .support h3 {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 2;
    font-family: var(--font);
}

.p05 .support p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 32px;
}
@media (max-width: 1600px) {
    .p05 .slicker-stable li .box .title img{
        max-width: 60px;
    }
}

@media (max-width: 1400px) {
    .p05 .slicker-stable li .box .title h6 {
        font-size: 20px;
        line-height: 36px;
    }
    .p05 .slicker-stable li .box .con {
        font-size: 14px;
        line-height: 2;
    }
    .p05 .support .mml-image{
        width: 50%;
    }

}
@media (max-width: 1200px) {
    .p05 .slicker-stable {
        -webkit-transform:none;
        -ms-transform: none;
        transform: none
    }
    .p05 ol {
        max-width: 100%;
    }
    .p05 .slicker-stable {
        max-width: 100%;
        margin: 40px auto;
    }
    .p05 .slick-dots {
        max-width: unset;
        width: unset
    }
     .p05 .slicker-stable li .box{
         padding: 50px 30px;
     }
    .p05 .slicker-stable li .box .con {
        font-size: 16px;
        line-height: 30px;
    }
    .p06-1-s5 .img-wrap{
        max-width: 100% !important;
        width: 100% !important;
    }
    .p06-1-s5 .img-wrap img{
        max-width: 100% !important;
        width: 100% !important;
        object-fit: cover;
    }
    .p06-1-s5 .mml-row>ul>li {
        flex-wrap: wrap;
    }
    .p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {
        padding-right: 0;
        flex: unset;
    }
    .p06-1-s5 .text {
        max-width: 100% !important;
        margin: 30px 0;
    }
}

@media (max-width: 1000px) {
    .p05 .consultation,.p05 .samples {
        display:block
    }
    .p05 .slicker-stable li .box{
         height: auto;
     }
    .p05 .consultation .mml-image,.p05 .samples .mml-image {
        width: unset
    }

    .p05 .consultation .mml-text,.p05 .samples .mml-text {
        margin: auto
    }
}

@media (max-width: 780px) {
    .p05 .support .mml-row {
        display:block;
        margin: 40px auto
    }

    .p05 .support .mml-image {
        width: unset;
        max-width: unset
    }

    .p05 .support .mml-text {
        margin: auto
    }

    .p05 .support .sup-title {
        text-align: center
    }
}

@media (max-width: 600px) {
    .p05 h2 {
        margin-bottom:20px
    }

    .p05 .consultation,.p05 .samples {
        margin: 40px 0
    }

    .p05 .stable {
        padding: 40px 0
    }

    .p05 .slicker-stable,.p05 .slick-dots {
        margin-top: 20px
    }
}

.p05 .support .ui.container {
    /*max-width: 1404px*/
}

.p05 h2 {
    font-size: 46px;
    font-family: var(--font);
    line-height: 1;
    color: #fff
}

.p05 div,.p05 p {
    font: inherit
}

.white {
    color: #fff
}

.p05 .slick-dots button {
    display: none
}

.p05 .slick-dots>li {
    margin: 0 10px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all .24s;
    -o-transition: all .24s;
    transition: all .24s
}

.p05 .slick-dots>li.slick-active {
    background-color: #fff
}

@media only screen and (max-width: 1000px) {
    .p05 .samples .mml-text,.p05 .consultation .mml-text {
        max-width:100%
    }

    .p05 h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .p05 .support .item {
        display: block
    }

    .p05 .support .mml-text {
        max-width: 100%
    }
}

@media screen and (max-width: 800px) {
    .p05 .consultation {
        display:block
    }

    .p05 .samples,.p05 .consultation {
        display: block
    }

    .p05 .samples .mml-image,.p05 .consultation .mml-image {
        width: 100%
    }

    .p05 .support .mml-image img {
        width: 100%
    }

    .p05 .samples .mml-image img,.p05 .consultation .mml-image img {
        width: 100%
    }
}

.p06-1-s5 {
    padding-bottom: 160px
}

.p06-1-s5 .mml-row>ul>li {
    margin-top: 90px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.p06-1-s5 .mml-row>ul>li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {
    padding-right: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.p06-1-s5 h2 {
    margin-bottom: 30px;
    font-size: 38px;
    font-family: var(--font);
    color: #363636;
    line-height: 1.3
}

.p06-1-s5 p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    color: #767676
}

.p06-1-s5 .img-wrap {
    max-width: 822px;
    width: 54%
}

.p06-1-s5 .text {
    max-width: 850px
}

.p06-1-s5 .swiper-pagination {
    position: absolute;
    margin-top: 0
}

.p06-1-s5 .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px
}

@media (max-width: 1200px) {
    .p06-1-s2 .small {
        margin-top:0;
        max-width: 100%
    }

    .p06-1-s4 .text {
        margin: 0
    }
}

@media (max-width: 960px) {
    .p06-1-s2 .tab {
        -webkit-flex-wrap:wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p06-1-s2 .tab li {
        width: calc(50% - 2px);
        margin-bottom: 2px
    }

    .p06-1-s5 h2 {
        font-size: 24px;
        line-height: 44px;
    }
}

@media (max-width: 768px) {
    .p06-1-s1 {
        padding:40px 0
    }

    .p06-1-s4 .text {
        padding: 10px
    }

    .p06-1-s5 {
        padding-bottom: 40px
    }

    .p06-1-s5 .mml-row>ul>li {
        margin-top: 20px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .img-wrap,.p06-1-s5 .mml-row>ul>li:nth-child(even) .img-wrap {
        width: 100%
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap,.p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {
        margin-top: 20px;
        padding: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text,.p06-1-s5 .mml-row>ul>li:nth-child(even) .text {
        max-width: 100%;
        text-align: center
    }
}

@media (max-width: 540px) {
    .p06-1-s2 .tab li {
        width:100%
    }
}

.download-page .download-1 {
    background: url(/template/en/images/down11.jpg) no-repeat center;
    padding: 60px 0 80px
}

.download-page .download-1 .top {
    max-width: 100%;
}

.download-page .download-1 .top .tit3 {
    font-family: var(--font);
    font-size: 38px;
    color: #000;
    line-height: 1
}

.download-page .download-1 .top ul {
    margin: 40px -15px 0;
}

.download-page .download-1 .top ul li {
    padding: 0 15px;
}
.download-page .download-1 .top ul li .acc{
    border-bottom: 1px solid #cdcdcd;
    padding: 38px 0;
}
.download-page .download-1 .top ul li .acc video{
    width: 100%;
    height: 250px;
}

.download-page .download-1 .top ul li .acc .tit4 {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    line-height: 1.5
}

.download-page .download-1 .top ul li .acc .con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.download-page .download-1 .top ul li .acc .con .xiazai {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.download-page .download-1 .top ul li .acc .con .xiazai p {
    font-weight: 500;
    font-size: 16px;
    color: #e60013;
    line-height: 1;
    margin-left: 14px
}

.download-page .download-1 .top ul li .acc .con .view {
    margin-left: 45px
}

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

    .download-page .download-1 {
        padding: 60px 0
    }

    .download-page .download-1 .top ul li {
        padding: 20px 0
    }
}


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

    .download-page .download-1 .top ul li .acc .con .view {
        margin-left: 20px
    }

    .download-page .download-1 .top ul li .acc {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .download-page .download-1 .top ul li .acc .con {
        margin-top: 20px
    }
}

.cases-page {
    padding: 6.255% 0 7.116%
}

.cases-page .list ul {
    margin: 0 -28px -70px 0
}

.cases-page .list ul li {
    padding: 0 28px 70px 0
}

.cases-page .list ul li .ig {
    position: relative;
    overflow: hidden
}

.cases-page .list ul li .ig .img-box img {
    width: 100%
}

.cases-page .list ul li .ig .text {
    position: absolute;
    bottom: -51%;
    left: 0;
    width: 100%;
    padding: 0 25px;
    color: #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.cases-page .list ul li .ig .text .tit {
    font-size: 22px;
    font-family: var(--font);
    line-height: 1.3
}

.cases-page .list ul li .ig .text p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-height: 1.6;
    margin-top: 18px
}

.cases-page .list ul li .ig .text .more {
    margin-top: 26px
}

.cases-page .list ul li .ig:hover .text {
    bottom: 0;
    height: 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-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;
    background: rgba(10,10,10,.5)
}


@media screen and (max-width: 1220px) {
    .cases-page .list ul li .ig .text {
        bottom:-55%
    }
}

@media screen and (max-width: 1130px) {
    .cases-page .list ul li .ig .text {
        bottom:-60%;
    }
}

@media screen and (max-width: 1050px) {
    .cases-page .list ul li .ig .text {
        bottom:-65%;
    }
}

@media screen and (max-width: 1000px) {
    .cases-page .list ul {
        margin:0 -20px -30px 0
    }

    .cases-page .list ul li {
        padding: 0 20px 30px 0
    }

    .cases-page .list ul li .ig .text {
        position: initial;
        background: rgba(10,10,10,.5);
        padding: 20px 15px;
        display: block
    }

    .cases-page .list ul li .ig .text p {
        margin-top: 10px
    }
}

@media screen and (max-width: 700px) {
    .cases-page .list ul li .ig .text .tit {
        font-size:20px;
        line-height: 1.4
    }

}

.news-page {
    padding: 6.255% 0 7.116%
}

.news-page .list ul {
    margin: 0 -29px -69px 0
}

.news-page .list ul li {
    padding: 0 29px 69px 0
}

.news-page .list ul li .ig {
    position: relative;
    overflow: hidden
}

.news-page .list ul li .ig .img-box img {
    width: 100%
}

.news-page .list ul li .ig .link {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 32px;
    padding: 19px 19px 12px;
    background-color: var(--color);
    color: #fff;
    z-index: 1
}

.news-page .list ul li .ig .link:after {
    content: '';
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #b00000;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.news-page .list ul li .ig .link:hover:after {
    width: 100%
}

.news-page .list ul li .ig .text {
    position: absolute;
    z-index: 1;
    bottom: -200%;
    left: 0;
    width: 100%;
    padding: 17px 26px;
    color: #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.news-page .list ul li .ig:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.5)));
    background: -webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.5));
    background: -moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.5));
    background: linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,.5))
}

.news-page .list ul li .ig .text time {
    line-height: 32px;
}

.news-page .list ul li .ig .text .tit {
    font-family: var(--font);
    line-height: 44px;
    min-height: 3.7em;
}

.news-page .list ul li .ig .text p {
    margin-top: 4px;
}

.news-page .list ul li .ig:hover .text {
    bottom: 0;
    background-color: #292b2c
}

.news-page .list ul li .ig:hover .text time {
    display: none
}

.m-page {
    margin-top: 88px;
    text-align: center
}

.m-page a,.m-page span {
    display: inline-block;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 24px;
    color: black;
    font-family: var(--font);
    margin-right: 8px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-radius: 50%;
    
}

.m-page a.prev,.m-page a.next {
    background-color: transparent;
    color: black;
}

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


@media screen and (max-width: 1000px) {
    .mbx{
        margin-top: 120px;
    }
    .news-page .list ul {
        margin:0 -15px -30px 0
    }

    .news-page .list ul li {
        padding: 0 15px 30px 0;
        width: 100% !important;
    }

    .news-page .list ul li .ig .text {
        padding: 15px;
    }

    .news-page .list ul li .ig .text .tit {
        font-size: 20px;
        line-height: 36px;
    }
}

@media screen and (max-width: 700px) {
    .news-page .list ul li {
        width:100% !important
    }


    .m-page {
        margin-top: 30px
    }

    .m-page a,.m-page span {
        font-size: 18px;
        width: 35px;
        height: 35px;
        line-height: 35px
    }
    .news-page .list ul li .ig:hover .text time{
        display: block;
    }
}

@media screen and (max-width: 580px) {
    .news-page .list ul li .ig .text .tit {
        font-size:18px;
        line-height: 32px;
    }

    .news-page .list ul li .ig .text {
        bottom: 0;
        padding: 10px;
        background: #292b2c;
        position: unset;
    }
}

.newdet-page {
    padding: 4.878% 0
}

.newdet-page .content h1 {
    font-family: var(--font);
    color: #292b2c;
    line-height: 1.4;
    /*text-transform: uppercase*/
}

.newdet-page .content .bj {
    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;
    margin-top: 32px;
    font-size: 18px;
    color: #57595a;
    line-height: 32px;
}

.newdet-page .content .bj time,.newdet-page .content .bj div {
    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
}

.newdet-page .content .bj span {
    display: inline-block;
    padding-left: 9px
}

.newdet-page .content .bj time {
    margin-right: 30px
}

.newdet-page .content .bj time span {
    margin-top: 3px
}

.newdet-page .content .con {
    font-size: 18px;
    line-height: 32px;
    color: #292b2c;
    margin-top: 38px
}

.newdet-page .content .list {
    border-top: 1px solid #dcdcdc;
    margin-top: 47px;
    padding-top: 29px;
    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
}

.newdet-page .content .list .share {
    margin-top: 20px
}

.newdet-page .content .list .share a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 21px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.newdet-page .content .list .share a img {
    display: inline-block;
    vertical-align: middle;
    -webkit-filter: brightness(0) opacity(.9);
    filter: brightness(0) opacity(.9)
}

.newdet-page .content .list .share a:last-child {
    margin-right: 0
}

.newdet-page .content .list .share a:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px)
}

.newdet-page .Auxil-related {
    margin-top: 132px
}

.m-link a {
    line-height: 2;
    /*text-transform: uppercase;
    font-weight: 600*/
}

.m-link a em {
    display: inline;
    color: #b00000
}






.font-55 {
  font-size: 50px;
}
.inner-title {
  font-size: 50px;
  font-family: var(--font);
  font-weight: 600;
  text-align: center;
}
.related-application .ui.container {
  padding: 0 115px;
}
.related-application .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.related-application .slick-arrow i {
  color: black;
  font-size: 30px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.related-application  .slick-arrow i:hover {
  color: var(--color);
}
.related-application .slick-arrow.prev {
  left: -10px;
}
.related-application .slick-arrow.next {
  right: -10px;
}
.related-application ol {
  margin: 45px -25px 0;
}
.related-application ol li {
  padding: 0 25px;
  margin-bottom: 0;
}
.related-application ol li .img-box {
  display: block;
  width: 100%;
}
.related-application ol li .img-box img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.film-blowing {
  margin: 150px 0 105px;
}
.film-blowing .list {
  margin-bottom: 80px;
}
.film-blowing .list:last-child {
  margin-bottom: 0;
}
.film-blowing .list .text h2 {
  text-align: left;
}
.prodet-form {
  margin: 120px 0 110px;
  padding: 85px 0 120px;
  background-color: var(--color);
  text-align: center;
}
.prodet-form h2 {
  font-size: 50px;
  font-family: var(--color);
  font-weight: bold;
  color: white;
  line-height: 1.2;
}
.prodet-form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 50px;
}
.prodet-form form input[type='text'] {
  width: 400px;
  height: 80px;
  font-size: 18px;
  line-height: 32px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 10px;
  padding: 0 30px;
}
.prodet-form form input[name='content'] {
  width: -webkit-calc(100% - 1150px);
  width: -moz-calc(100% - 1150px);
  width: calc(100% - 1150px);
}
.prodet-form form input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.prodet-form form input[type='submit'] {
  width: 275px;
  height: 80px;
  background-color: black;
  font-size: 20px;
  font-family: var(--font);
  color: white;
  border: none;
  border-radius: 10px;
}
.product-page {
  padding: 100px 0 0;
}
.product-page .product-1 {
  position: relative;
}
.product-page .product-1:after {
  content: "";
  display: block;
  background-color: var(--color);
  width: 100%;
  height: 365px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.product-page .product-1 .content {
  position: relative;
  z-index: 10;
  padding-bottom: 85px;
}
.product-page .product-1 .content .text {
  color: white;
  max-width: 65%;
  margin: 60px auto 0;
}
.product-page .product-2 {
  margin: 80px 0 110px;
}
.product-page .product-2 .more {
  margin: auto;
  display: block;
  padding: 15px 40px 15px;
}
.product-page .product-2 .more:hover {
  background-color: var(--color);
}
.product-page .product-2 .list{
    margin-top: 80px;
}
.product-page .product-2 .list ul {
  margin: 0 -25px;
}
.product-page .product-2 .list ul li {
  padding: 40px 25px 0;
  position: relative;
}
.product-page .product-2 .list ul li:hover .btn {
  opacity: 1;
}
.product-page .product-2 .list ul li:hover .box {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.product-page .product-2 .list ul li .btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  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: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--color);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-page .product-2 .list ul li .btn img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: 28px;
}
.product-page .product-2 .list ul li .box {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0);
}
.product-page .product-2 .list ul li .box .img-box {
  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;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  height: 400px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0 30px;
}
.product-page .product-2 .list ul li .box .text {
  height: 280px;
  color: white;
  padding: 25px 25px 0;
  background-color: #383838;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-page .product-2 .list ul li .box .text h4 {
  font-size: 18px;
  font-family: var(--font);
  line-height: 32px;
  min-height: 5.4em;
  margin-bottom: 15px;
  transition: all 0.5s;
}
.product-page .product-2 .list ul li .box .text h4:hover{
    color: var(--color);
}
.product-page .product-2 .list ul li .box .text .con {
  font-size: 16px;
  line-height: 30px;
}
.product-page .product-2 .list .content {
  margin-top: 95px;
  padding: 80px 70px;
  background-color: #f6f6f6;
}


.prodet-page {
  padding: 100px 0 0;
}
.prodet-page .prodet-1 .container {
  padding: 0 115px;
}
.prodet-page .prodet-1 .container .left {
  padding-right: 90px;
  position: sticky;
  top: 180px;
  padding-top: 60px;
}
.prodet-page .prodet-1 .container .left h1 {
  font-size: 44px;
  line-height: 1.2;
}
.prodet-page .prodet-1 .container .left h2 {
  font-size: 44px;
  line-height: 1.2;
}
.prodet-page .prodet-1 .container .left .con {
  margin: 25px 0 35px;
  /*max-height: 150px;*/
  /*overflow: auto;*/
  /*padding-right: 60px;*/
}
.prodet-page .prodet-1 .container .left .btns .more {
  padding: 15px 70px 10px;
}
.prodet-page .prodet-1 .container .left .btns .video-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;
}
.prodet-page .prodet-1 .container .left .btns .video-more span:first-child {
  font-size: 16px;
  border-bottom: 1px solid black;
  margin-right: 15px;
  line-height: 30px;
  font-weight: bold;
}
.font-25{
    font-size: 24px;
    line-height: 44px;
}
.prodet-page .prodet-1 .container .left .btns .video-more span:last-child {
  position: relative;
  width: 70px;
  height: 70px;
  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;
}
.prodet-page .prodet-1 .container .left .btns .video-more span:last-child img {
  position: relative;
  z-index: 5;
}
.prodet-page .prodet-1 .container .left .btns .video-more span:last-child:before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background-color: rgba(204, 51, 51, 0.2);
  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%);
  border-radius: 50%;
}
.prodet-page .prodet-1 .container .left .sb-img {
  margin: 60px 0 33px;
}
.prodet-page .prodet-1 .container .left .small ul {
  margin: 0 -10px 35px;
}
.prodet-page .prodet-1 .container .left .small ul .slick-track {
  margin-left: 0;
}
.prodet-page .prodet-1 .container .left .small ul li {
  padding: 0 10px;
}
.prodet-page .prodet-1 .container .left .small ul li .img {
  padding: 10px;
}
.prodet-page .prodet-1 .container .right {
  position: sticky;
  top: 160px;
}
.prodet-page .prodet-1 .container .right img{
    /*border: 2px solid var(--color);*/
}
.prodet-page .prodet-2{
    margin-top: 85px;
}
.prodet-page .prodet-2 .container {
  padding: 0 115px;
}
.prodet-page .prodet-2 .container ul li {
  margin-bottom: 60px;
}
.prodet-page .prodet-2 .container ul li:last-child {
  margin-bottom: 0;
}
.prodet-page .prodet-2 .container ul li .title {
  height: 70px;
  background-color: #000;
  color: white;
  margin-bottom: 60px;
}
.prodet-page .prodet-2 .container ul li .title .btn {
  width: 50px;
  height: 50px;
  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;
  background-color: var(--color);
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
}
.prodet-page .prodet-2 .container ul li .title .btn span {
  display: block;
  width: 15px;
  height: 4px;
  background-color: white;
  position: relative;
}
.prodet-page .prodet-2 .container ul li .title .btn span:before {
  content: "";
  width: 4px;
  height: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  background-color: white;
  transition: all 0.5s;
}
.prodet-page .prodet-2 .container ul li.active .title .btn span:before {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%) rotate(0deg);
}
.prodet-page .prodet-2 .container ul li .content {
  background-color: #f7f7f7;
  padding:0 30px;
  font-size: 16px;
  line-height: 30px;
}
.prodet-page .prodet-2 .container ul li .content table{
    table-layout: fixed;
    width: 100% !important;
}
.prodet-page .prodet-2 .container ul li .box {
  padding: 0 70px !important;
  position: relative;
  overflow: unset !important;
}
.prodet-page .prodet-2 .container ul li .box,
.prodet-page .prodet-2 .container ul li .content,
.prodet-page .prodet-2 .container ul li .list{
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s;
}
.prodet-page .prodet-2 .container ul li.active .box,
.prodet-page .prodet-2 .container ul li.active .content,
.prodet-page .prodet-2 .container ul li.active .list{
  max-height:fit-content;
  padding: 0;
}

.prodet-page .prodet-2 .container ul li .list form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .prodet-page .prodet-2 .container ul li .list form input,
    .prodet-page .prodet-2 .container ul li .list form textarea {
        display: block;
        width: 49%;
        border: 1px solid #eee;
        font-size: 16px;
        line-height: 30px;
        padding: 8px 15px;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        margin-bottom: 20px;
    }
    .prodet-page .prodet-2 .container ul li .list form textarea {
        height: 200px;
        width: 100%;
    }
    .prodet-page .prodet-2 .container ul li .list form textarea {
        height: 100px;
    }

    .prodet-page .prodet-2 .container ul li .list form input:focus,
    .prodet-page .prodet-2 .container ul li .list form textarea:focus {
        border-color: var(--color);
    }

    .prodet-page .prodet-2 .container ul li .list form input[type="submit"] {
        width: auto;
        display: inline-block;
        padding-left: 25px;
        padding-right: 25px;
        background: var(--color);
        color: whitesmoke;
        border: none;
        margin-bottom: 0;
    }

    .prodet-page .prodet-2 .container ul li .list form input[type="submit"]:hover {
        background: #222;
    }
    @media screen and (max-width: 1400px) {
        .prodet-page .prodet-2 .container ul li .list form input,
        .prodet-page .prodet-2 .container ul li .list form textarea{
            font-size: 14px;
        }

    }
    @media screen and (max-width: 1000px) {
        .prodet-page .prodet-2 .container ul li .list form input{
            width: 100%;
        }
        .product-page .product-1:after{
            display: none;
        }
        .product-page .product-2 .list ul li .box .text h4{
            min-height: 0px;
        }
        .product-page .product-2 .list ul li .box .text{
            height: 290px;
        }
        .product-page .product-1 .content .text {
            color: black;
            max-width: 100%;
            font-size: 16px;
            line-height: 30px;
        }
        .product-page .product-2 .list ul li .box .text h4{
            min-height: 0!important;
        }
    }
.prodet-page .prodet-2 .container ul li.active .content{
  max-height:fit-content;
  padding: 30px;
}
.prodet-page .prodet-2 .container ul li .box .related-application .slick-arrow.prev{
    left: -20px;
}
.prodet-page .prodet-2 .container ul li .box .related-application .slick-arrow.next{
    right: -20px;
}
.prodet-page .prodet-2 .container ul li .box ol {
  margin: 0 -25px;
}
.prodet-page .prodet-2 .container ul li .box ol li {
  padding: 0 25px;
  margin-bottom: 0;
}
.prodet-page .prodet-2 .container ul li .box ol li .img-box {
  display: block;
  width: 100%;
}
.prodet-page .prodet-2 .container ul li .box ol li .img-box img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.prodet-page .prodet-2 .container ul li .list ol {
  margin: 20px -10px;
}
.prodet-page .prodet-2 .container ul li .list ol li {
  padding: 0 15px;
}
.prodet-page .prodet-2 .container ul li .list ol li .list_box {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}
.prodet-page .prodet-2 .container ul li .list ol li .list_box .img-box {
  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;
  height: 355px;
}
.prodet-page .prodet-2 .container ul li .list ol li .list_box .text {
  height: 240px;
  width: 100%;
  padding: 0 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;
  background-color: #383838;
}
.prodet-page .prodet-2 .container ul li .list ol li .list_box .text h4 {
  color: white;
}
.prodet-page .prodet-2 .container ul li .list ol li .list_box .text h4:hover {
  color: var(--color);
}
.related-products{
  background:#f6f6f6;
  padding: 120px 0;
}
.related-products h2 {
  font-size: 50px;
  font-family: var(--font);
}
.related-products ul {
  margin: 0 -25px;
}
.related-products ul li {
  padding: 40px 25px 30px;
  position: relative;
}
.related-products ul li:hover .btn {
  opacity: 1;
}
.related-products ul li .btn {
  position: absolute;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translate(-50%,50%);
  -moz-transform: translate(-50%,50%);
  -ms-transform: translate(-50%,50%);
  transform: translate(-50%,50%);
  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: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--color);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.related-products ul li .btn img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: 28px;
}
.related-products ul li .box {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.related-products ul li .box .img {
  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;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  height: 400px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0 30px;
}
.related-products ul li .box .text {
  height: 280px;
  color: white;
  padding: 25px 25px 0;
  background-color: #383838;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.related-products ul li .box .text h4 {
  font-size: 18px;
  font-family: var(--font);
  line-height: 32px;
  margin-bottom: 15px;
  min-height: 5.4em;
}
.related-products ul li .box .text h4:hover{
    color: var(--color);
}
.related-products ul li .box .text .con {
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 1600px) {
  .product-page .product-2 .list ul li .box .img-box {
    height: auto;
  }
  .prodet-form form input[type='text']{
    width: calc((100% - 350px)/3);
  }
  .prodet-page .prodet-1 .container .left h1 {
    font-size: 30px;
    line-height: 1.4;
  }
  .prodet-page .prodet-1 .container .left h2 {
    font-size: 30px;
    line-height: 1.4;
  }
  .prodet-page .prodet-1 .container .left .btns .more {
    padding: 15px 30px 10px;
  }
  .prodet-form h2 {
    font-size: 36px;
  }
}
@media (max-width: 1400px) {
    .inner-title,
    .related-products h2{
        font-size: 36px;
    }
    .prodet-page .prodet-1 .container .left {
        padding-right: 30px;
        padding-top: 0;
    }
    .prodet-page .prodet-1 .container .left h2 {
        font-size: 24px;
        line-height: 1.4;
    }
    prodet-page .prodet-1 .container .left h1 {
        font-size: 24px;
        line-height: 44px;
    }
    .prodet-page .prodet-1 .container,
    .prodet-page .prodet-2 .container {
        padding: 0 15px;
    }
    .related-products ul li .box .img {
        height: auto;
    }
}
@media (max-width: 1200px) {
      .prodet-page .prodet-1 .container .left .btns .video-more {
        margin-left: 0;
        margin-top: 30px;
    }
    .prodet-form h2 {
        font-size: 36px;
    }
    .product-page .product-1 .content .img{
        width: 60%;
        margin: auto;
    }
    .product-page .product-2 .list ul li{
        width: 33.33333%;
    }
    .film-blowing .list .text .con{
        font-size: 14px;
        line-height: 2;
    }
    .prodet-form form input[type='text'] {
        width: 49%;
        margin-bottom: 20px;
    }
    .prodet-form form input[name='content'] {
        width: 100%;
    }
    .prodet-form form input[type='submit'] {
        margin:0 auto;
    }
    .related-application .ui.container {
        padding: 0 15px;
    }
}
@media (max-width: 1000px) {
    .font-55 {
        font-size: 36px;
    }
    .product-page .product-2 .list ul li {
        width: 50%;
    }
    .related-application .prev,
    .related-application .next{
        display: none !important;
    }
    .film-blowing .list .text,
    .film-blowing .list .img{
        width: 100%;
        padding: 0;
    }
    .film-blowing .list .text{
        margin: 30px 0;
    }
    .product-page .product-2 .list ul li .box .text h4{
        min-height: 0!important;
    }
    .film-blowing .list .text .con{
        font-size: 16px;
        line-height: 30px;
    }
    .product-page .product-2 .list .content {
        padding: 80px 30px;
        font-size: 16px;
    }
    .prodet-form form input[type='text'] {
        width: 100%;
    }
    .prodet-page .prodet-1 .container .left{
        width:100%;
        padding-right: 0;
        margin-bottom: 60px; 
        position: unset;
        top: unset;
    }
    .prodet-page .prodet-1 .container .right{
        width:100%;
    }
    .prodet-page .prodet-1 .container .left .con {
        max-height: unset;
        overflow: unset;
        padding-right: 0;
    }
    .prodet-page .prodet-2 .container ul li .list ol li {
       width:50%;
    }
    .prodet-page .prodet-1 .container .left .btns .video-more {
        margin-left: 30px;
        margin-top: 0;
    }
    .prodet-page .prodet-2 .container ul li .box {
        padding: 0;
    }
    .prodet-page .prodet-2 .container ul li .content{
        width:100%;
        overflow-x: auto;
    }
    .prodet-page .prodet-2 .container ul li .content{
        overflow-x: auto;
        width: 100%;
    }
    .prodet-page .prodet-2 .container ul li .content table {
        table-layout: unset;
    }
    .prodet-page .prodet-2 .container ul li .content table td{
        min-width: 240px;
    }
    .prodet-page .prodet-2 .container ul li .list ol li .list_box .img-box {
        height: auto;
    }
}
@media (max-width: 700px) {
    .product-page .product-2 .list ul{
        margin: 0 -10px;
    }
    .product-page .product-2 .list ul li {
        padding: 40px 10px 0;
    }
    .prodet-page .prodet-1 .container .left .btns .video-more {
        margin-left: 0;
        margin-top:30px;
    }
    .prodet-page .prodet-2 .container ul li .list ol li {
        width: 100%;
    }

}
@media (max-width: 500px) {
    .product-page .product-2 .list ul li {
        width: 100%;
    }
    .product-page .product-1 .content .img {
        width:auto;
        margin-top: 30px;
    }
    .font-55 {
        font-size: 28px;
    }
    .product-page .product-1 .content {
        padding-bottom: 30px;
    }
    .product-page .product-1 .content .text {
        max-width: 100%;
    }
    .inner-title {
        font-size: 28px;
        line-height: 1.6;
    }
    .film-blowing {
        margin: 80px 0;
    }
    .film-blowing .list {
        margin-bottom: 0;
    }
    .prodet-form h2 {
        font-size: 28px;
        line-height: 1.6;
    }
}