@font-face {
  font-family: 'Barlow-Light';
  src: url(../fonts/Barlow-Light.ttf) format('truetype'), url(../fonts/Barlow-Light.eot) format('eot'), url(../fonts/Barlow-Light.woff) format('woff'), url(../fonts/Barlow-Light.woff2) format('woff2');
}
@font-face {
  font-family: 'Antonio-Bold';
  src: url(../fonts/Antonio-Bold.ttf) format('truetype'), url(../fonts/Antonio-Bold.eot) format('eot'), url(../fonts/Antonio-Bold.woff) format('woff'), url(../fonts/Antonio-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Barlow-Medium';
  src: url(../fonts/Barlow-Medium.ttf) format('truetype'), url(../fonts/Barlow-Medium.eot) format('eot'), url(../fonts/Barlow-Medium.woff) format('woff'), url(../fonts/Barlow-Medium.woff2) format('woff2');
}
@font-face {
  font-family: 'Barlow-Regular';
  src: url(../fonts/Barlow-Regular.ttf) format('truetype'), url(../fonts/Barlow-Regular.eot) format('eot'), url(../fonts/Barlow-Regular.woff) format('woff'), url(../fonts/Barlow-Regular.woff2) format('woff2');
}
input::-webkit-input-placeholder {
  color: #000;
}
textarea::-webkit-input-placeholder {
  color: #000;
}
input::-moz-placeholder {
  color: #000;
}
input:-moz-placeholder {
  color: #000;
}
input:-ms-input-placeholder {
  color: #000;
}
body {
  margin: 0 auto;
  padding: 0;
  --color: #b81b22;
  font-family: 'Barlow-Regular';
  --font: 'Antonio-Bold';
  --main-font:'Barlow-Medium';
  background-color: white;
  color: black;
  max-width: 1920px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1550px;
  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: white;
}
#header.active {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#header .nav {
  position: relative;
  height: 95px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: -webkit-calc(100% - 480px);
  width: -moz-calc(100% - 480px);
  width: calc(100% - 480px);
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 30px;
  font-size: 18px;
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-family: 'Barlow-Medium';
  color: #605f5f;
  text-transform: uppercase;
  padding: 3px 15px;
  border-radius: 35px;
}
#header .nav .ui.menu .menu-box ul.menu > li::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 50% 100%, 0 50%, 0 0);
  clip-path: polygon(100% 0, 100% 100%, 50% 100%, 0 50%, 0 0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 35px;
  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%);
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li:hover::after {
  border-color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  position: relative;
  z-index: 2;
}
#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: 170%;
  left: 0px;
  width: auto;
  min-width: 190px;
  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: 16px;
  -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;
  cursor: pointer;
}
.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;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.language-box .zhuyu span {
  font-size: 18px;
  color: #7e7f84;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-family: 'Barlow-Medium';
  margin: 0 10px 0 15px;
}
.language-box .zhuyu i {
  font-size: 18px;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#banner {
  position: relative;
  margin-top: 95px;
}
#banner .banner-content {
  position: relative;
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .content {
  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%);
}
#banner .banner-content ul li .content .box {
  color: white;
  max-width: 50%;
}
#banner .banner-content ul li .content .box p {
  font-size: 18px;
  margin: 25px 0 40px;
  max-width: 630px;
  line-height: 2;
}
#banner .banner-content ul li .content .box h2 {
  font-size: 80px;
  line-height: 1.2;
  font-family: var(--font);
  text-transform: uppercase;
}
#banner .banner-content ul li .content .box .img {
  margin-top: 70px;
}
#banner .banner-content ul li .content .box .img img {
  -webkit-transform: translateX(-80px);
  -moz-transform: translateX(-80px);
  -ms-transform: translateX(-80px);
  transform: translateX(-80px);
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#banner .banner-content ul .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 260px;
  bottom: 140px;
}
#banner .banner-content ul .slick-dots li {
  margin-right: 35px;
}
#banner .banner-content ul .slick-dots li::before {
  content: "";
  width: 75px;
  height: 60px;
  background-color: white;
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  z-index: 1;
  opacity: 0;
  -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);
  border-radius: 35px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .banner-content ul .slick-dots li::after {
  content: "";
  width: 10px;
  height: 7px;
  border-radius: 35px;
  background-color: white;
  position: relative;
  z-index: 2;
  display: block;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .banner-content ul .slick-dots li:last-child {
  margin-right: 0;
}
#banner .banner-content ul .slick-dots li.slick-active::after {
  background-color: var(--color);
}
#banner .banner-content ul .slick-dots li.slick-active::before {
  opacity: 1;
}
#banner .banner-content ul .slick-dots li button {
  display: none;
}
.more.white {
  background-color: white;
}
.more.white:hover span {
  color: white;
}
.more.white span {
  color: var(--color);
}
.more.black {
  background-color: #1a1a1a;
}
.more.black:hover::before {
  background-color: var(--color);
}
.more.black span {
  color: white;
}
.more {
  display: block;
  width: 160px;
  height: 50px;
  font-size: 18px;
    color: #ffffff;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: var(--color);
  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;
}
.more:hover::before {
  right: 0;
}
.more::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.more span {
  display: block;
  position: relative;
  z-index: 5;
  font-size: 18px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  color: white;
  font-family: 'Barlow-Medium';
  text-transform: uppercase;
}
.h-title p {
  font-size: 24px;
  font-family: 'Barlow-Medium';
  text-transform: uppercase;
  color: var(--color);
  margin-bottom: 5px;
}
.h-title h3 {
  font-size: 48px;
  font-family: 'Barlow-Medium';
  position: relative;
  color: #212121;
  line-height: 1.3;
}
.tit-font {
  font-family: 'Barlow-Medium';
}
#index-body .product {
  padding: 100px 0 115px;
}
#index-body .product .product-content a.more {
  margin: 50px auto 0;
}
#index-body .product .product-content ul {
  margin: 20px -35px 0;
}
#index-body .product .product-content ul li {
  padding: 25px 35px;
}
#index-body .product .product-content ul li:hover .img-box {
  border-color: var(--color);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#index-body .product .product-content ul li .img-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 360px;
  padding: 40px 30px 0 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content ul li p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  font-family: 'Barlow-Light';
  margin: 25px 0 5px;
}
#index-body .product .product-content ul li .btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content ul li .btn:hover {
  background-color: var(--color);
}
#index-body .product .product-content ul li .btn:hover i {
  color: white;
}
#index-body .product .product-content ul li .btn i {
  color: var(--color);
  font-size: 18px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content ul li .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#index-body .product .product-content ul li .title a:first-child {
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
}
#index-body .about {
  position: relative;
}
#index-body .about .img2 {
  position: absolute;
  max-width: 50%;
  top: 25px;
  right: 0;
}
#index-body .about .about-content {
  position: relative;
  z-index: 5;
}
#index-body .about .about-content .left {
  width: 50%;
}
#index-body .about .about-content .left .con {
  line-height: 2;
  margin-top: 25px;
}
#index-body .about .img {
  margin-top: 100px;
}
#index-body .advantage {
  padding: 80px 0 110px;
}
#index-body .advantage .advantage-content ul {
  margin: 0 -37px;
}
#index-body .advantage .advantage-content ul li {
  padding: 0 37px;
}
#index-body .news {
  position: relative;
  padding: 125px 0 110px;
}
#index-body .news .news-content ul {
  margin: 40px -20px 0;
}
#index-body .news .news-content ul li {
  padding: 10px 20px;
}
#index-body .news .news-content ul li:hover .box {
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
#index-body .news .news-content ul li:hover .box .text {
  border-color: transparent;
}
#index-body .news .news-content ul li .box {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .news .news-content ul li .box .img_box {
  display: block;
}
#index-body .news .news-content ul li .box .text {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  padding: 25px 30px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
}
#index-body .news .news-content ul li .box .text h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .news .news-content ul li .box .text .con {
  font-family: 'Barlow-Light';
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .news .news-content ul li .box .text a.btn {
  width: 60px;
  height: 60px;
  background-color: var(--color);
  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;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  right: 0;
  bottom: 0;
}
#index-body .news .news-content ul li .box .text a.btn:hover {
  background-color: black;
}
#index-body .news .news-content ul li .box .text a.btn i {
  font-size: 16px;
}
#index-body .contact {
  height: 450px;
  background: url("../images/contact-bg.jpg") no-repeat;
  background-size: cover;
}
#index-body .contact .contact-content .h-title p,
#index-body .contact .contact-content .h-title h3 {
  color: white;
}
#index-body .contact .contact-content .box {
  width: 50%;
  margin-left: auto;
}
#footer {
  position: relative;
  background: url('../images/footer-bg.jpg') no-repeat;
  background-size: cover;
}
#footer .footer-t {
  padding: 70px 15px 30px;
}
#footer .footer-t .form {
  color: white;
}
#footer .footer-t .form p {
  font-family: 'Barlow-Light';
}
#footer .footer-t .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;
  width: 100%;
  position: relative;
}
#footer .footer-t .form form .submit {
  width: 160px;
  height: 40px;
  background-color: var(--color);
  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;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
#footer .footer-t .form form .submit:hover input[type="submit"] {
  color: var(--color);
}
#footer .footer-t .form form .submit:hover::before {
  right: 0;
}
#footer .footer-t .form form .submit input[type="submit"] {
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 15;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 16px;
}
#footer .footer-t .form form .submit::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: white;
  position: absolute;
  top: 0;
  right: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .form form input[type='text'] {
  width: -webkit-calc((100% - 310px) / 3);
  width: -moz-calc((100% - 310px) / 3);
  width: calc((100% - 310px) / 3);
  height: 40px;
  border: none;
  background-color: white;
  color: #000;
  font-size: 16px;
  padding: 0 20px;
}
#footer .footer-t .footer-t-gird {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .footer-t .footer-t-gird .t-list.link span:last-child {
  margin-bottom: 0;
}
#footer .footer-t .footer-t-gird .t-list.link span:hover {
  color: var(--color);
}
#footer .footer-t .footer-t-gird .t-list {
  color: #fff;
  width: 500px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#footer .footer-t .footer-t-gird .t-list .qc-img img,
#footer .footer-t .footer-t-gird .t-list .qc-img canvas {
  width: 125px;
  height: auto;
  border: 3px solid #fff;
}
#footer .footer-t .footer-t-gird .t-list .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
#footer .footer-t .footer-t-gird .t-list .share a {
  margin-right: 20px;
}
#footer .footer-t .footer-t-gird .t-list .share a i {
  color: white;
  font-size: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .t-list .share a:hover i {
  color: var(--color);
}
#footer .footer-t .footer-t-gird .t-list .share a:last-child {
  margin-right: 0;
}
#footer .footer-t .footer-t-gird .t-list h4 {
  font-size: 24px;
  font-family: 'Barlow-Medium';
  margin: 15px 0 30px;
  color: white;
}
#footer .footer-t .footer-t-gird .t-list span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  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: 20px;
}
#footer .footer-b {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .footer-b .footer-b-box {
  height: 60px;
}
#footer .footer-b .footer-b-box span {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Barlow-Light';
}
#footer .footer-b .footer-b-box span:last-child a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-b .footer-b-box span:last-child a:hover {
  color: var(--color);
}
#footer .footer-b .footer-b-box img {
  width: 240px;
  height: auto;
  padding-top: 6px;
  margin-left: 5px;
  opacity: 0.4;
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  #banner .banner-content ul li .content .box .img {
    max-width: 80%;
    margin-top: 25px;
  }
  #banner .banner-content ul li .content .box .img img {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 60px;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu {
    width: auto;
  }
  #header .nav .ui.menu .right {
    margin-left: 30px;
  }
  #header .nav .ui.menu .right .h-search {
    margin-left: 20px;
  }
  #banner .banner-content ul li .content .box p {
    font-size: 16px;
    margin: 25px 0;
    max-width: 80%;
    line-height: 1.4;
  }
  .h-title h3 {
    font-size: 38px;
  }
  #index-body .news {
    padding: 85px 0;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 46px;
  }
  #header .nav .logo {
    max-width: 200px;
  }
  #banner .banner-content ul li .content .box .img {
    max-width: 60%;
  }
  #index-body .product .product-content ul {
    margin: 20px -15px 0;
  }
  #index-body .product .product-content ul li {
    padding: 25px 10px;
  }
  #index-body .contact .contact-content .box {
    width: 65%;
  }
  #footer .footer-t .footer-t-gird .t-list {
    max-width: 40%;
  }
  #footer .footer-t .footer-t-gird .t-list.contact span {
    line-height: 1.4;
  }
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block !important;
  }
  .ui.container {
    width: 700px;
  }
  #banner .banner-content ul li .content .box {
    max-width: 100%;
  }
  #banner .banner-content ul li .content .box p {
    max-width: 45%;
    margin: 20px 0;
  }
  #banner .banner-content ul li .content .box .img {
    display: none;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 34px;
  }
  #index-body .about .about-content .left {
    width: 100%;
  }
  #index-body .about .img2 {
    display: none;
  }
  #index-body .contact .contact-content .box {
    width: 100%;
  }
  #footer .footer-t .form form input[type='text'] {
    width: 100%;
    margin-bottom: 20px;
  }
  #footer .footer-b .footer-b-box {
    height: auto;
    padding: 15px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #footer .footer-b .footer-b-box span {
    text-align: center;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  .h-title h3 {
    font-size: 30px;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 24px;
  }
  #banner .banner-content ul li .content .box p {
    margin-bottom: 0;
    font-size: 14px;
    margin-top: 10px;
  }
  #banner .banner-content ul li .content .box a.more {
    display: none;
  }
  #index-body .product .product-content ul li .title a:first-child {
    width: -webkit-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: calc(100% - 80px);
  }
  #index-body .product .product-content ul li .title a:first-child h4 {
    font-size: 18px;
  }
  #footer .footer-t .footer-t-gird .t-list.link {
    display: none;
  }
  #footer .footer-t .footer-t-gird .t-list {
    max-width: 50%;
  }
  #index-body .product {
    padding: 85px 0;
  }
}
@media (max-width: 500px) {
  .ui.container,
  .ui.container2 {
    width: 100%;
  }
  #banner .banner-content {
    background-color: var(--color);
  }
  #banner .banner-content ul li {
    padding: 35px 0;
  }
  #banner .banner-content ul li .content {
    position: relative;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    left: unset;
    top: unset;
  }
  #banner .banner-content ul li > img {
    display: none;
  }
  #banner .banner-content ul li .content .box p {
    font-size: 16px;
    max-width: 100%;
  }
  #index-body .about .img {
    margin-top: 50px;
  }
  #index-body .advantage {
    padding: 80px 0;
  }
  #footer .footer-t .footer-t-gird {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-t .footer-t-gird .t-list.contact {
    max-width: 100%;
    margin-top: 50px;
  }
}




















/*------------------inner-page-----------------------*/
.font-bold {
  font-family: var(--font) !important;
}
.i-tag {
  font-size: 22px;
  line-height: 40px;
  font-family: var(--main-font);
}

.font-48 {
  font-size: 48px;
}

.font-52 {
  font-size: 52px;
}

.font-68 {
  font-size: 68px;
}

.inner-banner {
  padding: 80px 0;
  text-align: center;
  background-color: #f5f5f5;
  margin-top: 95px;
}

.inner-banner .mbx {
  font-size: 18px;
  line-height: 32px;
  color: var(--color);
}

.inner-banner h2 {
  font-size: 40px;
  font-family: var(--font);
}

.product2-page {
  padding: 50px 0;
}

.product2-page .product-list ul {
  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;
  margin: 0 -10px;
}

.product2-page .product-list ul li {
  padding: 0 10px;
  margin-bottom: 37px;
}

.product2-page .product-list ul li .img {
  overflow: hidden;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  transition: all 1.2s ease;
  background: transparent;
  position: relative;
}
.product2-page .product-list ul li .img .img-box{
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #cbcbcb;
}
.product2-page .product-list ul li .img img {
  width: 80%;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.product2-page .product-list ul li .img img.yin {
  position: absolute;
  left: 0;
  opacity: 0;
}

.product2-page .product-list ul li .img:hover img {
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.product2-page .product-list ul li .text .btm .slick-slide img {
  padding: 5px;
}

.product2-page .product-list ul li.wid-100 {
  width: 100%;
}

.product2-page .product-list ul li .pro-box .imgbox img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.product2-page .product-list ul li .pro-box .btm .tupianji .slick-list.draggable .slick-slide:last-child {
  display: none;
}

.product2-page .product-list ul li .pro-box .btm .tupianji img {
  max-height: 145px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product2-page .product-list ul li .text {
  /*background: #f7f7f7;*/
  margin-top: 0;
  padding: 10px;
}

.product2-page .product-list ul li .text .neirong p {
  font-size: 14px;
  color: #aaa;
  text-transform: lowercase;
  font-weight: 300;
}

.product2-page .product-list ul li .text h2 {
  font-family: var(--font);
  margin-top: 10px;
  line-height: 1.6;
  font-size: 22px;
  text-transform: capitalize;
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

/*.product2-page .product-list ul li:hover .text h2{
  color: rgba(0, 0, 0, 0.4);
}*/
.product2-page .product-list ul li .img img.yin {
  position: absolute;
  left: 0;
  opacity: 0;
}

.product2-page .product-list ul li:hover .img img.yin {
  opacity: 1;
}

.inner-page .sidebar-box .sidebar-left {
  width: 28%;
  position: sticky;
  top: 150px;
  padding-right: 45px;
}

.inner-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-title {
  font-size: 32px;
  line-height: 2;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
  font-family: var(--font);
}

.inner-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 40px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 50px;
  font-size: 16px;
  color: #555555;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/search.png) no-repeat center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 40px;
  /*max-height: 3300px;
  overflow-y: auto;*/
  padding-right: 5px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
  padding: 8px 0;
  font-size: 24px;
  font-family: var(--font);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  line-height: 2;
  word-break: break-all;
  position: relative;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a i {
  float: right;
  position: relative;
  top: 1px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
  color: #aaa;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover,
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a.active {
  color: #b81b22;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active>a {
  color: #b81b22;
}

/*.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol{
  display: none;
}*/
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active>ol {
  display: block;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li>ol>li {
  /*list-style-type: disc;*/
  margin-left: 10px;
  color: #7b7b7b;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li>ol>li a {
  font-size: 18px;
  line-height: 40px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 40px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 15px 0;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 20px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img img {
  height: 80px;
  max-width: 100px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 2;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-family: var(--font);
  font-size: 16px;
  line-height: 30px;
  display: -webkit-box;
  margin-bottom: 8px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: rgba(0, 0, 0, 0.4);
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(../images/ny-bg.jpg) no-repeat center center;
  padding: 260px 40px 30px;
  font-size: 14px;
  height: 460px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 2;
  margin-bottom: 20px;
  font-family: var(--font);
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 20px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
  display: block;
}

.inner-page .sidebar-box .sidebar-right {
  width: 72%;
}

.inner-page.product2-page .sidebar-left {
  padding-right: 45px;
}

.product2-page .sidebar-right h1 {
      margin-bottom: 50px;
    font-size: 32px;
    color: rgb(184 27 34);
    font-family: var(--font);
}

.product2-page .sidebar-right .Auxil-catdes {
  color: #7b7b7b;
  line-height: 2;
  font-size: 18px;
  margin-bottom: 18px;
  max-height: 290px;
  overflow: auto;
}

.inner-page .m-page {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.inner-page .m-page a,
.inner-page .m-page span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  display: inline-block;
  margin-right: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 18px;
  font-family: var(--font);
  line-height: 30px;
}

.inner-page .m-page a:hover,
.inner-page .m-page span.current {
      background: rgb(184 27 34);
    color: #ffffff;
}

.prodet-page {
  padding: 100px 0 100px;
}

.prodet-page .prodet-1 .img .big-img {
  position: relative;
  /*height: 800px;*/
  overflow: hidden;
  border: 1px solid #eee;
}

.prodet-page .prodet-1 .img .big-img img {
  /*width: 100%;*/
  position: relative;
  max-height: 600px;
  display: block;
  margin: auto;
}

.prodet-page .prodet-1 .img .big-img .i2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}

.prodet-page .prodet-1 .img .big-img:hover .i2 {
  opacity: 1;
}

.prodet-page .prodet-1 .img .big-img .fd {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
}

.prodet-page .prodet-1 .img .big-img .fd a {
  display: block;
  width: 47px;
  height: 47px;
  line-height: 47px;
  border-radius: 50%;
  background: white;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  text-align: center;
  font-size: 18px;
}

.prodet-page .prodet-1 .text {
  padding-left: 50px;
}

.prodet-page .prodet-1 .text h1 {
  font-size: 36px;
  font-family: var(--font);
  line-height: 1.4;
  margin-bottom: 20px;
}

.prodet-page .prodet-1 .text .con {
  font-size: 18px;
  line-height: 1.8;
  color: #7b7b7b;
}

.prodet-page .prodet-1 .text .more {
  margin-top: 35px;
}

.prodet-page .prodet-1 .text .m-link {
  margin-top: 35px;
}

.prodet-page .prodet-1 .text .m-link a {
  display: block;
  font-size: 17px;
  line-height: 1.8;
  color: #181818;
}

.prodet-page .prodet-1 .text .m-link a em {
  text-transform: uppercase;
}

.prodet-page .prodet-1 .text .list {
  margin-top: 35px;
}

.prodet-page .prodet-1 .text .list p {
  font-size: 17px;
  line-height: 1.6;
  color: #181818;
}

.prodet-page .prodet-1 .text .list p a {
  display: inline-block;
  color: #83827F;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.prodet-page .prodet-1 .text .list p a:hover {
  color: rgba(0, 0, 0, 0.4);
}

.prodet-page .prodet-1 .text .list p span {
  color: #83827F;
}

.prodet-page .prodet-1 .img .gallery-img {
  margin-top: 35px;
}

.prodet-page .prodet-1 .img .gallery-img .slick-track {
  margin-left: 0;
}

.prodet-page .prodet-1 .img .gallery-img ul {
  margin-right: -20px;
}

.prodet-page .prodet-1 .img .gallery-img ul li {
  padding-right: 20px;
  cursor: pointer;
}

.prodet-page .prodet-1 .img .gallery-img ul li a {
  display: block;
  background: white;
  border: 1px solid #eee;
}

.prodet-page .prodet-1 .img .gallery-img ul li a img {
  display: block;
  max-height: 130px;
  margin: auto;
}

.prodet-page .prodet-2 {
  padding: 65px 0 30px;
}

.prodet-page .prodet-2 .options {
  margin-bottom: 35px;
}

.prodet-page .prodet-2 .options ul li {
  display: inline-block;
  padding: 3px 6px;
  margin: 0 -6px;
  position: relative;
  border-radius: 4px 4px 0 0;
}

.prodet-page .prodet-2 .options ul li a {
  padding: 15px;
  min-width: 280px;
  font-size: 24px;
  line-height: 30px;
  /*letter-spacing: 1.5px;*/
  border-top: 2px solid transparent;
  font-family: var(--font);
  background: white;
  color: #181818;
  display: block;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.prodet-page .prodet-2 .options ul li:hover a,
.prodet-page .prodet-2 .options ul li.active a {
  background: rgb(184 27 34);
  border-top-color: #181818;
  color: white;
}

.prodet-page .prodet-2 .ret .slide .content {
  font-size: 18px;
  line-height: 1.8;
}
.prodet-page .prodet-2 .ret .slide .content .grid-box{
  font-size: unset;
}
.prodet-page .prodet-2 .ret .slide .content .grid-box .column{
  font-size: 18px;
  margin: 20px 0;
  width:100%;
}
.prodet-page .prodet-2 .ret .slide .con h4 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: var(--font);
}

.prodet-page .prodet-2 .ret .slide .con .left {
  padding: 0 15px;
}

.prodet-page .prodet-2 .ret .slide .con .left ul {
  margin-bottom: -20px;
}

.prodet-page .prodet-2 .ret .slide .con .left ul li {
  padding-bottom: 20px;
}

.prodet-page .prodet-2 .ret .slide .con .left ul li .desc {
  font-size: 16px;
  line-height: 1.8;
  color: #83827F;
  margin-top: 10px;
}

.prodet-page .prodet-2 .ret .slide .con .left ul li span {
  font-size: 20px;
  line-height: 1.4;
  font-family: var(--font);
  display: inline-block;
  margin-top: 20px;
}

.prodet-page .prodet-2 .ret .slide .con .right {
  padding: 0 15px;
}

.prodet-page .prodet-2 .ret .slide .con .right p {
  font-size: 18px;
  line-height: 32px;
  color: #83827F;
}

.prodet-page .prodet-2 .ret .slide .con .right form {
  margin-top: 24px;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul {
  margin-bottom: -24px;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li {
  margin-bottom: 24px;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li label {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #181818;
  font-weight: 500;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li input,
.prodet-page .prodet-2 .ret .slide .con .right form ul li textarea {
  padding: 10px 0;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d1d0c8;
  font-size: 20px;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li .rate {
  margin-top: 7px;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li .rate i {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.4);
  position: relative;
  width: 17px;
  display: inline-block;
  cursor: pointer;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li .rate i::after {
  content: "\f006";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 17px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li .rate i:hover::after,
.prodet-page .prodet-2 .ret .slide .con .right form ul li .rate i.active::after {
  content: "\f005";
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li textarea {
  height: 96px;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li input[type="checkbox"] {
  display: inline-block;
  padding: 0;
  width: auto;
  vertical-align: middle;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li span {
  font-size: 14px;
  line-height: 2;
  color: #a7a7a7;
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li .more {
  padding: 0;
}

.prodet-page .prodet-2 .ret .slide .con .right form ul li input[type="submit"] {
  padding: 0 45px;
  width: 100%;
  border: none;
  color: white;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}

.prodet-page .prodet-3 {
  padding-top: 75px;
}

.prodet-page .prodet-3 h3 {
  font-size: 48px;
  font-family: var(--font);
  line-height: 1.2;
  margin-bottom: 40px;
}

.prodet-page .prodet-3 .content ul {
  margin-right: -30px;
}

.prodet-page .prodet-3 .content ul li {
  padding-right: 30px;
}

.prodet-page .prodet-3 .content ul li .img {
  position: relative;
}

.prodet-page .prodet-3 .content ul li .img .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  border: 1px solid #e9e9e9;
}

.prodet-page .prodet-3 .content ul li .img .img-box img {
  max-width: 85%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.prodet-page .prodet-3 .content ul li .img .icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.prodet-page .prodet-3 .content ul li .img .icon a {
  display: inline-block;
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  background: white;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
}

.prodet-page .prodet-3 .content ul li .img .icon a img {
  display: inline-block;
  vertical-align: middle;
}

.prodet-page .prodet-3 .content ul li .img:hover .img-box img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.prodet-page .prodet-3 .content ul li .img:hover .icon {
  opacity: 1;
}

.prodet-page .prodet-3 .content ul li .text {
  padding-top: 25px;
}

.prodet-page .prodet-3 .content ul li .text h3 {
  font-size: 20px;
  line-height: 1.8;
  min-height: 4rem;
  margin-bottom: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.prodet-page .prodet-3 .content ul li .text .con {
  font-size: 18px;
  line-height: 32px;
  color: #83827F;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.prodet-page .prodet-3 .content ul li:hover h3 {
  color: rgba(0, 0, 0, 0.4);
}

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

  .inner-page .sidebar-box .sidebar-left,
  .inner-page.product2-page .sidebar-left {
    display: none;
  }

  .Auxil-catdes {
    display: none;
  }

  .inner-page .sidebar-box .sidebar-right,
  .inner-page .sidebar-box .sidebar-right {
    width: 100%;
  }

  .prodet-page {
    padding: 60px 0;
  }

  .prodet-page .prodet-1 .text {
    padding-left: 20px;
  }

  .prodet-page .prodet-1 .text h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .prodet-page .prodet-1 .text .con {
    font-size: 16px;
    line-height: 30px;
  }

  .prodet-page .prodet-1 .text .more {
    margin-top: 15px;
    padding: 15px 30px;
  }

  .prodet-page .prodet-1 .text .list {
    margin-top: 15px;
  }

  .prodet-page .prodet-2 .ret .slide .con .left {
    width: 100%;
    padding: 15px 0;
  }

  .prodet-page .prodet-2 .ret .slide .con .right {
    width: 100%;
    padding: 0;
  }
}

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

  .prodet-page .prodet-1 .img {
    width: 100%;
  }

  .prodet-page .prodet-1 .text {
    width: 100%;
    padding: 20px 0 0 0;
  }

  .prodet-page .prodet-2 {
    padding-top: 30px;
  }

  .prodet-page .prodet-2 .options {
    margin-bottom: 20px;
  }

  .prodet-page .prodet-2 .options ul li a {
    min-width: 230px;
    padding: 10px 0;
  }

  .prodet-page .prodet-2 .ret .slide .content {
    font-size: 16px;
  }

  .prodet-page .prodet-3 {
    padding-top: 30px;
  }

  .prodet-page .prodet-3 h3 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .prodet-page .prodet-3 .content ul {
    margin-right: -15px;
  }

  .prodet-page .prodet-3 .content ul li {
    padding-right: 15px;
  }

  .prodet-page .prodet-3 .content ul li .text {
    padding-top: 15px;
  }

  .prodet-page .prodet-3 .content ul li .text h3 {
    font-size: 18px;
    line-height: 32px;
  }

  .prodet-page .prodet-3 .content ul li .text .con {
    font-size: 16px;
    line-height: 30px;
  }

  .prodet-page .prodet-1 .img .big-img {
    height: auto;
  }
}

@media screen and (max-width: 500px) {
  .prodet-page .prodet-1 .text h1 {
    font-size: 26px;
    line-height: 1.6;
  }

  .prodet-page .prodet-1 .text .list p {
    font-size: 16px;
  }

  .prodet-page .prodet-2 .options ul li {
    display: block;
    width: 100%;
  }

  .prodet-page .prodet-2 .options ul li a {
    min-width: auto;
    width: 100%;
  }

  .prodet-page .prodet-3 h3 {
    font-size: 30px;
  }

  .prodet-page .prodet-2 .ret .slide .con .left {
    display: none;
  }
}


.service-page {
  padding: 120px 0 80px;
}

.service-page .service-1 {
  padding-bottom: 60px;
}

.service-page .service-1 #index-body .about {
  padding: 0;
}

.service-page .service-1 #index-body .about .top .text h2.title {
  margin-bottom: 40px;
  line-height: 1.4;
}

.service-page .service-1 #index-body .about .top .text h3 {
  font-size: 22px;
  line-height: 1.6;
  color: #181818;
  font-weight: 400;
  margin-top: 32px;
}

.service-page .service-1 #index-body .about .top .text p {
  font-size: 16px;
  line-height: 30px;
  color: #7b7b7b;
}

.service-page .service-1 #index-body .about .top .img {
  text-align: right;
  padding: 0 0 50px 0;
}

.service-page .service-1 #index-body .about .top .img .i2 {
  position: absolute;
  left: 0;
  bottom: -25px;
  top: auto;
  z-index: 1;
}

.service-page .service-2 {
  background: #fff;
  padding: 120px 0;
}

.service-page .service-2 .header {
  width: 70%;
  margin: 0 auto;
}

.service-page .service-2 .header .title {
  line-height: 1.2;
  margin-top: 12px;
}

.service-page .service-2 .content {
  margin-top: 80px;
}

.service-page .service-2 .content ul {
  margin-right: -30px;
}

.service-page .service-2 .content ul li {
  padding-right: 30px;
}

.service-page .service-2 .content ul li .ig {
  text-align: center;
}

.service-page .service-2 .content ul li .ig .img-box {
  display: block;
  width: 60%;
  margin: 0 auto;
  border-radius: 50%;
}

.service-page .service-2 .content ul li .ig .text {
  padding-top: 28px;
}

.service-page .service-2 .content ul li .ig .text span {
  font-size: 17px;
  color: #83827F;
  line-height: 1.6;
  text-transform: uppercase;
}

.service-page .service-2 .content ul li .ig .text h3 {
  font-size: 24px;
  line-height: 1.6;
  margin-top: 10px;
  font-family: var(--font);
}

.service-page .service-2 .content ul li .ig .text p {
  font-size: 16px;
  line-height: 30px;
  color: #83827F;
  margin-top: 10px;
}

.service-page .service-2 .content ul li .ig .text .mores {
  width: 47px;
  height: 47px;
  line-height: 45px;
  text-align: center;
  background: #fff;
  border: 1px solid #d1d0c8;
  border-radius: 50%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: 25px;
  display: inline-block;
}

.service-page .service-2 .content ul li .ig .text .mores img {
  display: inline-block;
  vertical-align: middle;
}

.service-page .service-2 .content ul li .ig .text .mores:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.4);
}

.service-page #index-body .init1 h3 {
  width: 46%;
}

.service-page #index-body .rate {
  padding: 100px 0 30px;
}

.service-page #index-body .rate .content {
  margin-top: 50px;
}

.service-page #index-body .rate .content ul {
  margin: -15px;
}

.service-page #index-body .rate .content ul li {
  padding: 15px;
}

.service-page #index-body .rate .content ul li .box {
  background: #f2f2f2;
  padding: 30px;
  min-height: 300px;
}

.service-page #index-body .rate .content ul li .box .title {
  display: block;
  font-family: var(--font);
  font-size: 26px;
  margin-top: 15px;
}

.service-page #index-body .rate .content ul li .box .desc {
  font-size: 18px;
  line-height: 32px;
  margin-top: 20px;
  color: #7b7b7b;
}

.service-page .service-3 {
  padding: 120px 0;
}

.service-page .service-3 .top .img {
  vertical-align: middle;
}

.service-page .service-3 .top .img .info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 70px;
  width: 100%;
}

.service-page .service-3 .top .img img {
  width: 48.2%;
  margin-right: 20px;
}

.service-page .service-3 .top .img img:last-child {
  margin: 0 0 0 20px;
}

.service-page .service-3 .top .text {
  padding-left: 48px;
  vertical-align: middle;
}

.service-page .service-3 .top .text .box {
  width: 80%;
}

.service-page .service-3 .top .text .box h2.title {
  line-height: 1.2;
  width: 90%;
}

.service-page .service-3 .top .text .box p {
  font-size: 17px;
  line-height: 1.8;
  color: #83827F;
  margin-top: 20px;
}

.service-page .service-3 .top .text .box .more {
  padding: 21px 29px 20px 28px;
  margin-top: 45px;
}

.service-page .service-3 .bottom {
  padding-top: 120px;
}

.service-page .service-3 .bottom ul {
  margin-right: -60px;
}

.service-page .service-3 .bottom ul li {
  text-align: center;
  padding-right: 60px;
}

.service-page .service-3 .bottom ul li i {
  display: inline-block;
  height: 69px;
}

.service-page .service-3 .bottom ul li i img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.service-page .service-3 .bottom ul li i:hover img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.service-page .service-3 .bottom ul li .text {
  padding-top: 21px;
}

.service-page .service-3 .bottom ul li .text h3 {
  font-size: 26px;
  line-height: 1.1;
}

.service-page .service-3 .bottom ul li .text p {
  font-size: 17px;
  line-height: 1.6;
  color: #83827F;
  margin-top: 20px;
}

.service-page .service-3 .bottom ul li .text .mores {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  overflow: hidden;
}

.service-page .service-3 .bottom ul li .text .mores span {
  margin-top: 5px;
  position: relative;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
  text-indent: -110px;
  visibility: hidden;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
  -moz-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
  will-change: visibility, margin-right, text-indent, opacity;
}

.service-page .service-3 .bottom ul li .text .mores em {
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  height: 21px;
  line-height: 21px;
}

.service-page .service-3 .bottom ul li .text .mores em img {
  display: inline-block;
  vertical-align: middle;
}

.service-page .service-3 .bottom ul li .text .mores:hover span {
  opacity: 1;
  text-indent: 0;
  margin-right: 6px;
  visibility: visible;
  -webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
  -moz-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
}

#index-body .about .top .text {

  vertical-align: middle;
  padding-right: 73px;
}

#index-body .about .top .text .btn a.link {
  display: inline-block;
  vertical-align: top;
  margin-left: 35px;
}

#index-body .about .top .text .btn a.link em {
  display: inline-block;
  padding: 22px;
  background: rgba(0, 0, 0, 0.4);
}

#index-body .about .top .text .btn a.link span {
  display: inline-block;
  font-size: 20px;
  line-height: 36px;
  padding-left: 5px;
}

#index-body .about .top .text .btn {
  margin-top: 37px;
}

#index-body .init1 {
  background: rgba(0, 0, 0, 0.4);
  padding: 60px 0 68px;
}

#index-body .init1 .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.service-page #index-body .init1 h3 {
  width: 55%;
  color: #fff;
  font-size: 34px;
  line-height: 1.4;
  font-family: var(--font);
}

.service-page #index-body .init1 .more {
  background: white;
  color: black;
}

.service-page #index-body .init1 .more:hover {
  color: white;
}

@media screen and (max-width: 1680px) {
  .service-page .service-3 .top .text .box h2.title {
    width: 100%;
  }
}

@media screen and (max-width: 1440px) {
  .service-page {
    padding: 100px 0;
  }

  .service-page .service-1 {
    padding-bottom: 60px;
  }

  .service-page .service-2 {
    padding: 100px 0;
  }

  .service-page .service-3 .top .img {
    width: 55%;
  }

  .service-page .service-3 .top .img .info {
    padding: 0 40px;
  }

  .service-page .service-3 .top .text {
    width: 45%;
  }

  .service-page .service-3 .top .text .box {
    width: 100%;
  }

  .service-page .service-3 {
    padding: 100px 0;
  }

  .service-page .service-3 .bottom {
    padding-top: 100px;
  }

  .service-page #index-body .rate .content ul li .box .title {
    font-size: 20px;
    line-height: 36px;
  }

  .service-page #index-body .rate .content ul li .box .desc {
    min-height: 162px;
  }

}

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

  #index-body .about .top .text {
    padding-right: 50px;
  }
}

@media screen and (max-width: 1100px) {
  .service-page .service-1 #index-body .about .top .img {
    padding: 0 0 50px 30px;
  }
}

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

  #index-body .init1 .info {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .service-page #index-body .init1 h3 {
    width: 100%;
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .service-page .service-1 #index-body .about .top .text {
    padding-right: 0;
    width: 100%;
  }

  .service-page .service-1 #index-body .about .top .img {
    width: 100%;
    margin-top: 25px;
  }

  .service-page .service-1 {
    padding-bottom: 60px;
  }

  .service-page .service-2 {
    padding: 60px 0;
  }

  .service-page .service-2 .content ul li .ig .text h3 {
    min-height: 60px;
  }

  .service-page .service-3 {
    padding: 60px 0;
  }

  .service-page .service-3 .top .img {
    width: 100%;
  }

  .service-page .service-3 .top .img .info {
    padding: 0 40px 0 20px;
  }

  .service-page .service-3 .top .text {
    width: 100%;
    padding: 20px 20px 0;
  }

  .service-page .service-3 .bottom {
    padding-top: 60px;
  }

  .service-page .service-3 .bottom ul {
    margin-right: -20px;
  }

  .service-page .service-3 .bottom ul li {
    padding-right: 20px;
  }
}

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

  .service-page .service-1 #index-body .about .top .text h3 {
    margin-top: 12px;
  }

  .service-page .service-1 {
    padding-bottom: 30px;
  }

  .service-page .service-2 {
    padding: 30px 0;
  }

  .service-page .service-2 .header {
    width: 100%;
  }

  .service-page .service-2 .content {
    margin-top: 20px;
  }

  .service-page .service-2 .content ul {
    margin-right: -15px;
  }

  .service-page .service-2 .content ul li {
    padding-right: 15px;
  }

  .service-page .service-2 .content ul li .ig .text {
    padding-top: 14px;
  }

  .service-page .service-2 .content ul li .ig .text span {
    font-size: 15px;
  }

  .service-page .service-2 .content ul li .ig .text h3 {
    font-size: 24px;
    line-height: 1.6;
  }

  .service-page .service-3 .top .text .box .more {
    margin-top: 20px;
  }

  .service-page .service-3 .bottom {
    padding-top: 30px;
  }

  .service-page .service-3 .bottom ul li .text h3 {
    font-size: 20px;
  }

  .service-page .service-3 .bottom ul li .text p {
    font-size: 15px;
  }

  .service-page .service-3 .bottom ul {
    margin-bottom: -20px;
  }

  .service-page .service-3 .bottom ul li {
    padding-bottom: 20px;
  }

  .service-page .service-3 {
    padding: 30px 0;
  }
}

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


  .service-page #index-body .about .top .text .btn a.link {
    display: block;
    margin: 10px 0 0 0;
  }

  .service-page .service-3 .top .text .box p {
    font-size: 15px;
    line-height: 30px;
  }

  .service-page .service-3 .top .text .box .more {
    padding: 12px 18px;
  }

  #index-body .about .top .text .btn a.link em {
    padding: 10px;
  }

  .service-page .service-3 .top .img img {
    margin-right: 10px;
    width: 49.5%;
  }

  .service-page .service-3 .top .img img:last-child {
    margin: 0 0 0 10px;
  }

  .service-page .service-3 .top .img .info {
    padding: 0 30px 0 20px;
  }
}

.faq-page .marginBox {
  padding: 0px 0 100px;
  text-align: center;
}

.faq-page .marginBox .h2 {
  line-height: 1.2;
  margin-top: 12px;
}

.faq-page .marginBox .box {
  margin-top: 50px;
  text-align: left;
}

.faq-page .marginBox .box .left {
  width: 40%;
}

.faq-page .marginBox .box .left .box2 {
  padding: 50px 35px;
  background: #f5f5f5;
}

.faq-page .marginBox .box .left .box2 .slide {
  padding-right: 10px;
}

.faq-page .marginBox .box .left .box2 .slide span.h6 {
  font-family: var(--font);
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 1.8em;
  display: block;
}

.faq-page .marginBox .box .left .box2 .slide .nav ul li {
  font-size: 18px;
  color: #8e8e8e;
  margin-bottom: 1em;
  line-height: 32px;
}

.faq-page .marginBox .box .left .box2 .slide .nav ul li ul {
  display: none !important;
}

.faq-page .marginBox .box .left .box2 .slide .nav ul li:last-child {
  margin-bottom: 0;
}

.faq-page .marginBox .box .right {
  width: 60%;
  padding-left: 3%;
}

.faq-page .marginBox .box .right .list ul li {
  margin-bottom: 20px;
  padding: 15px;
  background: #eee;
  border: 1px solid #bfbfbf;
}

.faq-page .marginBox .box .right .list ul li span.title {
  font-family: var(--font);
  font-size: 22px;
  line-height: 32px;
  color: #242424;
  text-align: right;
  display: block;
  position: relative;
  padding-left: 25px;
}

.faq-page .marginBox .box .right .list ul li span.title i {
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 5px;
  cursor: pointer;
  cursor: hand;
}

.faq-page .marginBox .box .right .list ul li span.title i:after,
.faq-page .marginBox .box .right .list ul li span.title i:before {
  content: '';
  background: black;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.faq-page .marginBox .box .right .list ul li span.title i:before {
  -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);
}

.faq-page .marginBox .box .right .list ul li .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
  margin: 30px 0;
  display: none;
  text-align: right;
}

.faq-page .marginBox .box .right .list ul li.active {
  background: white;
}

.faq-page .marginBox .box .right .list ul li.active span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}

.faq-page .marginBox .box .right .list ul li:last-child {
  margin-bottom: 0;
}

.video-page .video-1 {
  padding: 38px 0 90px;
  background: #f6f6f6;
}

.video-page .video-1 .tag,
.video-page .video-2 .tag {
  color: rgba(0, 0, 0, 0.4);
}

.video-page .video-1 .header h2.title {
  margin-top: 14px;
  line-height: 1.2;
}

.video-page .video-1 .content {
  margin-top: 40px;
}

.video-page .video-1 .content ul {
  margin: -10px -12px;
}

.video-page .video-1 .content ul li {
  padding: 10px 12px;
}

.video-page .video-1 .content ul li .ig {
  display: block;
  -webkit-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
  background-color: #fff;
  padding: 14px;
}

.video-page .video-1 .content ul li .ig video {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-page .video-2 {
  padding: 93px 0 107px;
}

.video-page .video-2 .header h2.title {
  margin-top: 14px;
}

.video-page .video-2 .content {
  margin-top: 57px;
}

.video-page .video-2 .content ul {
  margin: 0 -26px -25px 0;
}

.video-page .video-2 .content ul li {
  padding: 0 26px 25px 0;
}

.video-page .video-2 .content ul li .ig {
  background: #eee;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.video-page .video-2 .content ul li .ig span {
  display: inline-block;
}

.video-page .video-2 .content ul li .ig .fl {
  padding: 0 15px;
  width: 75%;
}

.video-page .video-2 .content ul li .ig .fr {
  width: 150px;
  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;
}

.video-page .video-2 .content ul li .ig .fr img {
  margin-right: 15px;
}

.video-page .video-2 .content ul li .ig:hover {
  background: rgba(0, 0, 0, 0.4);
  color: white;
}

.video-page .video-2 .content ul li .ig:hover .fr img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 1280px) {
  .video-page .video-2 .content ul li .ig .fl {
    width: 70%;
  }
}

@media screen and (max-width: 1100px) {
  .video-page .video-2 .content ul li .ig .fl {
    width: 68%;
  }

  .faq-page .marginBox .box .left {
    display: none;
  }

  .faq-page .marginBox .box .right {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width: 1000px) {
  .video-page .video-1 {
    padding: 38px 0 60px;
  }

  .video-page .video-1 .content ul li {
    width: 50%;
  }

  .video-page .video-2 .content ul li {
    width: 100%;
  }

  .video-page .video-2 {
    padding: 60px 0;
  }

  .video-page .video-2 .content {
    margin-top: 30px;
  }
}

@media screen and (max-width: 500px) {
  .video-page .video-1 {
    padding: 30px 0;
  }

  .video-page .video-1 .content ul li {
    width: 100%;
  }

  .video-page .video-2 .content ul li .ig {
    font-size: 16px;
    height: auto;
    line-height: 1;
    padding: 10px 0;
  }

  .video-page .video-2 .content ul li .ig .fl {
    width: 100%;
  }

  .video-page .video-2 .content ul li .ig .fr {
    width: 100%;
    padding: 10px 0 0 15px;
  }
}

.news-page .sidebar-right ul {
  margin: -15px;
}

.news-page .sidebar-right ul li {
  padding: 15px;
}

.news-page .sidebar-right ul li .cat_name {
  background-color: var(--color);
  display: inline-block;
  color: white;
  font-size: 16px;
  line-height: 2;
  padding: 4px 17px 4px 17px;
  margin-top: 20px;
}

.news-page .sidebar-right ul li .title {
  font-size: 20px;
  font-family: var(--font);
  line-height: 36px;
  margin-top: 21px;
  min-height: 5.5em;
}

.news-page .sidebar-right ul li .des {
  font-size: 16px;
  color: #7b7b7b;
  line-height: 30px;
  margin-top: 6px;
}

.news-page .sidebar-right ul li .time {
  font-size: 16px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.4);
  display: inline-block;
  margin-top: 2px;
}

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

.newdet-page .header {
  max-width: 1520px;
  width: 100%;
  padding: 70px 70px 40px 70px;
  background: #fff;
  margin: 0 auto;
  text-align: center;
}

.newdet-page .header .categoty {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background: var(--color);
  padding: 5px 15px;
  text-transform: uppercase;
}

.newdet-page .header h1 {
  font-size: 32px;
  line-height: 1.6;
  margin: 20px 71px 0;
}

.newdet-page .header .post_meta {
  margin-top: 26px;
}

.newdet-page .header .post_meta span {
  display: inline-block;
  vertical-align: middle;
}

.newdet-page .header .post_meta .post_author_avatar {
  margin-right: 11px;
}

.newdet-page .header .post_meta .photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.newdet-page .header .post_meta .post_author_name {
  font-size: 16px;
  line-height: 1;
}

.newdet-page .header .post_meta .post_author {
  display: inline-block;
  vertical-align: middle;
}

.newdet-page .header .post_meta .post_author::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background: #7b7b7b;
  border-radius: 50%;
  margin: 0 10px 0;
}

.newdet-page .header .post_meta .post_date {
  font-size: 16px;
  color: #7b7b7b;
  line-height: 30px;
}

.newdet-page .header .post_meta .post_date::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  /*background: #83827F;*/
  border-radius: 50%;
  margin: -6px 10px 0;
}

.newdet-page .header .post_meta .post_meta_number {
  font-size: 14px;
  color: #83827F;
}

.newdet-page .content {
  margin-top: 40px;
  font-size: 18px;
  line-height: 32px;
  color: #7b7b7b;
}

.newdet-page .share {
  max-width: 1820px;
  width: 100%;
  margin: 40px auto 0;
  padding: 28px 0;
  border-top: 1px solid #d1d0c8;
  border-bottom: 1px solid #d1d0c8;
  text-align: right;
}

.newdet-page .share a {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  font-size: 20px;
  background: #fff;
  margin: 3px 0 3px 7px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}

.newdet-page .share a:first-child {
  margin-left: 0;
}

.newdet-page .share a:nth-child(1) {
  background: #48bde9;
  color: #fff;
}

.newdet-page .share a:nth-child(2) {
  background: #4f5fbf;
  color: #fff;
}

.newdet-page .share a:nth-child(3) {
  background: #7a7e83;
  color: #fff;
}

.newdet-page .share a:nth-child(4) {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.newdet-page .share a:nth-child(5) {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.newdet-page .share a:hover {
  margin-top: -3px;
}

.newdet-page .m-link {
  /*max-width: 1060px;*/
  margin: 40px auto 0;
}

.newdet-page .m-link a {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.newdet-page .m-link a em {
  display: block;
  font-size: 18px;
  line-height: 32px;
  color: #7b7b7b;
}

.newdet-page .m-link a:first-child i {
  margin-right: 10px;
}

.newdet-page .m-link a:last-child {
  text-align: right;
}

.newdet-page .m-link a:last-child i {
  margin-left: 10px;
}

.newdet-page .m-link a span {
  font-size: 18px;
  line-height: 32px;
  font-family: var(--font);
}

.newdet-page .m-link a:hover {
  color: #000;
}

.newdet-page .prodet-page {
  padding: 0;
}

.newdet-page .prodet-2 {
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
}

.newdet-page .prodet-2 .ret .slide .con .right {
  padding: 0;
}

.newdet-page .prodet-3 {
  /*max-width: 1060px;*/
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  .newdet-page .header h1 {
    font-size: 50px;
    margin: 20px 40px 0;
  }
}

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

  .newdet-page .header h1 {
    font-size: 40px;
    margin: 20px 27px 0;
  }
}

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

  .newdet-page .header {
    padding: 30px 20px;
  }

  .newdet-page .header h1 {
    font-size: 34px;
    margin: 20px 20px 0;
  }

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

  .newdet-page .share {
    margin: 20px auto 0;
  }

  .newdet-page .m-lin {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .newdet-page .header h1 {
    font-size: 24px;
    margin: 20px 0px 0;
  }

  .newdet-page .content {
    font-size: 16px;
    line-height: 30px;
  }

  .newdet-page .m-link a {
    display: block;
    width: 100%;
  }

  .newdet-page .m-link a:last-child {
    text-align: left;
    margin-top: 20px;
  }
}


.about-page .about-1 .top .img {
  position: relative;
  margin-top: 80px;
}

.about-page .about-1 .top .img .play {
  position: absolute;
  right: 36px;
  bottom: 115px;
  display: inline-block;
  padding: 50px 50px 50px 60px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  z-index: 1;
}

.about-page .about-1 .top .img .play::before,
.about-page .about-1 .top .img .play::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: -15px;
  background: rgba(0, 100, 40, 0.5);
  border-radius: 50%;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}

.about-page .about-1 .top .img .play::before {
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}

.about-page .about-1 .top .text {
  max-width: 1380px;
  width: 100%;
  margin: -70px auto 0;
  background: #fff;
  -webkit-box-shadow: 0px 9px 38px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 9px 38px 0px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 1;
  padding: 70px 68px 90px;
}

.about-page .about-1 .top .text .title {
  line-height: 1.2;
}

.about-page .about-1 .top .text .con {
  margin-top: 46px;
  font-size: 18px;
  line-height: 1.8;
  color: #7b7b7b;
}

.about-page .about-1 .bottom {
  max-width: 1215px;
  width: 100%;
  margin: 111px auto 0;
}

.about-page .about-1 .bottom ul {
  margin-right: -70px;
}

.about-page .about-1 .bottom ul li {
  padding-right: 48px;
}

.about-page .about-1 .bottom ul li .data {
  font-family: var(--font);
  padding-bottom: 26px;
  border-bottom: 1px solid #58596c;
}

.about-page .about-1 .bottom ul li .data em {
  font-size: 68px;
  line-height: 1.2;
  color: var(--color);
  display: inline-block;
  vertical-align: bottom;
}

.about-page .about-1 .bottom ul li .data sub {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.4);
  display: inline-block;
  vertical-align: bottom;
  line-height: 1;
  text-transform: capitalize;
  margin: 0 0 9px 7px;
}

.about-page .about-1 .bottom ul li .text .tit {
  font-size: 24px;
  font-family: var(--font);
  color: #000000;
  line-height: 2;
  margin-top: 23px;
}

.about-page .about-1 .bottom ul li .text p {
  font-size: 18px;
  line-height: 1.8;
  color: #7b7b7b;
}

.about-page .about-2 {
  margin-top: 137px;
}

.about-page .about-2 .box {
  padding: 122px 0;
  position: relative;
  z-index: 1;
}

.about-page .about-2 .box .img {
  width: 50.06%;
  vertical-align: middle;
}

.about-page .about-2 .box .text {
  width: 49.94%;
  max-width: 720px;
  padding-left: 64px;
  vertical-align: middle;
  color: #fff;
}

.about-page .about-2 .box .text .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-right: 24px;
}

.about-page .about-2 .box .text .header .left {
  width: 100%;
}

.about-page .about-2 .box .text .header .title {
  margin-top: 12px;
  line-height: 1.2;
}

.about-page .about-2 .box .text .header .more {
  color: #000;
  margin-bottom: 10px;
  background: #fff;
}

.about-page .about-2 .box .text .header .more span {
  text-decoration: none;
}

.about-page .about-2 .box .text .con {
  font-size: 20px;
  line-height: 1.8;
  margin-top: 41px;
}

.about-page .about-2 .box .text .list {
  margin-top: 29px;
}

.about-page .about-2 .box .text .list ul {
  margin-bottom: -25px;
}

.about-page .about-2 .box .text .list ul li {
  position: relative;
  padding-left: 47px;
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 25px;
}

.about-page .about-2 .box .text .list ul li::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 30px;
  height: 2px;
  background: white;
}

.about-page .about-2 .box::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 81.25%;
  height: 100%;
  background: var(--color);
}

.about-page .about-3 {
  background-color: #f2f2f2;
  padding: 12% 0 7%;
  margin-top: -122px;
}

.about-page .about-3 .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 63px;
  border-bottom: 1px solid #b8b8bc;
}

.about-page .about-3 .header .left {
  width: 50%;
}

.about-page .about-3 .header .left span.tag {
  color: rgba(0, 0, 0, 0.4);
}

.about-page .about-3 .header .left .title {
  margin-top: 12px;
  line-height: 1.2;
}

.about-page .about-3 .header .right {
  width: 50%;
  font-size: 18px;
  line-height: 1.8;
  color: #7b7b7b;
  padding: 0 0 0 20px;
}

.about-page .about-3 .content {
  margin-top: 88px;
}

.about-page .about-3 .content ul {
  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: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 -20px;
}

.about-page .about-3 .content ul li {
  padding: 20px;
  width: 33.33333333333%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: #121212;
}
.about-page .about-3 .content ul li .box{
  min-height: 315px;
  background: #fff;
  padding: 39px 35px 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .content ul li .tit {
  font-size: 24px;
  font-family: var(--font);
  line-height: 2;
  margin-top: 15px;
}

.about-page .about-3 .content ul li p {
  font-size: 18px;
  line-height: 1.8;
  color: #7b7b7b;
}

.about-page .about-3 .content ul li:hover .box{
  background: var(--color);
}

.about-page .about-3 .content ul li:hover i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.about-page .about-3 .content ul li:hover .tit,
.about-page .about-3 .content ul li:hover p {
  color: white;
}

.about-page .about-3 .list {
  margin-top: 151px;
}

.about-page .about-3 .list .img-box {
  display: block;
}

.about-page .about-3 .list .img-box img {
  width: 100%;
}

.about-page .about-3 .list .slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -54px;
  width: 100%;
  margin: 0;
  text-align: right;
  padding-right: 22px;
}

.about-page .about-3 .list .slick-dots li {
  width: 14px;
  height: 14px;
  background-color: #fff;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  cursor: pointer;
  -webkit-transition: .5;
  -moz-transition: .5;
  transition: .5;
  padding: 0;
}

.about-page .about-3 .list .slick-dots li:last-child {
  margin-right: 0;
}

.about-page .about-3 .list .slick-dots li button {
  display: none;
}

.about-page .about-3 .list .slick-dots li.slick-active {
  background: rgba(0, 0, 0, 0.4);
}

.about-page .about-4 {
  background: rgba(0, 0, 0, 0.4);
  padding: 68px 0 70px;
  max-width: 959px;
  width: 100%;
  margin-top: -17%;
  position: relative;
  z-index: 1;
  color: #fff;
}

.about-page .about-4 .box {
  max-width: 507px;
  margin: 0 94px 0 auto;
}

.about-page .about-4 .box .title {
  margin-top: 27px;
}

.about-page .about-4 .box .con {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 27px;
}

.about-page .about-4 .box .info {
  margin-top: 20px;
  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-bottom: 30px;
  border-bottom: 1px solid #fff;
}

.about-page .about-4 .box .info .tit {
  font-size: 20px;
  line-height: 1.5;
}

.about-page .about-4 .box .info p {
  font-size: 16px;
  line-height: 1.8;
}

.about-page .about-4 .box .more {
  margin-top: 36px;
  background: #000;
}

.about-page .about-4 .box .more:hover {
  background: #fff;
  color: rgba(0, 0, 0, 0.4);
}

.about-page .about-5 {
  padding: 120px 0 180px;
}

.about-page .about-5 .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 45px;
  border-bottom: 1px solid #b8b8bc;
}

.about-page .about-5 .header span.tag {
  color: rgba(0, 0, 0, 0.4);
}

.about-page .about-5 .header .title {
  margin-top: 12px;
  line-height: 1.2;
}

.about-page .about-5 .header .more {
  background: var(--color);
  margin-bottom: 4px;
  font-size: 16px;
}

.about-page .about-5 .header .more:hover {
  background: #000;
}

.about-page .about-5 .content {
  margin-top: 47px;
}

.about-page .about-5 .content ul {
  margin-right: -42px;
}

.about-page .about-5 .content ul li {
  padding-right: 42px;
}

.about-page .about-5 .content ul li .img-box {
  display: block;
}

.about-page .about-5 .content ul li .img-box img {
  width: 100%;
}

.about-page .about-5 .content ul .slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -54px;
  width: 100%;
  margin: 0;
  text-align: center;
}

.about-page .about-5 .content ul .slick-dots li {
  width: 14px;
  height: 14px;
  background-color: #d2d2d2;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  cursor: pointer;
  -webkit-transition: .5;
  -moz-transition: .5;
  transition: .5;
  padding: 0;
}

.about-page .about-5 .content ul .slick-dots li:last-child {
  margin-right: 0;
}

.about-page .about-5 .content ul .slick-dots li button {
  display: none;
}

.about-page .about-5 .content ul .slick-dots li.slick-active {
  background: rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 1440px) {
  .about-page .about-4 .box {
    margin: 0 auto;
  }
}

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

  .about-page .about-1 .top .img .play {
    padding: 30px 30px 30px 40px;
  }

  .about-page .about-2 .box .text {
    padding: 0 15px 0 30px;
  }


  .about-page .about-3 .content ul li .tit {
    font-size: 22px;
  }

  .about-page .about-4 {
    max-width: 800px;
  }
  .about-page .about-3 .content ul li p{
    line-height: 1.4;
  }
}

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

  .about-page .about-1 .top .text {
    padding: 70px 50px 90px;
  }

  .about-page .about-1 .bottom ul {
    margin-right: -40px;
  }

  .about-page .about-1 .bottom ul li {
    padding-right: 40px;
  }


  .about-page .about-4 {
    max-width: 700px;
  }
}

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

  .about-page .about-1 .top .text {
    padding: 50px 30px;
  }

  .about-page .about-1 .top .text .con {
    font-size: 18px;
  }

  .about-page .about-1 .bottom {
    margin: 60px auto 0;
  }

  .about-page .about-1 .bottom ul {
    margin-right: -20px;
  }

  .about-page .about-1 .bottom ul li {
    padding-right: 20px;
  }

  .about-page .about-1 .bottom ul li .data em {
    font-size: 50px;
  }

  .about-page .about-1 .bottom ul li .text .tit {
    font-size: 20px;
    line-height: 1.8;
  }

  .about-page .about-1 .bottom ul li .text p {
    font-size: 16px;
    line-height: 30px;
  }

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

  .about-page .about-2 .box {
    padding: 0 0 60px;
  }

  .about-page .about-2 .box .img {
    width: 100%;
  }

  .about-page .about-2 .box .text {
    width: 100%;
    margin-top: 20px;
  }

  .about-page .about-2 .box::after {
    width: 100%;
  }

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

  .about-page .about-3 .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }

  .about-page .about-3 .header .left {
    width: 100%;
  }

  .about-page .about-3 .header .right {
    width: 100%;
    padding: 20px 0 0 0;
  }

  .about-page .about-3 .content {
    margin-top: 30px;
  }
  .about-page .about-3 .content ul li{
    width: 50%;
  }
 
  .about-page .about-4 {
    max-width: 680px;
    margin-top: 0;
  }

  .about-page .about-5 {
    padding: 60px 0 11.05%;
  }

  .about-page .about-5 .header {
    padding-bottom: 30px;
  }

  .about-page .about-5 .header .left {
    width: 52%;
  }

  .about-page .about-5 .content ul {
    margin-right: -20px;
  }

  .about-page .about-5 .content ul li {
    padding-right: 20px;
  }
}

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

  .about-page .about-1 .top .img .play {
    padding: 20px 20px 20px 30px;
    bottom: 20px;
  }

  .about-page .about-1 .top .text {
    margin-top: 0;
    padding: 30px 15px;
  }

  .about-page .about-1 .top .text .con {
    margin-top: 20px;
  }

  .about-page .about-1 .bottom ul li .data {
    padding-bottom: 0;
  }

  .about-page .about-1 .bottom {
    margin: 30px auto 0;
  }

  .about-page .about-2 .box .text .con {
    margin-top: 20px;
  }

  .about-page .about-2 {
    margin-top: 30px;
  }

  .about-page .about-3 {
    padding: 30px 0;
  }
  .about-page .about-3 .content ul {
    margin: 0 -10px;
  }

  .about-page .about-3 .content ul li {
    padding: 20px 10px;
  }

  .about-page .about-3 .content ul li .tit {
    font-size: 20px;
    line-height: 1.8;
  }
  .about-page .about-3 .content ul li .box {
    padding: 39px 15px 0;
  }
  .about-page .about-3 .content ul li p {
    font-size: 17px;
    margin-top: 10px;
  }

  .about-page .about-3 .list {
    margin-top: 30px;
  }

  .about-page .about-4 {
    padding: 30px 15px;
  }

  .about-page .about-5 {
    padding: 30px 0;
  }

  .about-page .about-5 .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }

  .about-page .about-5 .header .left {
    width: 100%;
  }

  .about-page .about-5 .header .left .title {
    margin-top: 15px;
  }

  .about-page .about-5 .header .right {
    margin-top: 20px;
  }

  .about-page .about-5 .content {
    margin-top: 20px;
  }

  .about-page .about-5 .content ul .slick-dots {
    bottom: -25px;
  }
}

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

  .about-page .about-1 .top .img .play {
    padding: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
  }

  .about-page .about-1 .top .img .play img {
    width: 20px;
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
  }

  .about-page .about-1 .top .text .con {
    font-size: 16px;
    line-height: 30px;
  }

  .about-page .about-1 .bottom ul {
    margin: 0 0 -20px 0;
  }

  .about-page .about-1 .bottom ul li {
    padding: 0 0 20px 0;
  }

  .about-page .about-1 .bottom ul li .data em {
    font-size: 40px;
  }

  .about-page .about-2 .box {
    padding-bottom: 30px;
  }

  .about-page .about-2 .box .text .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about-page .about-2 .box .text .header .left {
    width: 100%;
  }

  .about-page .about-2 .box .text .header .left .title {
    margin-top: 10px;
  }

  .about-page .about-2 .box .text .header .right {
    padding: 20px 0 0;
  }

  .about-page .about-2 .box .text .con {
    font-size: 16px;
    margin-top: 10px;
    line-height: 30px;
  }

  .about-page .about-2 .box .text .list ul li {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-page .about-3 .header {
    padding-bottom: 10px;
  }

  .about-page .about-3 .header .left .title {
    margin-top: 10px;
  }

  .about-page .about-3 .header .right {
    font-size: 16px;
    line-height: 30px;
  }
  .about-page .about-3 .content ul li {
    width: 100%;
  }

  .about-page .about-3 .content ul li p {
    font-size: 16px;
    line-height: 30px;
  }

  .about-page .about-4 .box .title {
    margin-top: 10px;
  }

  .about-page .about-4 .box .con {
    margin-top: 10px;
  }

  .about-page .about-4 .box .info {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }

  .about-page .about-4 .box .info p {
    font-size: 14px;
    line-height: 2;
  }

  .about-page .about-4 .box .info .left {
    width: 100%;
  }

  .about-page .about-4 .box .info .right {
    width: 100%;
    margin-top: 20px;
  }

  .about-page .about-4 .box .more {
    margin-top: 20px;
  }

  .about-page .about-5 .header .left .title {
    margin-top: 10px;
  }
}


.development-page .development-1 {
  background: rgba(0, 0, 0, 0.4);
  padding: 110px 0 141px;
  color: white;
}

.development-page .development-1 .header .title {
  margin-top: 12px;
  line-height: 1.2;
}

.development-page .development-1 .header .con {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 29px;
}

.development-page .development-1 .time {
  margin-top: 113px;
}

.development-page .development-1 .time ul {
  padding: 0 0 0 60px;
  position: relative;
  z-index: 1;
}

.development-page .development-1 .time ul .slick-slide:nth-child(1) li {
  padding-left: 0;
}

.development-page .development-1 .time ul li {
  padding-left: 120px;
  cursor: pointer;
}

.development-page .development-1 .time ul li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 12px;
  position: relative;
  z-index: 2;
  margin-top: 5px;
}

.development-page .development-1 .time ul li i::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
}

.development-page .development-1 .time ul li i::after {
  content: '';
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  opacity: 0;
}

.development-page .development-1 .time ul li p {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 8px;
}

.development-page .development-1 .time ul li.active i {
  background: white;
}

.development-page .development-1 .time ul li.active i::before {
  background: rgba(0, 0, 0, 0.4);
}

.development-page .development-1 .time ul li.active i::after {
  opacity: 1;
}

.development-page .development-1 .time ul li.hide {
  opacity: 0;
  cursor: inherit;
}

.development-page .development-1 .time ul::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 17px;
  width: 100%;
  height: 1px;
  background: white;
}

.development-page .development-1 .content {
  margin-top: 99px;
}

.development-page .development-1 .content ul li {
  background: white;
  padding: 53px 94px 53px 37px;
}

.development-page .development-1 .content ul li .left {
  width: 12%;
  vertical-align: middle;
}

.development-page .development-1 .content ul li .left .title {
  color: #121212;
  font-size: 40px;
  font-family: var(--font);
}

.development-page .development-1 .content ul li .right {
  font-size: 20px;
  line-height: 1.5;
  color: #656565;
  vertical-align: middle;
  width: 88%;
  max-height: 120px;
  padding-right: 5px;
  overflow-y: auto;
}

.development-page .development-1 .content ul li .right::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
}

.development-page .development-2 {
  padding: 49px 0 167px;
}

.development-page .development-2 .box .text {
  padding: 9px 36px 0 0;
}

.development-page .development-2 .box .text span.tag {
  color: rgba(0, 0, 0, 0.4);
}

.development-page .development-2 .box .text .title {
  margin-top: 12px;
  color: #121212;
  line-height: 1.2;
}

.development-page .development-2 .box .text .con {
  font-size: 20px;
  color: #474747;
  line-height: 1.5;
  margin-top: 40px;
}

.development-page .development-2 .box .text .arrow {
  margin-top: 42px;
}

.development-page .development-2 .box .text .arrow .prev,
.development-page .development-2 .box .text .arrow .next {
  width: 59px;
  height: 59px;
  background-color: #f6f6f6;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

.development-page .development-2 .box .text .arrow .prev::after,
.development-page .development-2 .box .text .arrow .next::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 18px;
  width: 23px;
  height: 16px;
  background: url(../images/arrow.png) no-repeat;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.development-page .development-2 .box .text .arrow .prev:hover,
.development-page .development-2 .box .text .arrow .next:hover {
  background: rgba(0, 0, 0, 0.4);
}

.development-page .development-2 .box .text .arrow .prev:hover::after,
.development-page .development-2 .box .text .arrow .next:hover::after {
  -webkit-filter: none;
  filter: none;
}

.development-page .development-2 .box .text .arrow .prev::after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.development-page .development-2 .box .text .arrow .next {
  margin-left: 29px;
}

.development-page .development-2 .box .img {
  padding-left: 30px;
}

#index-body .partner {
  padding: 141px 0 202px;
}

#index-body .partner .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 64px;
  border-bottom: 1px solid #b8b8bc;
}

#index-body .partner .header .left {
  width: 55%;
  padding-right: 60px;
}

#index-body .partner .header .left .title {
  margin-top: 12px;
  line-height: 1.2;
  font-size: 40px;
}

#index-body .partner .header .right {
  width: 45%;
  font-size: 20px;
  line-height: 1.5;
  color: #474747;
}

#index-body .partner .content {
  margin-top: 55px;
}

#index-body .partner .content ul {
  margin: 0 -41px -58px 0;
}

#index-body .partner .content ul li {
  padding: 0 41px 59px 0;
}

.manufacturing-page .marginBox {
    padding: 0 !important
}

.manufacturing-page .marginTop .list ul li img {
    display: block;
    width: 100%
}

.manufacturing-page .marginTop .list ul .slick-dots {
    position: absolute;
    bottom: 5%;
    left: 0;
    text-align: center;
    width: 100%
}

.manufacturing-page .marginTop .list ul .slick-dots li {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    margin: 0 5px;
    background-color: rgba(255,255,255,.5);
    cursor: pointer;
    cursor: hand;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.manufacturing-page .marginTop .list ul .slick-dots li button {
    display: none
}

.manufacturing-page .marginTop .list ul .slick-dots li.slick-active {
    background-color: #fff
}

.manufacturing-page .manufacturing-1 {
    padding: 90px 0 80px
}

.manufacturing-page .manufacturing-1 .left {
    padding-right: 3%;
    vertical-align: bottom
}

.manufacturing-page .manufacturing-1 .left .text {
    font-size: 18px;
    color: #8e8e8e;
    line-height: 1.6;
    margin: 1em 0 2em
}

.manufacturing-page .manufacturing-1 .right {
    padding-left: 3%;
    vertical-align: bottom
}

.manufacturing-page .manufacturing-1 .right .list ul {
    margin: -40px -15px;
    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
}

.manufacturing-page .manufacturing-1 .right .list ul li {
    padding: 40px 15px;
    width: auto;
    min-width: 41%
}

.manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
    font-weight: 700;
    font-size: 60px;
    font-family: 'Antonio-Bold';
    color:  var(--color);
    display: block
}

.manufacturing-page .manufacturing-1 .right .list ul li span.h6 sub {
    font-size: .78333333em;
    font-weight: 400;
    vertical-align: baseline
}

.manufacturing-page .manufacturing-1 .right .list ul li span.h6 sup {
    font-size: .46666667em;
    vertical-align: middle
}

.manufacturing-page .manufacturing-1 .right .list ul li p {
    font-size: 20px;
    color: #242424
}

.manufacturing-page .manufacturing-2 {
    padding-bottom: 90px
}

.manufacturing-page .manufacturing-2 .list ul {
    margin: -23px
}

.manufacturing-page .manufacturing-2 .list ul li {
    padding: 23px
}

.manufacturing-page .manufacturing-2 .list ul li a {
    display: block
}

.manufacturing-page .manufacturing-2 .list ul li a img {
    display: block;
    width: 100%;
    border: 1px solid #dcdcdc;
}

.manufacturing-page .manufacturing-2 .list ul li a span {
    display: block;
    font-size: 20px;
    text-transform: capitalize;
    padding: .5em;
    text-align: center;
    background-color:  var(--color);
    color: #fff
}

.manufacturing-page .manufacturing-3 {
    padding: 95px 0 150px;
    background: url("/template/en/images/manufacturing-3-bg.jpg") center center no-repeat;
    background-size: cover
}

.manufacturing-page .manufacturing-3 .box {
    /*margin-left: 55%;*/
    color: #fff;
}

.manufacturing-page .manufacturing-3 .box .text {
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    width: 800px;
    padding-right: 1em;
    max-height: 11.2em;
    margin-top: 1.3em;
    overflow: auto
}

.manufacturing-page .manufacturing-4 {
    padding-top: 100px;
    text-align: center
}

.manufacturing-page .manufacturing-4 .list {
    margin-top: 50px;
    position: relative
}

.manufacturing-page .manufacturing-4 .list:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #d5d1d8;
    position: absolute;
    bottom: 5px;
    left: 0;
    z-index: -1
}

.manufacturing-page .manufacturing-4 .list ul {
    margin: 0 -8px
}

.manufacturing-page .manufacturing-4 .list ul li {
    padding: 0 8px
}

.manufacturing-page .manufacturing-4 .list ul li a.img-box {
    display: block;
    border: 1px solid #bfbfbf
}

.manufacturing-page .manufacturing-4 .list ul li span.h6 {
    font-size: 24px;
    color: #242424;
    padding: 1.2em 0 .8em;
    display: block;
    line-height: 1.2;
    position: relative
}

.manufacturing-page .manufacturing-4 .list ul li span.h6:after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #f9bc62;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.manufacturing-page .manufacturing-5 {
    padding: 120px 0 80px;
    text-align: center
}

.manufacturing-page .manufacturing-5 .list {
    margin-top: 50px
}

.manufacturing-page .manufacturing-5 .list ul {
    margin: -15px
}

.manufacturing-page .manufacturing-5 .list ul li {
    padding: 15px
}

.manufacturing-page .manufacturing-5 .list .slick-track {
    margin-left: 0
}

.manufacturing-page .manufacturing-6 {
    padding: 100px 0 75px;
    background: url("/template/en/images/manufacturing-6-bg.jpg") center center no-repeat;
    background-size: cover
}

.manufacturing-page .manufacturing-6 .left {
    vertical-align: bottom
}

.manufacturing-page .manufacturing-6 .left .img {
    margin-right: -7%;
    margin-left: -5%
}

.manufacturing-page .manufacturing-6 .right {
    vertical-align: bottom;
    padding-left: 4%;
    margin-bottom: 25px
}

.manufacturing-page .manufacturing-6 .right .slide {
    margin-top: 60px
}

.manufacturing-page .manufacturing-6 .right .slide:first-child {
    margin-top: 0
}

.manufacturing-page .manufacturing-6 .right span.h4 {
    font-weight: 700;
    font-size: 26px;
    color: #242424;
    line-height: 2;
    display: block;
    margin-bottom: 1.2em
}

.manufacturing-page .manufacturing-6 .right .color {
    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
}

.manufacturing-page .manufacturing-6 .right .color span {
    font-size: 20px;
    padding: .4em;
    border-radius: 2em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
    cursor: hand;
    margin-right: .5em
}

.manufacturing-page .manufacturing-6 .right .color span i {
    width: 2.2em;
    height: 2.2em;
    border-radius: 100%;
    margin-right: .5em;
    display: inline-block;
    vertical-align: middle
}

.manufacturing-page .manufacturing-6 .right .color span em {
    margin-right: 2em
}

.manufacturing-page .manufacturing-6 .right .color span:hover,.manufacturing-page .manufacturing-6 .right .color span.active {
    background: #fff
}

.manufacturing-page .manufacturing-6 .right .select {
    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
}

.manufacturing-page .manufacturing-6 .right .select span {
    font-size: 18px;
    color: #1b1b1b;
    text-align: center;
    line-height: 1.4;
    cursor: pointer;
    cursor: hand
}

.manufacturing-page .manufacturing-6 .right .select span i {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    background-size: auto 80%;
    display: block;
    background-position: center bottom;
    background-repeat: no-repeat;
    margin-bottom: .5em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.manufacturing-page .manufacturing-6 .right .select span.active i,.manufacturing-page .manufacturing-6 .right .select span:hover i {
    background-color: #fff
}

.manufacturing-page .manufacturing-6 .right a.more {
    margin-top: 2.5em
}

.manufacturing-page .manufacturing-7 {
    padding: 100px 0 0;
    text-align: center
}

.manufacturing-page .manufacturing-5 .text,.manufacturing-page .manufacturing-7 .text {
    max-width: 1200px;
    display: block;
    font-size: 18px;
    color: #626262;
    line-height: 1.6;
    margin: 1em auto 2em
}
@media screen and (max-width: 1600px) {
   .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
        font-size: 48px;
    }
    .manufacturing-page .manufacturing-1 .left .text,
    .manufacturing-page .manufacturing-3 .box .text,
    .manufacturing-page .manufacturing-7 .text,
    .manufacturing-page .manufacturing-5 .text {
        font-size: 18px;
    }
     .manufacturing-page .manufacturing-6 .right span.h4 {
        font-size: 22px
    }

    .manufacturing-page .manufacturing-6 .right .color span {
        font-size: 16px
    }

    .manufacturing-page .manufacturing-6 .right .color span i {
        width: 1.8em;
        height: 1.8em
    }

    .manufacturing-page .manufacturing-6 .right .select span {
        font-size: 18px
    }

    .manufacturing-page .manufacturing-6 .right .select span i {
        width: 90px;
        height: 90px
    }
    .manufacturing-page .manufacturing-1 .right .list ul li p {
        font-size: 20px
    }

    .manufacturing-page .manufacturing-2 .list ul li a span {
        font-size: 16px
    }

    .manufacturing-page .manufacturing-4 .list ul li span.h6 {
        font-size: 20px
    }

    .manufacturing-page .manufacturing-5 {
        padding: 80px 0
    }

    .manufacturing-page .manufacturing-5 .list {
        margin-top: 30px
    }

    .manufacturing-page .manufacturing-6 {
        padding: 50px 0
    }

    .manufacturing-page .manufacturing-7 {
        padding: 70px 0
    }

    .manufacturing-page .manufacturing-2 .list ul li {
        padding: 15px
    }

    .manufacturing-page .manufacturing-2 .list ul {
        margin: -15px
    }
}
@media screen and (max-width: 1450px) {
    .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
        font-size: 38px
    }
    .manufacturing-page .manufacturing-2 .list ul li {
        padding: 10px
    }

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

    .manufacturing-page .manufacturing-1 {
        padding: 50px 0
    }

    .manufacturing-page .manufacturing-1 .right .list ul li {
        padding: 20px 15px
    }

    .manufacturing-page .manufacturing-1 .right .list ul {
        margin: -20px -15px
    }

    .manufacturing-page .manufacturing-2 .list ul li a span {
        font-size: 14px
    }

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

    .manufacturing-page .manufacturing-4 {
        padding-top: 60px
    }

    .manufacturing-page .manufacturing-6 .right span.h4 {
        font-size: 18px
    }

    .manufacturing-page .manufacturing-6 .right .color span {
        font-size: 14px
    }

    .manufacturing-page .manufacturing-6 .right .select span {
        font-size: 16px
    }

    .manufacturing-page .manufacturing-6 .right .slide {
        margin-top: 30px
    }
}
@media screen and (max-width: 1280px) {
  .development-page .development-1 .time ul li {
    padding-left: 90px;
  }
  .manufacturing-page .manufacturing-1 .left .text,
  .manufacturing-page .manufacturing-3 .box .text,
  .manufacturing-page .manufacturing-7 .text,
  .manufacturing-page .manufacturing-5 .text {
    font-size: 14px;
  }

  .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
    font-size: 28px;
  }
}

@media screen and (max-width: 1100px) {
  .development-page .development-1 .time ul li {
    padding-left: 70px;
  }
}

@media screen and (max-width: 1000px) {
  .manufacturing-page .manufacturing-3 .box .text{
    width:100%; 
  }
  .development-page .development-1 {
    padding: 60px 0;
  }

  .development-page .development-1 .time {
    margin-top: 60px;
  }

  .development-page .development-1 .content {
    margin-top: 60px;
  }

  .development-page .development-1 .content ul li {
    padding: 53px 30px;
  }

  .development-page .development-1 .content ul li .left {
    width: 15%;
  }

  .development-page .development-1 .content ul li .right {
    width: 85%;
  }

  .development-page .development-2 {
    padding: 49px 0 60px;
  }

  .development-page .development-2 .box .text {
    vertical-align: middle;
    padding: 0 15px 0 0;
  }

  .development-page .development-2 .box .img {
    vertical-align: middle;
    padding-left: 15px;
  }
  .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
        font-size: 24px
  }
  .manufacturing-page .manufacturing-4 .list ul li span.h6 {
        font-size: 16px
    }

    .manufacturing-page .manufacturing-1 .right .list ul li p {
        font-size: 16px
    }

    .manufacturing-page .manufacturing-1 .left {
        width: 100%;
        padding-right: 0
    }

    .manufacturing-page .manufacturing-1 .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px
    }

    .manufacturing-page .marginTop .list ul .slick-dots li {
        width: 6px;
        height: 6px
    }

    .manufacturing-page .manufacturing-2 {
        padding-bottom: 60px
    }

    .manufacturing-page .manufacturing-1 .right .list ul li {
        padding: 5px
    }

    .manufacturing-page .manufacturing-1 .right .list ul {
        margin: -5px
    }

    .manufacturing-page .manufacturing-5 {
        padding: 40px 0
    }

    .manufacturing-page .manufacturing-5 .list ul li {
        padding: 5px
    }

    .manufacturing-page .manufacturing-5 .list ul {
        margin: -5px
    }

    .manufacturing-page .manufacturing-6 .right,#index-body .init-6 .top .right {
        width: 100%;
        padding-left: 0;
        margin-bottom: 0;
        margin-top: 30px
    }

    .manufacturing-page .manufacturing-6 .left {
        width: 100%
    }

    .manufacturing-page .manufacturing-6 .left .img {
        margin: 0
    }

    .manufacturing-page .manufacturing-6 .right .slide {
        margin-top: 15px
    }

    .manufacturing-page .manufacturing-6 .right span.h4 {
        font-size: 16px
    }

    .manufacturing-page .manufacturing-6 .right span.h4 {
        margin-bottom: .6em
    }

    .manufacturing-page .manufacturing-6 .right a.more {
        margin-top: 1.5em
    }
}

@media screen and (max-width: 700px) {
  .development-page .development-1 .time ul li {
    padding-left: 20px;
  }

  .development-page .development-1 {
    padding: 30px 0;
  }

  .development-page .development-1 .header .title {
    margin-top: 10px;
  }

  .development-page .development-1 .header .con {
    margin-top: 10px;
  }

  .development-page .development-1 .time {
    margin-top: 30px;
  }

  .development-page .development-1 .content {
    margin-top: 30px;
  }

  .development-page .development-1 .content ul li {
    padding: 30px 15px;
  }

  .development-page .development-1 .content ul li .left {
    width: 20%;
  }

  .development-page .development-1 .content ul li .right {
    width: 80%;
  }

  .development-page .development-2 {
    padding: 30px 0;
  }

  .development-page .development-2 .box .text {
    width: 100%;
    padding: 0;
  }

  .development-page .development-2 .box .img {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .manufacturing-page .manufacturing-3 .box {
    margin-left: 25%;
  }
}

@media screen and (max-width: 500px) {
  .development-page .development-1 .header .con {
    font-size: 15px;
    line-height: 1.9;
  }

  .development-page .development-1 .time ul li {
    padding-left: 0;
  }

  .development-page .development-1 .content ul li .left {
    width: 100%;
  }

  .development-page .development-1 .content ul li .right {
    width: 100%;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
  }

  .development-page #index-body .partner {
    display: block;
    padding: 30px 0 0;
  }

  .development-page #index-body .partner .header .title {
    margin-top: 10px;
  }

  .development-page #index-body .partner .header .right {
    font-size: 16px;
    line-height: 1.8;
  }

  .development-page .development-2 .box .text .title {
    margin-top: 10px;
  }

  .development-page .development-2 .box .text .con {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
  }

  .development-page .development-2 .box .text .arrow {
    margin-top: 15px;
  }
   .manufacturing-page .manufacturing-6 .right .select span {
        font-size: 14px
    }

    .manufacturing-page .manufacturing-6 .right .select span i {
        width: 60px;
        height: 60px
    }

    .manufacturing-page .manufacturing-6 .right .color span {
        font-size: 14px
    }

    .manufacturing-page .manufacturing-7 {
        padding: 40px 0
    }
}

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

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

.gallery-page ul li a {
  display: block;
  background: white;
}


.contact-page .contact-1{
  padding-top: 100px;
}
.contact-page .contact-1 .left form ul {
  margin: 0 -30px -48px 0;
}

.contact-page .contact-1 .left form ul li {
  padding: 0 30px 48px 0;
}

.contact-page .contact-1 .left form ul li .box {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d1d0c8;
}

.contact-page .contact-1 .left form ul li .box input,
.contact-page .contact-1 .left form ul li .box textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0 13px 36px;
  font-size: 16px;
  line-height: 20px;
  color: #7b7b7b;
}

.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-webkit-input-placeholder {
  color: #83827F;
}

.contact-page .contact-1 .left form ul li .box input:-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
  color: #83827F;
}

.contact-page .contact-1 .left form ul li .box input::-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
  color: #83827F;
}

.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
  color: #83827F;
}

.contact-page .contact-1 .left form ul li .box input::placeholder,
.contact-page .contact-1 .left form ul li .box textarea::placeholder {
  color: #83827F;
}

.contact-page .contact-1 .left form ul li .box i {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 20px;
}

.contact-page .contact-1 .left form ul li .box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.contact-page .contact-1 .left form ul li .more {
  padding: 0;
  vertical-align: middle;
  display: inline-block;
}

.contact-page .contact-1 .left form ul li .more i {
  margin-right: 6px;
  display: inline-block;
}

.contact-page .contact-1 .left form ul li .more input[type="submit"] {
  background: transparent;
  border: none;
  width: 100%;
  font-size: 16px;
  line-height: 50px;
  text-transform: uppercase;
}

.contact-page .contact-1 .left form ul li p {
  display: inline-block;
  vertical-align: middle;
  padding-left: 26px;
  font-size: 14px;
  line-height: 28px;
  color: #83827F;
}

.contact-page .contact-1 .left form ul li p span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}

.contact-page .contact-1 .left form ul li:hover .box::before,
.contact-page .contact-1 .left form ul li.active .box::before {
  width: 100%;
}

.contact-page .contact-1 .left form ul li.wid-100 {
  width: 100% !important;
}

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

.contact-page .contact-1 .right .title {
  line-height: 1.2;
}

.contact-page .contact-1 .right p {
  font-size: 16px;
  line-height: 30px;
  color: #83827F;
  margin-top: 10px;
}

.contact-page .contact-1 .right .list {
  margin-top: 22px;
}

.contact-page .contact-1 .right .list ul li {
  color: #83827F;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
}

.contact-page .contact-1 .right .list ul li i {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  width: 20px;
  text-align: center;
  margin-top: 5px;
}

.contact-page .contact-1 .right .list ul li span {
  display: inline-block;
  vertical-align: top;
  width: 90%;
  padding-left: 20px;
}

.contact-page .contact-1 .right .list ul li:last-child {
  margin-bottom: 0;
}

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

.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 20px 30px;
    background-color: #fff;
    border-radius: 30px
}

.contact-page .contact-2 .list ul li .box span.h6 {
        font-size: 24px;
    font-family: 'Antonio-Bold';
    font-weight: 500;
}

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

.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-weight: 700;
    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)
}

.contact-page .contact-3 {
  padding-top: 120px;
}


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

  .inner-page .sidebar-box .sidebar-left .inner .inner-contact {
    padding: 184px 20px 30px
  }
}

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

  .contact-page .contact-1 .right {
    width: 100%;
    padding: 30px 0 0 0;
  }

  .contact-page .contact-3 {
    padding-top: 60px;
  }

}

@media screen and (max-width: 700px) {
  .contact-page {
    padding-top: 30px;
  }

  .contact-page .contact-3 {
    padding-top: 30px;
  }
  .contact-page .contact-2 .content ul li {
      width:100%
  }
}

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

  .contact-page .contact-1 .left form ul li p {
    display: block;
    padding: 10px 0 0 0;
  }

  .contact-page .contact-1 .left form ul {
    margin-bottom: -20px;
  }

  .contact-page .contact-1 .left form ul li {
    padding-bottom: 20px;
  }

  .contact-page .contact-1 .left form ul li .box input,
  .contact-page .contact-1 .left form ul li .box textarea {
    padding: 10px 0 10px 36px;
  }

  .contact-page .contact-1 .right p {
    font-size: 16px;
    line-height: 30px;
  }

  .contact-page .contact-1 .right .list ul li {
    font-size: 16px;
  }

  .contact-page .contact-2 #mapContainer {
    height: 260px;
  }
}


.seoPublic .title {
  font-size: 48px;
  font-family: var(--font);
  line-height: 1.4;
  margin-bottom: 1em;
}

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

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

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

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

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

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

.seoPublic .Auxil-about .box .right div.h3 {
  font-size: 30px;
  font-family: var(--font);
  line-height: 1.2;
  margin-bottom: 1em;
}

.seoPublic .Auxil-about .box .right .text {
  font-size: 16px;
  line-height: 30px;
  color: #7b7b7b;
  max-height: 390px;
  overflow: auto;
}

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

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

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

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

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

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

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

.seoPublic .Auxil-news .list ul li .content {
  padding: 30px;
  background-color: #ffffff;
}

.seoPublic .Auxil-news .list ul li .content div.h6 {
  font-size: 22px;
  font-family: var(--font);
  line-height: 40px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  min-height: 5em;
}

.seoPublic .Auxil-news .list ul li .content div.h6:hover {
  color: rgba(0, 0, 0, 0.4);
}

.seoPublic .Auxil-news .list ul li .content time {
  font-size: 16px;
  line-height: 30px;
  margin-top: .5em;
  display: block;
  color: var(--color);
}

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

.seoPublic .Auxil-through a:hover {
  background: rgba(0, 0, 0, 0.4);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  #cp-Nav {
    display: block;
  }

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

  #cp-Nav .nav div.title {
    font-size: 18px;
    line-height: 32px;
    font-family: var(--font);
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    color: white;
  }

  #cp-Nav .nav div.title i {
    float: right;
    font-size: 30px;
    cursor: pointer;
  }

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

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

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

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

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

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

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

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

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

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

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

  .seoPublic .Auxil-about .box .right .text {
    max-height: 360px;
  }
}

.design-page .design-1 .ui.container {
  max-width: 100%;
  padding: 0 100px;
}

.design-page .design-2 {
  padding: 140px 0 110px;
}

.design-page .design-2 .i-title {
  line-height: 1.2;
  margin-bottom: 105px;
  margin-top: 10px;
}

.design-page .design-2 .left .img {
  text-align: right;
}

.design-page .design-2 .right {
  padding-left: 90px;
}

.design-page .design-2 .right .txt {
  font-size: 20px;
  line-height: 36px;
  color: #7b7b7b;
  margin-top: 70px;
}

.design-page .design-3 {
  padding-bottom: 120px;
}

.design-page .design-3 .i-title {
  margin-bottom: 48px;
}

.design-page .design-3 ul {
  margin: -40px;
}

.design-page .design-3 ul li {
  padding: 40px;
}

.design-page .design-3 ul .slick-list {
  padding: 0 28%;
}

.design-page .design-3 ul li .box {
  position: relative;
}

.design-page .design-3 ul li .box img {
  width: 100%;
}

.design-page .design-3 ul li .content {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background: white;
  position: absolute;
  left: 0;
  bottom: 18%;
  padding: 20px;
  opacity: 0;
}

.design-page .design-3 ul li .content h4 {
  font-family: var(--font);
  font-size: 30px;
  line-height: 1.2;
}

.design-page .design-3 ul li .content p {
  font-size: 18px;
  font-family: var(--font);
}

.design-page .design-3 ul li:hover .content {
  opacity: 1;
}

.design-page .design-3 ul .slick-dots {
  margin: 0;
  text-align: center;
}

.design-page .design-3 ul .slick-dots li {
  padding: 0;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #e5e5e5;
  display: inline-block;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}

.design-page .design-3 ul .slick-dots li button {
  display: none;
}

.design-page .design-3 ul .slick-dots li.slick-active {
  background: rgba(0, 0, 0, 0.4);
}

.design-page .design-4 {
  background: url(../images/design-4-bg.jpg) no-repeat;
  color: white;
  padding: 107px 0 70px;
  background-attachment: fixed;
}

.design-page .design-4 .left {
  position: sticky;
  top: 170px;
}

.design-page .design-4 .left .i-title {
  line-height: 1.2;
}

.design-page .design-4 .right {
  padding-left: 90px;
}

.design-page .design-4 .right ul li {
  padding-left: 140px;
  position: relative;
  padding-bottom: 100px;
}

.design-page .design-4 .right ul li .icon {
  width: 77px;
  height: 77px;
  border-radius: 100%;
  background: white;
  text-align: center;
  line-height: 77px;
  position: absolute;
  left: 0;
  top: 0;
}

.design-page .design-4 .right ul li .icon img {
  vertical-align: middle;
}

.design-page .design-4 .right ul li .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 130%;
  width: 1px;
  height: 262%;
  background: rgba(255, 255, 255, 0.3);
}

.design-page .design-4 .right ul li:last-child .icon::after {
  content: none;
}

.design-page .design-4 .right ul li h4 {
  font-size: 30px;
  font-family: var(--font);
}

.design-page .design-4 .right ul li .des {
  font-size: 18px;
  line-height: 32px;
  margin-top: 14px;
}

.design-page .design-5 .ui.container {
  max-width: 100%;
  padding-left: 13%;
  padding-right: 0;
}

.design-page .design-5 {
  padding: 130px 0 110px;
}

.design-page .design-5 .i-title {
  line-height: 1.2;
}

.design-page .design-5 .wrap {
  padding-left: 15%;
  margin-top: 70px;
}

.design-page .design-5 .wrap .left {
  width: 35.3%;
}

.design-page .design-5 .wrap .left .txt {
  font-size: 20px;
  line-height: 36px;
  color: #7b7b7b;
  margin-bottom: 45px;
}

.design-page .design-5 .wrap .left img {
  width: 100%;
}

.design-page .design-5 .wrap .right {
  width: 64.7%;
  padding-left: 115px;
}

@media screen and (max-width:1600px) {
  .design-page .design-5 .ui.container {
    padding-left: 7%;
  }

  .design-page .design-5 .wrap {
    padding-left: 10%;
  }

  .font-68 {
    font-size: 52px;
  }
}

@media screen and (max-width:1450px) {
  .design-page .design-4 .right {
    padding-left: 30px;
  }

  .design-page .design-5 .wrap {
    padding-left: 0;
  }

  .font-48 {
    font-size: 36px;
  }

  .font-68 {
    font-size: 40px;
  }
}

@media screen and (max-width:1200px) {
  .design-page .design-2 .right {
    padding-left: 50px;
  }

  .design-page .design-3 ul li {
    padding: 20px;
  }

  .design-page .design-3 ul {
    margin: -20px;
  }

  .design-page .design-3 ul li .content h4 {
    font-size: 21px;
  }

  .design-page .design-4 .right ul li {
    padding-left: 105px;
    padding-bottom: 40px;
  }

  .design-page .design-4 .right ul li .icon:after {
    height: 225%;
  }

  .design-page .design-5 .wrap .right {
    padding-left: 50px;
  }

  .font-48 {
    font-size: 30px;
  }
}

@media screen and (max-width:1000px) {
  .i-tag {
    font-size: 18px;
  }

  .about-page .about-1 .top .text .title {
    font-size: 22px;
    line-height: 40px !important;

  }

  .font-48 {
    font-size: 26px;
  }

  .font-68 {
    font-size: 30px;
  }

  .inner-banner {
    padding: 40px 0;
    margin-top: 120px;
  }

  .design-page .design-1 .ui.container {
    padding: 0 20px;
  }

  .design-page .design-2 {
    padding: 60px 0 65px;
  }

  .design-page .design-3 ul .slick-list {
    padding: 0 18%;
  }

  .design-page .design-4 .left {
    position: relative;
    top: 0;
  }

  .design-page .design-4 .right {
    width: 100%;
    margin-top: 20px;
  }

  .design-page .design-5 {
    padding: 55px 0 50px;
  }

  .design-page .design-5 .wrap .left {
    width: 100%;
  }

  .design-page .design-5 .wrap .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }

  .design-page .design-5 .ui.container {
    padding: 0 15px;
  }
}

@media screen and (max-width:700px) {
  .inner-banner h2 {
    font-size: 26px;
  }

  .design-page .design-2 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 25px;
  }

  .design-page .design-2 .left {
    width: 100%;
  }

  .design-page .design-2 .i-title {
    margin-bottom: 30px;
  }

  .design-page .design-3 ul .slick-list {
    padding: 0;
  }

  .design-page .design-3 {
    padding: 0 15px 50px;
  }

  .design-page .design-4 .right {
    padding-left: 0;
  }
}

@media screen and (max-width:500px) {
  .design-page .design-4 .right ul li {
    padding-left: 0;
  }

  .design-page .design-4 .right ul li .icon {
    position: relative;
    margin-bottom: 12px;
  }

  .design-page .design-4 .right ul li .icon::after {
    content: none;
  }

  .font-68 {
    font-size: 22px;
    line-height: 40px !important;
  }
}

.qrcode {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  position: fixed;
  right: 30px;
  bottom: 120px;
  cursor: pointer;
}

.qrcode #ewm {
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%) scaleY(0);
  -moz-transform: translateY(-50%) scaleY(0);
  -ms-transform: translateY(-50%) scaleY(0);
  transform: translateY(-50%) scaleY(0);
  width: 100px;
  height: 100px;
  border: 5px solid white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.qrcode:hover #ewm {
  -webkit-transform: translateY(-50%) scaleY(1);
  -moz-transform: translateY(-50%) scaleY(1);
  -ms-transform: translateY(-50%) scaleY(1);
  transform: translateY(-50%) scaleY(1);
}

.prodet-page .prodet-1 .prodet-box .right .share {
  margin-top: 20px;
  display: block;
}

.prodet-page .prodet-1 .prodet-box .right .share h4 {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #000;
}

.prodet-page .prodet-1 .prodet-box .right .share ul {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.prodet-page .prodet-1 .prodet-box .right .share ul li {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  padding: 0;
  margin: 0;
  margin-left: 1.5rem;
  color: #000;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .prodet-box .right .share ul li:hover{
  color: var(--color);
}
.prodet-page .prodet-1 .prodet-box .right .text {
  padding: 0;
  margin-top: 20px;
}

.prodet-page .prodet-1 .prodet-box .right .text tr td:first-child {
  width: 175px !important;

}

.prodet-page .prodet-1 .prodet-box .right h4 {
  font-size: 20px;
  line-height: 2;
  color: #000;
  /*margin-top: 20px;*/
  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;
  /*font-family: 'Montserrat';*/
}

.prodet-page .prodet-1 .prodet-box .right h3 {
  font-size: 26px;
  padding-top: 65px;
  line-height: 1.6;
  color: #000000;
  font-family: var(--font);
  /*font-family: 'Montserrat';*/
  text-transform: capitalize;
}

.mask .prodet-page {
  padding: 20px 40px 20px 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
  background: #ffffff;
}

.mask {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 40px;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 111;
  display: none
}

.mask.active {
  display: block !important
}

.mask .mask-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

}

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

/*.mask .container {
    width: 1100px
  }*/

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

.mask .mask-inner .item {
  width: fit-content;
}

.product2-page .product-list .mask .list .img img {
  border: none
}

.mask .mask-inner .item.active {
  display: block;
}
.mask .img{
  min-height: 695px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mask .pro-gallery{
  margin: 30px 0;
}
.mask .pro-gallery .acc{
  margin: 0 -10px;
}
.mask .pro-gallery .acc .add{
  padding: 0 10px;
}
.mask .pro-gallery .acc .add a{
  border: 1px solid rgba(0, 0, 0, 0.2);
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width:1100px) {
  .mask .mask-close {
    right: 3%;
    top: 3%
  }

  .mask .mask-inner .item {
    width: 100%
  }

  .mask .prodet-page {
    padding: 0
  }

  .mask .prodet-page .prodet-1 .prodet-box {
    height: 80vh;
    padding: 30px 0;
    overflow: auto
  }

  .prodet-page .prodet-1 .prodet-box .right .share ul li {
    width: auto !important
  }

  .prodet-page .prodet-1 .prodet-box .right .share {
    display: none
  }
}

@media screen and (max-width:700px) {
  .mask .prodet-page .prodet-1 .prodet-box .column {
    width: 100%
  }
}