@font-face {
  font-family: 'Montserrat-ExtraBold';
  src: url(../fonts/Montserrat-ExtraBold.ttf) format('truetype'), url(../fonts/Montserrat-ExtraBold.eot) format('eot'), url(../fonts/Montserrat-ExtraBold.woff) format('woff'), url(../fonts/Montserrat-ExtraBold.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat-Medium';
  src: url(../fonts/Montserrat-Medium.ttf) format('truetype'), url(../fonts/Montserrat-Medium.eot) format('eot'), url(../fonts/Montserrat-Medium.woff) format('woff'), url(../fonts/Montserrat-Medium.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat-Light';
  src: url(../fonts/Montserrat-Light.ttf) format('truetype'), url(../fonts/Montserrat-Light.eot) format('eot'), url(../fonts/Montserrat-Light.woff) format('woff'), url(../fonts/Montserrat-Light.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url(../fonts/Montserrat-SemiBold.ttf) format('truetype'), url(../fonts/Montserrat-SemiBold.eot) format('eot'), url(../fonts/Montserrat-SemiBold.woff) format('woff'), url(../fonts/Montserrat-SemiBold.woff2) format('woff2');
}
@font-face {
  font-family: 'DelonRegular';
  src: url(../fonts/DelonRegular.ttf) format('truetype'), url(../fonts/DelonRegular.eot) format('eot'), url(../fonts/DelonRegular.woff) format('woff'), url(../fonts/DelonRegular.woff2) format('woff2');
}
@font-face {
  font-family: 'Mayonice';
  src: url(../fonts/Mayonice.ttf) format('truetype'), url(../fonts/Mayonice.eot) format('eot'), url(../fonts/Mayonice.woff) format('woff'), url(../fonts/Mayonice.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: #d4ab57;
  font-family: 'Montserrat-Medium';
  --font: 'DelonRegular';
  background-color: white;
  color: #333333;
  max-width: 1920px;
}
.font-bold {
    font-family: 'DelonRegular';
    font-weight: 500;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1740px;
  margin: 0 auto;
  position: relative;
}

.i-tag {
    font-size: 18px;
    display: inline-block;
    position: relative
}

.i-tag:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background:#000;
}

.i-title {
    line-height: 1.3;
    
    display: block;
    font-family: var(--font);
}

#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: transparent;
}
#header.active {
  background-color: rgba(0, 0, 0, .6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
#header.active .nav {
  height: 60px;
}
#header.active .nav-t {
    height: 0;
    overflow: hidden;
}
#header .nav-t {
  height: 100px;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
   border-bottom: 1px solid white;
}
#header .nav-t .logo {
  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%);
}
#header .nav-t .h-search{
  position: relative;
}
#header .nav-t .h-search input[type="text"]{
  width: 250px;
  height: 45px;
  background-color: transparent;
  border: 1px solid white;
  padding: 0 45px 0 15px;
  color:white;
  font-size: 18px;
}
#header .nav-t .h-search input::-webkit-input-placeholder {
  color: white;
}
#header .nav-t .h-search input[type="submit"]{
  width: 24px;
  height: 24px;
  background: url("../images/search.png")no-repeat;
  position: absolute;
  right:15px;
  top:50%;
  transform: translateY(-50%);
  border: none;
}
#header .nav-t .btn i {
  font-size: 24px;
}
#header .nav-t .btn span {
  font-size: 20px;
  font-family: 'Montserrat-Medium';
  text-transform: uppercase;
  margin-left: 10px;
}
#header .nav-t .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-t .right .h-search,
#header .nav-t .right .h-inquiry {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
#header .nav-t .right .h-search:hover,
#header .nav-t .right .h-inquiry:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
#header .nav {
  position: relative;
  height: 120px;
  -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: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  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;
  width: 100%;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  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;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  border-bottom: 1px solid transparent;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  border-color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  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: 100%;
  left: -10px;
  width: auto;
  min-width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu li:last-child {
  margin-right: 0;
}
.language-box {
  margin-right: 45px;
}
.language-box:hover .zhuyu > img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.language-box .zhuyu img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.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;
}
#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%;
  bottom: 65px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: white;
}
#banner .banner-content ul li .content h2 {
  font-size: 100px;
  line-height: 1;
  font-family: 'DelonRegular';
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#banner .banner-content ul li .content h2 em {
  font-size: 110px;
  font-family: 'Mayonice';
  margin-left: 60px;
  text-transform: capitalize;
  background: -webkit-linear-gradient(45deg, #efe496, #d4ab57, #efe496, #d5ae5a);
  background: -moz-linear-gradient(45deg, #efe496, #d4ab57, #efe496, #d5ae5a);
  background: linear-gradient(45deg, #efe496, #d4ab57, #efe496, #d5ae5a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 30px;
}
#banner .banner-content ul li .content .box {
  width: 100%;
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.more.black {
  border-color: #333;
}
.more.black span {
  color: #333;
}
.more.black::before {
  background: #333;
}
.more.black:hover span {
  color: white;
}
.more {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: transparent;
  border: 1px solid white;
}
.more:hover::before {
  right: 0;
}
.more:hover span {
  color: #000;
}
.more::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 0;
  -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;
  text-transform: uppercase;
  font-family: 'DelonRegular';
}
.tit-font {
  font-family: 'Montserrat-ExtraBold';
}
.h-title h3 {
  font-size: 72px;
  font-family: var(--font);
  position: relative;
  color: #333333;
  text-transform: uppercase;
  line-height: 0.8;
}
.white {
  color: white;
}


#index-body .category {
  padding: 110px 0;
  background-color: #f4f4f4;
}
#index-body .category .category-content .left {
  padding-top: 10%;
  padding-left: 110px;
  padding-right: 4%;
  width: 31.5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .category .category-content .left .box .h-title h3 {
  line-height: 1;
}
#index-body .category .category-content .left .box .category-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 85px 0 0;
}
#index-body .category .category-content .left .box .category-btn span {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 55px;
  height: 30px;
  cursor: pointer;
}
#index-body .category .category-content .left .box .category-btn span:nth-child(2) {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.6);
  margin: 0 15px;
}
#index-body .category .category-content .left .box .category-btn span:hover i:first-child {
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
#index-body .category .category-content .left .box .category-btn span:hover i:last-child {
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
}
#index-body .category .category-content .left .box .category-btn span.prev i:first-child {
  left: 100%;
  right: unset;
}
#index-body .category .category-content .left .box .category-btn span.prev:hover i:first-child {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index-body .category .category-content .left .box .category-btn span.prev:hover i:last-child {
  -webkit-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
}
#index-body .category .category-content .left .box .category-btn span i:first-child {
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#index-body .category .category-content .left .box .category-btn span i {
  font-size: 40px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#index-body .category .category-content .right {
  width: 68.5%;
  overflow: hidden;
}
#index-body .category .category-content .right .swiper-container {
  width: 1850px;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide.swiper-slide-active {
  padding-top: 0;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide.swiper-slide-active .box {
  padding-bottom: 70px;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide.swiper-slide-active .box .text {
  bottom: 0;
  padding-left: 0;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide.swiper-slide-active .box .text h4 {
  color: black;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide.swiper-slide-active .box .text i {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide {
  padding-top: 70px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide .box {
  position: relative;
  padding-bottom: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide .box .img {
  width: 100%;
  height: 100%;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide .box .text {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding-left: 40px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide .box::before{
  content:"";
  display: block;
  width:100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
  position: absolute;
  left: 0;
  bottom:0;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide-active .box::before{
  background: transparent;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide .box .text h4 {
  font-size: 48px;
  color: white;
  font-family: var(--font);
  line-height: 0.8;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .category-content .right .swiper-container ul li.swiper-slide .box .text i {
  font-size: 40px;
  color: #000;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .bottom {
  margin-top: 50px;
}
#index-body .category .bottom .swiper-pagination {
  width: 100%;
  display: flex;
}
#index-body .category .bottom .swiper-pagination span {
  width: 25%;
  height: 1px;
  background: rgba(0, 0, 0, 0.6);
  margin: 0 !important;
}
#index-body .category .bottom .swiper-pagination span.swiper-pagination-bullet-active {
  background: -webkit-linear-gradient(45deg, #efe496, #d4ab57, #efe496, #d5ae5a) !important;
  background: -moz-linear-gradient(45deg, #efe496, #d4ab57, #efe496, #d5ae5a) !important;
  background: linear-gradient(45deg, #efe496, #d4ab57, #efe496, #d5ae5a) !important;
  height: 2px;
}






#index-body .product {
  padding: 110px 0 145px;
}
#index-body .product .product-box {
  margin-left: auto;
  overflow: hidden;
}
#index-body .product .product-box ul {
  margin: 75px -33% 0 -40px;
}
#index-body .product .product-box ul .slick-slide li .box::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
#index-body .product .product-box ul .slick-slide:nth-child(odd) li .box .text {
  bottom: -webkit-calc(100% - 134px);
  bottom: -moz-calc(100% - 134px);
  bottom: calc(100% - 134px);
}
#index-body .product .product-box ul li {
  padding: 0 40px;
}
#index-body .product .product-box ul li .box {
  width: 100%;
  position: relative;
}
#index-body .product .product-box ul li .box .img{
  width: 100%;
  height: 100%;
}
#index-body .product .product-box ul li .box .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#index-body .product .product-box ul li .box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 10;
}
#index-body .product .product-box ul li .box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 134px;
  z-index: 12;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 30px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  background-color: #f1f1f1;
}
#index-body .product .product-box ul li .box .text:hover {
  background-color: transparent;
}
#index-body .product .product-box ul li .box .text:hover h4 {
  color: #fff;
}
#index-body .product .product-box ul li .box .text:hover .btn{
  border-color: white;
}
#index-body .product .product-box ul li .box .text:hover .btn i {
  color: #fff;
}
#index-body .product .product-box ul li .box .text h4 {
  font-size: 28px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  font-family: var(--font);
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .product .product-box ul li .box .text .btn {
  width: 115px;
  height: 45px;
  background-color: transparent;
  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;
  border: 1px solid #fff;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  position: relative;
  overflow: hidden;
  border-color: transparent;
}
#index-body .product .product-box ul li .box .text .btn:hover i:first-child {
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
}
#index-body .product .product-box ul li .box .text .btn:hover i:last-child {
  right: 50%;
}
#index-body .product .product-box ul li .box .text .btn i {
  font-size: 40px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  color: #333;
}
#index-body .product .product-box ul li .box .text .btn i:first-child {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#index-body .product .product-box ul li .box .text .btn i:last-child {
  position: absolute;
  right: 150%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
#index-body .about {
  padding: 140px 0;
  background: url('../images/about-bg.jpg') no-repeat;
  background-size: cover;
}
#index-body .about .ui.container {
  padding: 0 170px;
}
#index-body .about .ui.container .left{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#index-body .about .ui.container .left h2 {
  font-family: var(--font);
  color: white;
  font-size: 88px;
  line-height: 1;
}
#index-body .about .ui.container .left ul {
  max-width: 355px;
  margin-top: 120px;
}
#index-body .about .ui.container .left ul li {
  color: white;
  padding-bottom: 10px;
  border-bottom: 1px solid white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
   transition: all 0.5s;
}
#index-body .about .ui.container .left ul li:last-child {
  margin-bottom: 0;
}
#index-body .about .ui.container .left ul li h4 {
  font-size: 60px;
  font-family: var(--font);
  line-height: 0.8;
   transition: all 0.5s;
}

#index-body .about .ui.container .left ul li p {
  font-size: 18px;
  max-width: 130px;
  text-align: right;
  font-family: 'Montserrat-Light';
  line-height: 1.2;
  transition: all 0.5s;
}
#index-body .about .ui.container .left ul li:hover{
  border-color: var(--color);
}
#index-body .about .ui.container .left ul li:hover h4{
  color: var(--color);
}
#index-body .about .ui.container .left ul li:hover p{
  color: var(--color);
}
#index-body .about .ui.container .right {
  max-width: 710px;
  padding-top: 10px;
}
#index-body .about .ui.container .right .con {
  font-family: 'Montserrat-Light';
  line-height: 1.6;
}
#index-body .about .ui.container .right h3 {
  font-size: 66px;
  font-family: 'Mayonice';
  text-align: right;
  background: linear-gradient(45deg, #efe496, #d4ab57, #efe496, #d5ae5a);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
#index-body .about .ui.container .right .more {
  margin-top: 65px;
}
#index-body .manufacturing {
  padding: 155px 0 0;
  background-color: #f4f4f4;
}
#index-body .manufacturing .manufacturing-box {
  margin-top: 60px;
  height: 750px;
}
#index-body .manufacturing .manufacturing-box .right {
  width: -webkit-calc(100% - 400px);
  width: -moz-calc(100% - 400px);
  width: calc(100% - 400px);
}
#index-body .manufacturing .manufacturing-box .right ul li {
  height: 758px;
}
#index-body .manufacturing .manufacturing-box .right ul li .img {
  width: 100%;
  height: 100%;
}
#index-body .manufacturing .manufacturing-box .right ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .manufacturing .manufacturing-box .left {
  padding: 65px 65px;
  width: 400px;
  background-color: white;
}
#index-body .manufacturing .manufacturing-box .left ul {
  margin: -50px 0;
}
#index-body .manufacturing .manufacturing-box .left ul .slick-active li .box .num::after{
  opacity: 1;
}
#index-body .manufacturing .manufacturing-box .left ul .slick-active:last-child li .box .num::after{
  opacity: 0;
}
#index-body .manufacturing .manufacturing-box .left ul .slick-active:last-child li .box .num::before{
  opacity: 0;
}
@keyframes lineHeight{
  0%{
    height: 0;
  }
  100%{
    height: 100px;
  }
}
#index-body .manufacturing .manufacturing-box .left ul .slick-current li .box .num::before{
  animation: lineHeight 5s forwards linear;
}
#index-body .manufacturing .manufacturing-box .left ul .slick-current li .box .num {
  background-color: #333333;
  color: #ffffff;
}
#index-body .manufacturing .manufacturing-box .left ul li {
  padding: 50px 0;
  cursor: pointer;
}
#index-body .manufacturing .manufacturing-box .left ul li .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
}
#index-body .manufacturing .manufacturing-box .left ul li .box .num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.6);
  background-color: #f4f4f4;
  font-size: 30px;
  color: #333;
  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;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#index-body .manufacturing .manufacturing-box .left ul li .box .num::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100px;
  background: #bebebe;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#index-body .manufacturing .manufacturing-box .left ul li .box .num::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  background: #000;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#index-body .manufacturing .manufacturing-box .left ul li .box h4 {
  font-size: 18px;
  width: -webkit-calc(100% - 80px);
  width: -moz-calc(100% - 80px);
  width: calc(100% - 80px);
  padding-left: 25px;
  line-height: 1.4;
}
#index-body .case {
  padding: 110px 0 80px;
}
#index-body .case .case-box {
  margin-top: 75px;
  position: relative;
}
#index-body .case .case-box .bot {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 1000px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  padding-bottom: 20px;
}
#index-body .case .case-box .bot h4 {
  font-size: 36px;
  font-family: var(--font);
}
#index-body .case .case-box .bot .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#index-body .case .case-box .bot .btn .line {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.6);
  margin: 0 35px;
}
#index-body .case .case-box .bot .btn span {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
#index-body .case .case-box .bot .btn span:hover i:first-child {
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
}
#index-body .case .case-box .bot .btn span:hover i:last-child {
  right: 0;
}
#index-body .case .case-box .bot .btn span i {
  font-size: 30px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  display: block;
}
#index-body .case .case-box .bot .btn span i:first-child {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#index-body .case .case-box .bot .btn span i:last-child {
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#index-body .case .case-box .bot .btn span.prev i:last-child {
  left: 100%;
  right: unset;
}
#index-body .case .case-box .bot .btn span.prev:hover i:first-child {
  -webkit-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
}
#index-body .case .case-box .bot .btn span.prev:hover i:last-child {
  left: 0;
}
#index-body .case .case-box ul li {
  width: 1000px;
  transition: all 0.5s;
}
#index-body .news {
  padding: 75px 0 110px;
}
#index-body .news .bottom {
  height: 450px;
  margin-top: 110px;
  width: 100%;
}
#index-body .news .bottom ul li .box {
  width: 100%;
  height: 225px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
#index-body .news .bottom ul li .box:hover .btn {
  border-color: rgba(0, 0, 0, 0.6);
}
#index-body .news .bottom ul li .box:hover .date {
  opacity: 1;
}
#index-body .news .bottom ul li .box:hover h4 {
  opacity: 1;
}
#index-body .news .bottom ul li .box .date {
  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;
  opacity: 0.4;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .news .bottom ul li .box .date span:first-child {
  width: 140px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: #999;
  background-color: #dddddd;
  text-transform: uppercase;
}
#index-body .news .bottom ul li .box .date span:last-child {
  font-size: 18px;
  color: #999;
  margin-left: 15px;
}
#index-body .news .bottom ul li .box h4 {
  font-size: 30px;
  font-family: var(--font);
  opacity: 0.4;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  max-width: 580px;
}
#index-body .news .bottom ul li .box .btn {
  width: 115px;
  height: 45px;
  border: 1px solid transparent;
  position: relative;
  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;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .news .bottom ul li .box .btn:hover i:first-child {
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
}
#index-body .news .bottom ul li .box .btn:hover i:last-child {
  right: 50%;
}
#index-body .news .bottom ul li .box .btn i {
  font-size: 30px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  display: block;
}
#index-body .news .bottom ul li .box .btn i:first-child {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#index-body .news .bottom ul li .box .btn i:last-child {
  position: absolute;
  right: 150%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
#index-body .i-advantage {
  padding: 175px 0;
  background-color: #f4f4f4;
}
#index-body .i-advantage .h-title {
position: -webkit-sticky;
    position: sticky;
    top: 50vh;
}
#index-body .i-advantage .h-title h3 {
  font-size: 130px;
}
#index-body .i-advantage .h-title h1 {
  position: absolute;
  top: 110%;
  left: 52.5%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 130px;
  font-family: 'Mayonice';
  white-space: nowrap;
  text-transform: capitalize;
  background: -webkit-linear-gradient(45deg, #efe496, #d4ab57, #efe496, #d5ae5a);
  background: -moz-linear-gradient(45deg, #efe496, #d4ab57, #efe496, #d5ae5a);
  background: linear-gradient(45deg, #efe496, #d4ab57, #efe496, #d5ae5a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
#index-body .i-advantage .content {
  margin-top: 100px;
}
#index-body .i-advantage .content ul li {
  height: 45vh;
  position: relative;
  z-index: 10;
}
#index-body .i-advantage .content ul li .ig {
  max-width: 420px;
  background: rgba(255,255,255,.7);
  padding: 39px 45px 37px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  min-height: 540px;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#index-body .i-advantage .content ul li .ig .tit {
  font-size: 40px;
  line-height: 1.4;
  font-family: var(--font);
  word-break: break-all;
}
#index-body .i-advantage .content ul li .ig .text p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.4);
}
#index-body .i-advantage .content ul li:nth-child(1),
#index-body .i-advantage .content ul li:nth-child(4) {
  width: 100%;
}
#index-body .i-advantage .content ul li:nth-child(1) .ig,
#index-body .i-advantage .content ul li:nth-child(4) .ig {
  margin: 0 auto;
}
#index-body .i-advantage .content ul li:nth-child(3n) {
  margin-top: 125px;
}
#index-body .i-advantage .content ul li.active .ig {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#footer {
  position: relative;
  background: #ebebeb;
  padding: 75px 0 0;
}
#footer .footer-t a.f-logo {
  margin: 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#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;
  padding: 110px 0 85px;
}
#footer .footer-t .footer-t-gird .t-list.form {
  max-width: 555px;
}
#footer .footer-t .footer-t-gird .t-list.form h3 {
  font-size: 36px;
  font-family: var(--font);
  margin-bottom: 40px;
  line-height: 1;
}
#footer .footer-t .footer-t-gird .t-list.form form input[type="text"] {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #333;
  padding: 0 0 15px;
  color: black;
  font-size: 18px;
  margin-bottom: 35px;
}
#footer .footer-t .footer-t-gird .t-list.form form input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
#footer .footer-t .footer-t-gird .t-list.form form input[type='submit'] {
  width: 100%;
  height: 55px;
  background-color: #333333;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-family: var(--font);
}
#footer .footer-t .footer-t-gird .t-list.form form input[type='submit']:hover {
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}
#footer .footer-t .footer-t-gird .t-list.contact {
  max-width: 300px;
}
#footer .footer-t .footer-t-gird .t-list.contact #ewm img,
#footer .footer-t .footer-t-gird .t-list.contact #ewm canvas{
  width: 120px;
  height: auto;
  border: 5px solid white;
}
#footer .footer-t .footer-t-gird .t-list.contact span {
  margin-bottom: 25px;
  line-height: 1.4;
}
#footer .footer-t .footer-t-gird .t-list.link span {
  border-bottom: 1px solid transparent;
  margin-bottom: 15px;
}
#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 {
  border-color: #333;
  color: #333;
}
#footer .footer-t .footer-t-gird .t-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -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: 130px;
  height: auto;
  border: 8px solid #fff;
}
#footer .footer-t .footer-t-gird .t-list h4 {
  font-size: 24px;
  margin-bottom: 55px;
}
#footer .footer-t .footer-t-gird .t-list span {
  font-size: 18px;
  color: #999;
  line-height: 1;
  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;
}
#footer .footer-t .footer-t-gird .t-list span:hover{
  color: #000;
}
#footer .footer-b {
  background-color: #bebebe;
}
#footer .footer-b .footer-b-box {
  height: 50px;
}
#footer .footer-b .footer-b-box .left span {
  font-size: 18px;
  color: #d6d6d6;
}
#footer .footer-b .footer-b-box .left span:first-child a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-b .footer-b-box .left span:first-child a:hover {
  opacity: 0.6;
}
#footer .footer-b .footer-b-box .left img {
  width: 320px;
  height: auto;
  padding-top: 3px;
  margin-left: 5px;
  opacity: 0.4;
}
#footer .footer-b .footer-b-box .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#footer .footer-b .footer-b-box .share a {
  margin-right: 25px;
}
#footer .footer-b .footer-b-box .share a:hover i {
  color: white;
}
#footer .footer-b .footer-b-box .share a i {
  color: #d6d6d6;
  font-size: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#footer .footer-b .footer-b-box .share a:last-child {
  margin-right: 0;
}
@media (max-width: 1750px) {
  .ui.container {
    width: 1600px;
  }
  #banner .banner-content ul li .content h2 em {
    font-size: 80px;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 75px;
  }
  #index-body .about .ui.container .left h2 {
    font-size: 60px;
  }
  #index-body .category .category-content .right .swiper-container {
    width: 1550px;
  }
  .h-title h3 {
    font-size: 64px;
  }
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  #index-body .category .box ul li a {
    width: 30%;
  }
  #index-body .category .box ul li a h3 {
    font-size: 60px;
  }
  #index-body .product .product-box ul li .box .text h4 {
    font-size: 26px;
  }
  #index-body .about .ui.container {
    padding: 0 15px;
  }
  #footer .footer-t .footer-t-gird .t-list.form {
    max-width: 35%;
  }
  #index-body .i-advantage .content ul li .ig .tit {
    font-size: 30px;
    padding-right: 0;
  }
  #index-body .i-advantage .content ul li .ig {
    max-width: 320px;
    min-height: unset;
  }
  #index-body .category .category-content .right .swiper-container {
    width: 1350px;
  }
  
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #index-body .category .box ul li a h3 {
    font-size: 46px;
  }
  #index-body .category .box ul li .img {
    width: 40%;
  }
  .h-title h3 {
    font-size: 50px;
  }
  #index-body .product .product-box ul {
    margin: 75px -15px 0;
  }
  #index-body .product .product-box ul li {
    padding: 0 15px;
  }
  #index-body .product .product-box {
    margin: 0 auto;
    width: 1200px;
    padding: 0 15px;
  }
  #index-body .i-advantage .h-title h3 {
    font-size: 80px;
  }
  #index-body .i-advantage {
    padding: 85px 0 135px;
  }
  #index-body .case .case-box ul li,
  #index-body .case .case-box .bot {
    width: 800px;
  }
  #footer .footer-t .footer-t-gird .t-list.form h3 {
    font-size: 26px;
    line-height: 1.6;
  }
  #footer .footer-t .footer-t-gird .t-list.form {
    max-width: 27%;
  }
  #banner .banner-content ul li .content h2 em {
    font-size: 70px;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 54px;
  }
  #index-body .category .category-content .right .swiper-container {
    width: 1150px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #banner .banner-content ul li .content h2 em {
    font-size: 54px;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  #index-body .product .product-box ul li .box .text h4 {
    font-size: 22px;
  }
  #index-body .product {
    padding: 80px 0;
  }
  #index-body .about .ui.container .right {
    max-width: 60%;
    padding-top: 10px;
  }
  #index-body .about .ui.container .right .more {
    margin-top: 25px;
  }
  #index-body .i-advantage .h-title h1 {
    font-size: 75px;
  }
  #index-body .case .case-box ul li,
  #index-body .case .case-box .bot {
    width: 600px;
  }
  #index-body .news .bottom ul li .box a.title {
    width: 40%;
  }
  #index-body .news .bottom ul li .box a.title h4 {
    font-size: 24px;
  }
  #footer .footer-t .footer-t-gird .t-list.link {
    display: none;
  }
  #footer .footer-t .footer-t-gird .t-list.contact {
    max-width: 48%;
  }
  #footer .footer-t .footer-t-gird .t-list.form {
    max-width: 48%;
  }
  #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 .left {
    text-align: center;
  }
  #footer .footer-b .footer-b-box .left span {
    text-align: center;
  }
  #index-body .category .category-content .right .swiper-container ul li.swiper-slide .box .text h4 {
    font-size: 30px;
  }
  #index-body .category .category-content .right .swiper-container {
    width: 950px;
  }
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block !important;
  }
  .ui.container {
    width: 700px;
  }
  #index-body .product .product-box ul li .box .text h4{
    -webkit-line-clamp: 1;
  }
  #index-body .i-advantage .content ul li .ig .text p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
  }
  #index-body .i-advantage .content ul li .ig .tit {
    font-size: 24px;
  }
  #index-body .i-advantage .content ul li .ig {
    max-width: 320px;
    min-height: 360px;
  }
  #index-body .category .box ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .category .box ul li .page {
    width: 100%;
    margin-bottom: 20px;
  }
  .h-title h3 {
    font-size: 36px;
  }
  #index-body .about .ui.container .left {
    width: 100%;
  }
  #index-body .about .ui.container .left ul {
    max-width: 100%;
  }
  #index-body .about .ui.container .right {
    max-width: 100%;
    padding-top: 0;
    margin-top: 60px;
  }
  #index-body .manufacturing .manufacturing-box .left {
    width: 100%;
  }
  #index-body .manufacturing .manufacturing-box .right {
    width: 100%;
  }
  #index-body .manufacturing .manufacturing-box {
    height: auto;
  }
  #index-body .manufacturing .manufacturing-box .right ul li {
    height: auto;
  }
  #index-body .i-advantage .content ul {
    margin: 0 -10px;
  }
  #index-body .i-advantage .content ul li {
    padding: 0 10px;
  }
  #index-body .news .bottom ul {
    margin: 0 -10px;
  }
  #index-body .news .bottom ul li {
    padding: 0 10px;
  }
  #index-body .news .bottom ul li .box {
    -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;
    height: auto;
    padding: 0;
    border-bottom: none;
  }
  #index-body .news .bottom ul li .box a.title {
    width: 100%;
    margin: 15px 0;
  }
  #index-body .news .bottom {
    height: auto;
    margin-top: 50px;
  }
  #index-body .news {
    padding: 75px 0 80px;
  }
  #banner .banner-content ul li .content .box a.more {
    display: none;
  }
  #banner .banner-content ul li .content h2,
  #banner .banner-content ul li .content h2 em {
    font-size: 36px;
  }
  #index-body .product .product-box {
    width: 100% !important;
  }
  #index-body .product .product-box ul li .box .text {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #index-body .product .product-box ul li .box .text .btn {
    margin-top: 15px;
  }
  #index-body .category .category-content .left{
    width:100%; 
  }
  #index-body .category .category-content{
    padding: 0 15px;
  }
  #index-body .category .category-content .right{
    width: 100%;
    margin-top: 60px;
  }
  #index-body .category .category-content .right .swiper-container {
    width: 100%;
  }
  #index-body .category .category-content .left .box .category-btn{
    display: none;
  }
   #index-body .category .category-content .left .box p{
     margin: 25px 0;
   }
   #index-body .category .category-content .left{
     padding: 0 15px !important;
   }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  #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: 60px;
  }
  #footer .footer-t .footer-t-gird .t-list.form {
    max-width: 100%;
  }
  #index-body .case,
  #index-body .i-advantage,
  #index-body .manufacturing {
    display: none;
  }
  #index-body .about .ui.container .left h2 {
    font-size: 40px;
  }
  #index-body .about .ui.container .left h2 br {
    display: none;
  }
  #index-body .product a.more {
    margin-top: 25px;
  }
  #index-body .category .box ul li a h3 {
    font-size: 30px;
  }
  #banner .banner-content ul li .content {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  #banner .banner-content ul li .content h2,
  #banner .banner-content ul li .content h2 em {
    font-size: 30px;
    margin-left: 15px;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #banner .banner-content ul li .content h2,
  #banner .banner-content ul li .content h2 em {
    font-size: 24px;
  }
  #index-body .about {
    padding: 80px 0;
  }
  #index-body .about .ui.container .left ul {
    max-width: 355px;
    margin-top: 30px;
  }
  #index-body .about .ui.container .left h2 {
    font-size: 30px;
  }
  .h-title h3 {
    font-size: 30px;
  }
  #index-body .news .top .more {
    margin-top: 30px;
  }
}





.inner-banner {
  height: 550px;
  background-size: cover;
  background-position: center center;
  /*padding-top: 170px;
  padding-bottom: 280px; */
  position: relative;
}
.inner-banner::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
}
.inner-banner .ui.container{
  position: absolute;
  left: 50%;
  bottom: 7%;
   -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
}
.inner-banner .box .left {
  vertical-align: bottom;
  padding-right: 10%;
}
.inner-banner .box .left span.h2 {
  color: #ffffff;
}
.inner-banner .box .right {
  vertical-align: bottom;
}
.inner-banner .box .right .mbx {
  text-align: right;
  font-size: 20px;
  color: white;
  /*margin-bottom: 1.5em;*/
  line-height: 1.6;
}
.inner-page span.txt { 
  margin-bottom: .5em;
}
.inner-page .marginBox {
  background: white;
  position: relative;
  z-index: 1;
  width: 100%;
}
.inner-page.newdet-page .marginBox,
.inner-page.news-page .marginBox{
  margin-top: -330px;
}
.inner-page .marginBox:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: -1;
  background: inherit;
}
.inner-page .marginTop {
  width: 118%;
}
.inner-page .m-page {
  margin-top: 50px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.inner-page .m-page a,
.inner-page .m-page span,
.inner-page .m-page .next,
.inner-page .m-page .prev {
  margin: 0 15px;
  font-size: 20px;
  color: #242424;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page .next,
.inner-page .m-page .prev {
  font-size: 35px;
  color: #666;
}
.inner-page .m-page > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  border-bottom-color: #242424;
}
.inner-page .m-page .prev img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.inner-page .m-page .next,
.inner-page .m-page .prev {
  border-color: #ccc;
  cursor: pointer;
  cursor: hand;
}
.inner-page .m-page .next img,
.inner-page .m-page .prev img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page .next:hover,
.inner-page .m-page .prev:hover {
   border-color:#000;
}
.inner-page .m-page .next:hover img,
.inner-page .m-page .prev:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.inner-page #productList 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;*/
  /*border-left: 1px solid #bfbfbf;*/
  margin: -15px;
}
/*.inner-page #productList ul {
  border-bottom: 1px solid #bfbfbf;
}*/
.inner-page #productList ul li {
  text-align: center;
  
  overflow: hidden;
  
  position: relative;
    
  padding: 15px;
  
}
.inner-page #productList ul li .box{
  border: 1px solid #ccc;
  overflow: hidden;
}
 
.inner-page #productList ul.relatedlist li{
 
  border: none;
}
.inner-page #productList ul.relatedlist li .box1{
  border: 1px solid #ccc;
  margin-right: -2px;
}
/*.inner-page #productList ul.relatedlist li .box1:hover{
  border-color: #f9bc62;
  z-index: 5;
  position: relative;
}*/
/*.inner-page #productList ul li:nth-child(4n-3){
  border-left: 1px solid #bfbfbf;
}*/
/*.inner-page #productList ul.slick-slider {
  border-bottom: none;
}
.inner-page #productList ul.slick-slider li {
  border-bottom: 1px solid #bfbfbf;
}*/
.inner-page #productList ul li:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #f9bc62;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 0;
  display: none;
}
.inner-page #productList ul li a.img-box {
  display: block;
  /*padding: 50px 5% 0;*/
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}
.inner-page #productList ul li a.img-box img {
  width: auto;
  margin: 0 auto;
  display: block;
   background: #ececec;
}
.inner-page #productList ul li a.img-box:hover img{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.inner-page #productList ul li .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.inner-page #productList ul li .btn 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  margin: 0 5px;
  border: 1px solid #ccc;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page #productList ul li .btn a img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page #productList ul li .btn a:hover {
  border-color: var(--color);
  background-color: var(--color);
}
.inner-page #productList ul li .btn a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.inner-page #productList ul li span.h6 {
  font-family:var(--font);
  font-size: 22px;
  color: #332f2c;
  line-height: 2;
  margin: 1.5em 0 0;
  display: block;
  padding: 0 1em;
  position: relative;
  z-index: 2;
}
.inner-page #productList ul.slick-slider li span.h6 {
  height: 4.2em;
  overflow: hidden;
}
.inner-page #productList ul li a.link {
  font-size: 18px;
  color: white;
  height: 2.44444444em;
  text-align: center;
  background-color: #c1c1c1;
  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;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(110%);
  -moz-transform: translateY(110%);
  -ms-transform: translateY(110%);
  transform: translateY(110%);
  width: 100%;
  z-index: 2;
}
.inner-page #productList ul li a.link em {
  position: relative;
  display: inline-block; 
  line-height: 1;
}
 
.inner-page #productList ul li a.link:hover {
  background-color: var(--color);
}
.inner-page #productList ul li:hover {
  z-index: 1;
  /*border-color: #f9bc62;*/
}
.inner-page #productList ul li:hover:after {
  opacity: 1;
}
.inner-page #productList ul li:hover a.link {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.inner-page #productList ul li .line i{
  position: absolute;
      -webkit-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
    background: var(--color);
    z-index: 4;
}
.inner-page #productList ul li .line i:nth-child(1){
      left: 0;
    top: 0;
    width: 1px;
    height: 0;
}
.inner-page #productList ul li .line i:nth-child(2){
  left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
}
.inner-page #productList ul li .line i:nth-child(3){
      right: 0;
    bottom: 0;
    width: 1px;
    height: 0;
    -webkit-transition-delay: .4s;
    -moz-transition-delay: .4s;
    transition-delay: .4s;
}
.inner-page #productList ul li .line i:nth-child(4){
      right: 0;
    top: 0;
    width: 0;
    height: 1px;
    -webkit-transition-delay: .6s;
    -moz-transition-delay: .6s;
    transition-delay: .6s;
}
.inner-page #productList ul li:hover .line i:nth-child(1) {
    height: 100%;
}
.inner-page #productList ul li:hover .line i:nth-child(2) {
    width: 100%;
}
.inner-page #productList ul li:hover .line i:nth-child(3) {
    height: 100%;
}
.inner-page #productList ul li:hover .line i:nth-child(4) {
    width: 100%;
}
.inner-page .sideBarBox .sideBarLeft {
  width: 70%;
  padding-right: 3%;
}
.inner-page .sideBarBox .sideBarRight {
  width: 30%;
  padding: 25px;
  background: #eee;
}
.inner-page .sideBarBox .sideBarRight span.h5 {
  font-size: 20px;
  font-family:var(--font);
  color: #242424;
  line-height: 1.2;
  margin-bottom: .8em;
  display: block;
  margin-top: 2em;
}
.inner-page .sideBarBox .sideBarRight span.h5:first-child {
  margin-top: 0;
}
.inner-page .sideBarBox .sideBarRight form.search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 50px;
  height: 50px;
  border: 1px solid #bfbfbf;
  background-color: white;
  font-size: 18px;
  color: #8e8e8e;
  padding: 0 .7em;
}
.inner-page .sideBarBox .sideBarRight form.search input {
  border: none;
  background-color: transparent;
  width: 100%;
}
.inner-page .sideBarBox .sideBarRight form.search input[type="submit"] {
  width: 30px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("../images/icon-search3.png") center center no-repeat;
}
.inner-page .sideBarBox .sideBarRight .nav ul li {
  font-size: 18px;
  line-height: 1.2;
  color: #8e8e8e;
  padding: .5em 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarRight .nav ul li:before {
  content: '';
  border: 3px solid #f9bc62;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: .5em;
  border-radius: 100%;
}
.inner-page .sideBarBox .sideBarRight .nav ul li:hover {
  color: #f9bc62;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #bfbfbf;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li a.img-box {
  width: 34%;
  margin-right: 15px;
  height: 80px;
  background-size: cover;
  background-position: center center;
  flex-shrink: 0;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li .content time {
  display: block;
  font-size: 16px;
  color: #8e8e8e;
  line-height: 2;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li .content span.h6 {
  font-size: 18px;
  color: #242424;
  line-height: 2;
  margin-top: .3em;
  display: block;
}
.inner-page .sideBarBox .sideBarRight .imgBox {
  margin-top: 30px;
  height: 460px;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.inner-page .sideBarBox .sideBarRight .imgBox .text {
  font-size: 16px;
  color: white;
  line-height: 2;
  padding: 2em;
}
.inner-page .form ul {
  margin: -15px -7px;
}
.inner-page .form ul li {
  padding: 15px 7px;
}
.inner-page .form ul li input,
.inner-page .form ul li textarea {
  display: block;
  width: 100%;
  font-size: 18px;
  border-radius: 3px;
  padding: .6em 1em;
  border: 1px solid #ccc;
}
.inner-page .form ul li input::-webkit-input-placeholder, .inner-page .form ul li textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
.inner-page .form ul li input:-moz-placeholder, .inner-page .form ul li textarea:-moz-placeholder {
  color: #8e8e8e;
}
.inner-page .form ul li input::-moz-placeholder, .inner-page .form ul li textarea::-moz-placeholder {
  color: #8e8e8e;
}
.inner-page .form ul li input:-ms-input-placeholder, .inner-page .form ul li textarea:-ms-input-placeholder {
  color: #8e8e8e;
}
.inner-page .form ul li input::placeholder,
.inner-page .form ul li textarea::placeholder {
  color: #8e8e8e;
}
.inner-page .form ul li textarea {
  height: 150px;
}
.inner-page .form ul li input[type="submit"] {
  border: none;
  background: #c1c1c1;
  color: white;
  /*font-family:var(--font);*/
  font-size: 18px;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .form ul li input[type="submit"]:hover {
  background: var(--color);
}
.inner-page .form ul li.wid-100 {
  width: 100%;
}
.seoBox span.txt {
  letter-spacing: .2em;
  margin-bottom: .5em;
}
.seoBox span.h3 {
  font-family:var(--font);
  font-size: 50px;
  color: #242424;
  line-height: 1.8;
}
.seoBox .seoAbout .left {
  width: 45%;
  padding-right: 3%;
}
.seoBox .seoAbout .right {
  width: 55%;
}
.seoBox .seoAbout .right .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
}
.seoBox .seoHonor {
  padding: 65px 0 100px;
}
.seoBox .seoHonor .list ul {
  margin: -15px;
}
.seoBox .seoHonor .list ul li {
  padding: 15px;
}
.seoBox .seoHonor .list ul li a {
  display: block;
  position: relative;
}
.seoBox .seoHonor .list ul li a img {
  display: block;
  width: 100%;
}
.seoBox .seoHonor .list ul li a span {
  height: 40px;
  width: 40px;
  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%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f9bc62;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seoBox .seoHonor .list ul li a span img {
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.seoBox .seoHonor .list ul li a:hover span {
  opacity: 1;
}
.seoBox .seoNews {
  padding-bottom: 80px;
}
.seoBox .seoNews .top {
  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;
}
.seoBox .seoNews .top .btn {
  margin-right: -12px;
}
.seoBox .seoNews .top .btn div {
  display: inline-block;
  vertical-align: middle;
  line-height: 48px;
  height: 48px;
  padding: 0 24px;
  border-radius: 24px;
  border: 1px solid #bfbfbf;
  margin-right: 12px;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seoBox .seoNews .top .btn div img {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seoBox .seoNews .top .btn div.next img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.seoBox .seoNews .top .btn div:hover {
  background: #f9bc62;
  border-color: #f9bc62;
}
.seoBox .seoNews .top .btn div:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.seoBox .seoNews .bottom {
  margin-top: 50px;
}
.seoBox .seoNews .bottom .list ul {
  margin: -18px;
}
.seoBox .seoNews .bottom .list ul li {
  padding: 18px;
}
.seoBox .seoNews .bottom .list ul li .box {
  padding: 22px;
  border: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seoBox .seoNews .bottom .list ul li .box a.img-box {
  display: block;
}
.seoBox .seoNews .bottom .list ul li .box a.img-box span {
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  background-color: #f9bc62;
  line-height: 2em;
  height: 2em;
  padding: 0 1.2em;
  border-radius: 1em;
  display: inline-block;
  position: absolute;
  right: 1em;
  top: 1em;
}
.seoBox .seoNews .bottom .list ul li .box time {
  font-size: 16px;
  display: block;
  color: #8e8e8e;
  line-height: 2;
  margin: 1.3em 0;
}
.seoBox .seoNews .bottom .list ul li .box span.h6 {
  font-family:var(--font);
  font-size: 24px;
  color: #242424;
  line-height: 2;
  margin-bottom: 1em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  width:400px;
  display:inline-block;
  max-width: 100%;
}
.seoBox .seoNews .bottom .list ul li .box span.h6:hover {
  color: #f9bc62;
}
.seoBox .seoNews .bottom .list ul li .box a.link {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  border-bottom: 1px solid #f9bc62;
  color: #f9bc62;
  position: relative;
}
.seoBox .seoNews .bottom .list ul li .box a.link:after {
  content: '';
  border: 4px solid #f9bc62;
  border-radius: 100%;
  position: absolute;
  top: -2px;
  left: 105%;
}
.seoBox .seoNews .bottom .list ul li .box:hover {
  border-color: #f9bc62;
}
.product-cat-page {
  padding-bottom: 95px;
}
.product-cat-page .marginBox {
  display: inline-block;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}
.product-cat-page .slide {
  margin-top: 90px;
}
.product-cat-page .slide .left {
  vertical-align: middle;
  padding-right: 3%;
  position: relative;
}
.product-cat-page .slide .left span.tag {
  line-height: 1;
  display: block;
}
.product-cat-page .slide .left span.h2 {
  margin-top: -2.2em;
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 1em;
}
.product-cat-page .slide .left .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
  padding-right: 1em;
  max-height: 320px;
  overflow: auto;
  margin: 1em 0 3em;
}
.product-cat-page .slide .left a.more {
  background: #242424;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-cat-page .slide .left a.more:hover {
  background: #f9bc62;
}
.product-cat-page .slide .right {
  vertical-align: middle;
  padding-left: 3%;
  position: relative;
}
.product-cat-page .slide .right a.img {
  display: block;
  height: 800px;
  background-size: cover;
  background-position: center center;
}
.product-cat-page .slide:nth-child(even) .left {
  padding-right: 0;
  padding-left: 3%;
  left: 50%;
}
.product-cat-page .slide:nth-child(even) .right {
  left: -50%;
  padding-left: 0;
  padding-right: 3%;
}


.proNav {
    padding: 100px 0;
     background-color: #f4f4f4;
}
.proNav .proNav_box{
  padding: 0 100px;
}
.proNav .slick-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color);
    background-color: var(--color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
    transition: .5s;
    border-radius: 50px;
    z-index: 10;
}
.proNav .slick-arrow::before{
  content:"";
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
  font-family: 'FontAwesome';
  font-size: 20px;
  color: white;
}
.proNav .slick-arrow:hover {
    opacity: 1
}

.proNav .slick-arrow.slick-prev {
    left: 15px;
}
.proNav .slick-arrow.slick-prev::before {
  content:"\f104";
}
.proNav .slick-arrow.slick-next::before {
  content:"\f105";
}
.proNav .slick-arrow.slick-next {
    right: 15px;
}

.proNav ul {
    margin: -10px;
    position: unset;
}

.proNav ul li {
    padding: 10px;
}

.proNav ul li a.img-box {
    display: block;
}
.proNav ul li a.img-box img{
  width:100%;
  max-height: 375px;
  object-fit: contain;
}
.proNav ul li span.h6 {
    display: block;
    font-size: 18px;
    margin-top: .5em
}
@media (max-width: 1000px){
  .proNav .proNav_box{
    padding: 0 15px;
  }
}
.product-page .marginBox {
  padding: 0 !important;
}
.product-page .marginTop {
  padding: 30px 7% 20px 3.5%;
  background: #e8e3e0;
}
.product-page .marginTop .left {
  width: 45%;
  vertical-align: middle;
}
.product-page .marginTop .left .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
}
.product-page .marginTop .right {
  width: 55%;
  vertical-align: middle;
  padding-left: 2%;
}
.product-page .product-1 {
  padding: 100px 0 100px;
}
.prodet-page .marginBox {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 0 !important;
}
.prodet-page .prodet-1 {
  padding-top: 90px;
}
.prodet-page .prodet-1 .left {
  width: 60%;
  vertical-align: middle;
}
.prodet-page .prodet-1 .left .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.prodet-page .prodet-1 .left img {
  border: 1px solid #ccc;
  width: 100%;
}
.prodet-page .prodet-1 .left .smallImg {
  padding-right: 24px;
  width: 20.5%;
}
.prodet-page .prodet-1 .left .smallImg ul {
  margin: -12px;
}
.prodet-page .prodet-1 .left .smallImg ul li {
  padding: 12px;
}
.prodet-page .prodet-1 .left .smallImg ul .slick-current li img {
  border-color: var(--color);
}
.prodet-page .prodet-1 .left .bigImg {
  width: 79.5%;
}
.prodet-page .prodet-1 .left .bigImg .img {
  position: relative;
  display: block;
  padding: 1px;
}
.prodet-page .prodet-1 .left .bigImg .img span {
  width: 40px;
  height: 40px;
  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;
  position: absolute;
  top: 12px;
  right: 12px;
}
.prodet-page .prodet-1 .left .bigImg .img span img {
  border: none;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: auto;
}
.prodet-page .prodet-1 .right {
  width: 40%;
  padding-left: 2%;
  vertical-align: middle;
}
.prodet-page .prodet-1 .right h1 {
  display: block;
  font-size: 30px;
  line-height: 2;
  font-family:var(--font);
}
.prodet-page .prodet-1 .right .text {
  font-size: 20px;
  color: #626262;
  padding-right: 1em;
  line-height: 1.6;
  margin: 1.5em 0;
  overflow: auto;
  /*max-height: 8.4em;*/
}
.prodet-page .prodet-1 .right .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #bfbfbf;
}
.prodet-page .prodet-1 .right .share span.h6 {
  font-size: 20px;
}
.prodet-page .prodet-1 .right .share a {
  font-size: 18px;
  margin-left: 1.5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .right .share a:hover {
  color: #f9bc62;
}
.prodet-page .prodet-1 .right a.more {
  margin-top: 1em;
}
.prodet-page .prodet-2 {
  padding: 80px 0 120px;
}
.prodet-page .prodet-2 .options {
  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;
  border-bottom: 1px solid #c3c3c3;
}
.prodet-page .prodet-2 .options span {
  font-size: 22px;
  font-family:var(--font);
  width: 360px;
  margin-right: 1em;
  height: 2.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 .75em;
  border: 1px solid #ccc;
  cursor: pointer;
  cursor: hand;
  background: #eee;
  margin-bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .options span i {
  color: #bfbfbf;
}
.prodet-page .prodet-2 .options span.active {
  background-color: white;
  border-bottom-color: transparent;
}
.prodet-page .prodet-2 .ret {
  margin-top: 60px;
  font-size: 20px;
  color: #242424;
  line-height: 1.6;
}
.prodet-page .prodet-2 .ret table tbody {
  table-layout: fixed;
}
.prodet-page .prodet-2 .ret table tr:first-child {
  background-color: #242424;
  color: white;
}
.prodet-page .prodet-2 .ret table tr td {
  border: 1px solid white;
  text-align: center;
  padding: .5em;
}
.prodet-page .prodet-3 {
  text-align: center;
  padding-bottom: 120px;
}
.prodet-page .prodet-3 span.txt {
  margin-bottom: .3em;
}
.prodet-page .prodet-3 .list {
  margin: 45px 0;
  /*border-right: 1px solid #bfbfbf;*/
}
.prodet-page .prodet-3 .dots {
  text-align: center;
}
.prodet-page .prodet-3 .dots ul {
  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;
}
.prodet-page .prodet-3 .dots ul li {
  margin: 0 7px;
}
.prodet-page .prodet-3 .dots ul li button {
  font-size: 20px;
  color: #242424;
  width: 36px;
  height: 36px;
  border: none;
  border-bottom: 1px solid transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background-color: transparent;
}
.prodet-page .prodet-3 .dots ul li.slick-active button {
  border-color: #242424;
}
.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, 0.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: white;
}
.manufacturing-page .manufacturing-1 {
  padding: 90px 0 70px;
}
.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-family:var(--font);
  font-size: 60px;
  color: var(--color);
  display: block;
}
.manufacturing-page .manufacturing-1 .right .list ul li span.h6 sub {
  font-size: 0.78333333em;
  font-weight: normal;
  vertical-align: baseline;
}
.manufacturing-page .manufacturing-1 .right .list ul li span.h6 sup {
  font-size: 0.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%;
}
.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: white;
}
.manufacturing-page .manufacturing-3 {
  padding: 95px 0 105px;
  background: url("../images/manufacturing-3-bg.jpg") center center no-repeat;
  background-size: cover;
}
.manufacturing-page .manufacturing-3 .box {
  margin-left: 55%;
}
.manufacturing-page .manufacturing-3 .box .text {
    font-size: 18px;
    color: #626262;
    line-height: 1.8;
  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("../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-family:var(--font);
  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: white;
}
.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: white;
}
.manufacturing-page .manufacturing-6 .right a.more {
  margin-top: 2.5em;
}
.manufacturing-page .manufacturing-7 {
  padding: 100px 0 0px;
  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;
}
.advantage-page .marginBox {
  padding: 0 !important;
}
.advantage-page .advantage-1 {
  padding-top: 90px;
}
.advantage-page .advantage-1 .left {
  width: 45%;
  padding-right: 5%;
}
.advantage-page .advantage-1 .left span.h1 {
  font-family:var(--font);
  font-size: 217px;
  color: #f9bc62;
  line-height: 1;
  display: block;
  margin-left: -0.08em;
}
.advantage-page .advantage-1 .left span.h5 {
  font-size: 30px;
  font-family:var(--font);
  color: #242424;
  line-height: 2;
  max-width: 390px;
  display: block;
}
.advantage-page .advantage-1 .right {
  width: 55%;
}
.advantage-page .advantage-1 .right .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
  margin-bottom: 2.5em;
}
.advantage-page .advantage-1 .right a.more {
  background-color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.advantage-page .advantage-1 .right a.more:hover {
  background-color: #f9bc62;
}
.advantage-page .advantage-2 {
  padding: 115px 0 100px;
}
.advantage-page .advantage-2 .list ul {
  margin: 0 -20px;
}
.advantage-page .advantage-2 .list ul li {
  padding: 0 20px;
}
.advantage-page .advantage-2 .list ul li img {
  display: block;
  margin: 0 auto;
}
.advantage-page .advantage-3 .left {
  vertical-align: middle;
  width: 45%;
  padding-right: 5%;
}
.advantage-page .advantage-3 .left .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
  margin-top: 1.6em;
}
.advantage-page .advantage-3 .right {
  width: 55%;
  vertical-align: middle;
}
.advantage-page .advantage-3 .right .img {
  height: 470px;
  background-size: cover;
  background-position: center center;
  display: block;
}
.advantage-page .advantage-4 {
  padding-top: 130px;
  text-align: center;
}
.advantage-page .advantage-4 .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
  max-width: 1060px;
  margin: 1em auto 2.2em;
}
.advantage-page .advantage-4 .list ul {
  margin: -8px;
}
.advantage-page .advantage-4 .list ul li {
  padding: 8px;
}
.advantage-page .advantage-4 .list ul li img {
  display: block;
  width: 100%;
}
.advantage-page .advantage-5 {
  padding: 85px 0 100px;
}
.advantage-page .advantage-5 .list ul {
  margin: 0 -20px;
}
.advantage-page .advantage-5 .list ul li {
  padding: 0 20px;
}
.advantage-page .advantage-5 .list ul li img {
  display: block;
  margin: 0 auto;
}
.advantage-page .advantage-6 {
  padding-bottom: 80px;
  text-align: center;
}
.advantage-page .advantage-6 .list {
  margin: 60px 0 30px;
}
.advantage-page .advantage-6 .list ul li {
  padding: 30px 0;
  border-top: 1px solid #bfbfbf;
  width: 100% !important;
}
.advantage-page .advantage-6 .list ul li .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}
.advantage-page .advantage-6 .list ul li .box .left {
  width: 25%;
  padding-right: 3%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.advantage-page .advantage-6 .list ul li .box .left .img {
  width: 105px;
  height: 105px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-size: cover;
  background-position: center center;
  margin-right: 25px;
}
.advantage-page .advantage-6 .list ul li .box .left .content span.h6 {
  font-family:var(--font);
  font-size: 18px;
  color: #242424;
  display: block;
  line-height: 1.2;
}
.advantage-page .advantage-6 .list ul li .box .left .content span.em {
  font-size: 20px;
  color: #f9bc62;
  margin-top: .3em;
  display: block;
  line-height: 1.2;
}
.advantage-page .advantage-6 .list ul li .box .right {
  width: 75%;
}
.advantage-page .advantage-6 .list ul li .box .right .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
}
.advantage-page .advantage-6 .dots {
  text-align: center;
}
.advantage-page .advantage-6 .dots ul {
  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;
}
.advantage-page .advantage-6 .dots ul li {
  margin: 0 7px;
}
.advantage-page .advantage-6 .dots ul li button {
  font-size: 20px;
  color: #242424;
  width: 36px;
  height: 36px;
  border: none;
  border-bottom: 1px solid transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background-color: transparent;
}
.advantage-page .advantage-6 .dots ul li.slick-active button {
  border-color: #242424;
}

.about-his .ui.container span.gd {
    color: #000;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top: 120px;
    width: 25%;
    text-align: right;
    display: block;
    font-family: var(--font);
    line-height: 1
}

.about-his .ui.container span.gd.active {
    position: absolute;
    top: 20px;
    left: 0
}

.about-his .ui.container .yearbox {
    width: 75%;
    margin-left: auto;
    margin-right: 0
}

.about-his .ui.container .yearbox ul {
    width: 100%
}

.about-his .ui.container .yearbox ul li {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.about-his .ui.container .yearbox ul li.active h4 {
    color: #000;
}

.about-his .ui.container .yearbox ul li h4 {
    color: #a9a9a9;
    font-family: 'DelonRegular';
    line-height: 1;
}

.about-his .ui.container .yearbox ul li .textbox {
    max-width: 480px;
    padding:0;
}

.about-his .ui.container .yearbox ul li .textbox span {
    color: #a9a9a9
}

.about-his .ui.container .yearbox ul li .textbox h5 {
    margin-top: 20px
}
.font-260 {
    font-size: 260px
}
@media screen and (max-width: 1800px) {
  .font-260 {
        font-size:190px;
        line-height: 210px!important
    }
}
@media screen and (max-width: 1400px) {
  
    .font-260 {
        font-size: 150px;
        line-height: 165px!important
    }
}
@media screen and (max-width: 1200px) {
   .font-260 {
        font-size: 110px;
        line-height: 120px!important
    }
}
@media screen and (max-width: 1000px) {
  
}
@media screen and (max-width: 700px) {
    .about-his .ui.container span.gd {
        display:none
    }

    .about-his .ui.container .yearbox ul li h4 {
        display: none
    }

    .about-his .ui.container .yearbox {
        width: 100%
    }

    .about-his .ui.container .yearbox ul li .textbox {
        padding: 20px 0
    }
}
.about-page .marginBox {
  padding: 0 !important;
}
.about-page .marginBox .marginTop {
  position: relative;
}
.about-page .marginBox .marginTop > img{
  width: 100%;
}
.about-page .marginBox .marginTop .play {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: 1;
  border: 1px solid white;
  cursor: pointer;
  cursor: hand;
}
.about-page .marginBox .marginTop .play i {
  border-left: 20px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  position: absolute;
  left: 53%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-page .marginBox .marginTop .play:after,
.about-page .marginBox .marginTop .play:before {
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: 0 solid rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  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%);
  -webkit-animation: bks 2s linear infinite;
  -moz-animation: bks 2s linear infinite;
  animation: bks 2s linear infinite;
}
.about-page .marginBox .marginTop .play:before {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.about-page .about-1 {
  padding: 80px 0;
  text-align: center;
}


.about-page .about-1 .bottom ul {
  width: 100%;
  margin-top: 60px;
}
.about-page .about-1 .bottom ul li {
  color: black;
  padding-bottom: 10px;
   transition: all 0.5s;
}
.about-page .about-1 .bottom ul li h4 {
  font-size: 60px;
  font-family: var(--font);
  line-height: 0.8;
   transition: all 0.5s;
}

.about-page .about-1 .bottom ul li p {
  font-size: 18px;
  font-family: 'Montserrat-Light';
  line-height: 1.2;
  transition: all 0.5s;
  margin-top:15px; 
}
.about-page .about-1 .bottom ul li:hover h4{
  color: var(--color);
}
.about-page .about-1 .bottom ul li:hover p{
  color: var(--color);
}


.about-page .about-1 .ui.container {
  max-width: 1400px;
}
.about-page .about-1 .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
  margin: 1em 0 1.5em;
  max-height: 360px;
    padding-right: 20px;
    overflow-y: auto;
    margin-bottom: 30px;
}
.about-page .about-1 a.more{
  margin: 0 auto;
}
.about-page .about-1 .text em {
  color: #242424;
  font-weight: 500;
}
.about-page .about-2 {
  padding:100px 0 80px;
}
.about-page .about-2 .list ul {
  margin: -20px;
}
.about-page .about-2 .list ul li {
  padding: 20px;
}
.about-page .about-2 .list ul li .box {
  text-align: center;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.about-page .about-2 .list ul li .box a.img {
  display: block;
}
.about-page .about-2 .list ul li .box a.img img {
  width: 100%;
}
.about-page .about-2 .list ul li .box .content {
  padding: 25px;
}
.about-page .about-2 .list ul li .box .content span.h3 {
  font-family:var(--font);
  font-size: 26px;
  color: #242424;
  line-height: 2;
}
.about-page .about-2 .list ul li .box .content .text {
  font-size: 18px;
  color: #626262;
  line-height: 1.4;
  margin-top: .5em;
  min-height: 3em;
  max-height: 150px;
  overflow-y: auto;
}
.about-page .about-3 {
  padding-bottom: 135px;
  text-align: center;
  position: relative;
}
.about-page .about-3:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 32%;
  background: url("../images/about-3-bg.jpg") center top no-repeat;
  background-size: cover;
  z-index: -1;
}
.about-page .about-3 .ui.container {
  max-width: 1410px;
}
.about-page .about-3 .options {
  margin-top: 70px;
}
.about-page .about-3 .options ul {
  margin: -10px;
}
.about-page .about-3 .options ul li {
  padding: 10px;
}
.about-page .about-3 .options ul li span {
  font-family:var(--font);
  font-size: 22px;
  color: #332f2c;
  line-height: 1.2;
  padding-bottom: 1em;
  border-bottom: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: block;
  text-align: left;
  cursor: pointer;
  cursor: hand;
}
.about-page .about-3 .options ul .slick-current li span {
  border-bottom-color: var(--color);
  color: var(--color);
}
.about-page .about-3 .ret {
  margin-top: 80px;
  padding: 0 5%;
}
.about-page .about-3 .ret ul {
  margin: -5px;
}
.about-page .about-3 .ret ul li {
  padding: 5px;
}
.about-page .about-3 .ret .left {
  vertical-align: middle;
}
.about-page .about-3 .ret .left .img {
  height: 335px;
  background-size: cover;
  background-position: center center;
  display: block;
}
.about-page .about-3 .ret .right {
  vertical-align: middle;
  padding-left: 0%;
  text-align: left;
}
.about-page .about-3 .ret .right span.txt {
  font-size: 30px;
  font-family:var(--font);
  text-transform: unset;
  color: var(--color);
}
.about-page .about-3 .ret .right span.h3 {
  font-size: 20px;
  color: #626262;
  margin-bottom: 1.5em;
  display: block;
  line-height: 1.6;
}
.about-page .about-3 .ret .right .btn div {
  display: inline-block;
  vertical-align: middle;
  line-height: 48px;
  height: 48px;
  padding: 0 24px;
  border-radius: 24px;
  border: 1px solid #bfbfbf;
  margin-right: 12px;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .ret .right .btn div img {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .ret .right .btn div.next img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.about-page .about-3 .ret .right .btn div:hover {
  background: var(--color);
  border-color: var(--color);
}
.about-page .about-3 .ret .right .btn div:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-page .about-4 {
  text-align: center;
}
.about-page .about-4 .list {
  margin-top: 50px;
  padding: 0 10%;
  overflow: hidden;
}
.about-page .about-4 .list ul .slick-list {
  overflow: unset;
}
.about-page .about-4 .list ul li a {
  display: block;
  position: relative;
}
.about-page .about-4 .list ul li a img {
  width: 100%;
}
.about-page .about-4 .list ul li a span {
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f9bc62;
  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;
  opacity: 0;
}
.about-page .about-4 .list ul li a span img {
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-page .about-4 .list ul li a:hover span {
  opacity: 1;
}
.about-page .about-4 .list ul .slick-slide {
  -webkit-transform: scale(0.7862069);
  -moz-transform: scale(0.7862069);
  -ms-transform: scale(0.7862069);
  transform: scale(0.7862069);
  position: relative;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
.about-page .about-4 .list ul .slick-slide li {
  -webkit-transform: translateX(65%);
  -moz-transform: translateX(65%);
  -ms-transform: translateX(65%);
  transform: translateX(65%);
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
.about-page .about-4 .list ul .slick-active {
  -webkit-transform: scale(0.87931034);
  -moz-transform: scale(0.87931034);
  -ms-transform: scale(0.87931034);
  transform: scale(0.87931034);
  z-index: 1;
}
.about-page .about-4 .list ul .slick-active li {
  -webkit-transform: translateX(25%);
  -moz-transform: translateX(25%);
  -ms-transform: translateX(25%);
  transform: translateX(25%);
}
.about-page .about-4 .list ul .slick-active.slick-current {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}
.about-page .about-4 .list ul .slick-active.slick-current li {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.about-page .about-4 .list ul .slick-active.slick-current + div {
  -webkit-transform: scale(0.87931034);
  -moz-transform: scale(0.87931034);
  -ms-transform: scale(0.87931034);
  transform: scale(0.87931034);
  z-index: 1;
}
.about-page .about-4 .list ul .slick-active.slick-current + div li {
  -webkit-transform: translateX(-25%);
  -moz-transform: translateX(-25%);
  -ms-transform: translateX(-25%);
  transform: translateX(-25%);
}
.about-page .about-4 .list ul .slick-active.slick-current + div + div {
  -webkit-transform: scale(0.7862069);
  -moz-transform: scale(0.7862069);
  -ms-transform: scale(0.7862069);
  transform: scale(0.7862069);
}
.about-page .about-4 .list ul .slick-active.slick-current + div + div li {
  -webkit-transform: translateX(-65%);
  -moz-transform: translateX(-65%);
  -ms-transform: translateX(-65%);
  transform: translateX(-65%);
}
.about-page .about-5 {
  padding: 50px 0 100px;
  text-align: center;
}
.about-page .about-5 .options {
  margin-top: 65px;
  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;
  border-bottom: 1px solid #c3c3c3;
}
.about-page .about-5 .options span {
  font-size: 20px;
  font-family:var(--font);
  width: 360px;
  margin-right: 1em;
  height: 2.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 .75em;
  border: 1px solid #c3c3c3;
  cursor: pointer;
  cursor: hand;
  background: #eee;
  margin-bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-5 .options span i {
  color: #bfbfbf;
}
.about-page .about-5 .options span.active {
  background-color: white;
  border-bottom-color: transparent;
}
.about-page .about-5 .ret {
  margin-top: 55px;
  position: relative;
}
/*.about-page .about-5 .ret .slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: -1;
}*/
.about-page .about-5 .ret .slide.active {
  position: static;
  opacity: 1;
  z-index: 1;
}
.about-page .about-5 .ret ul {
  margin: -8px;
}
.about-page .about-5 .ret ul li {
  padding: 8px;
}
.about-page .about-5 .ret ul li img {
  width: 100%;
}

.about-page .about-6 {
    padding: 0 0 6%
}

.about-page .about-6 .top .left {
    width: 73%
}

.about-page .about-6 .top .left .title {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    color: #030303;
    text-transform: uppercase
}

.about-page .about-6 .top .right {
    width: 53%;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(0,0,0,.65);
    vertical-align: bottom;
    margin-bottom: 10px
}

.about-page .about-6 .bottom {
    padding: 0
}

.about-page .about-6 .bottom .grid-box {
    padding-top: 50px;
    max-width: 100%
}

.about-page .about-6 .bottom ul li {
    padding-right: 60px;
    width: 16.6666%
}

.about-page .about-6 .bottom ul li .ig {
    position: relative;
    padding: 15px 20px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.2);

}

.about-page .about-6 .bottom ul li .ig:after {
    content: '';
    display: block;
    height: 100%;
    width: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #dcdcdc
}

.about-page .about-6 .bottom ul li i {
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease
}
.about-page .about-6 .bottom ul li .ig > p{
  min-height: 87px;
}
.about-page .about-6 .bottom ul li p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    color: #030303;
    width: 78%;
    margin-top: 18px;
    text-align: left
}
.about-page .about-6 .bottom ul li .ig .link_icon i{
  font-size: 30px;
}
.about-page .about-6 .bottom ul li .content {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: inherit;
    transition: .5s;
    opacity: 0;
    z-index: 2
}

.about-page .about-6 .bottom ul li:hover .content {
    opacity: 1
}

.about-page .about-6 .bottom ul li .text p {
    width: 100%;
    margin: 0;
  font-weight: 500;
  font-size: 14px;
}

.about-page .about-6 .bottom ul li .mores {
    display: block;
    margin-top: 38px;
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    width: auto;
    z-index: 1;
    font-size: 15px
}

.about-page .about-6 .bottom ul li .mores .link_text {
    position: relative;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
    text-indent: -110px;
    visibility: hidden;
    white-space: nowrap;
    opacity: 0;
    margin-top: -10px;
    -webkit-transition: visibility .4s ease,margin-right .4s ease-out,text-indent .5s ease-out,opacity .4s ease;
    -ms-transition: visibility .4s ease,margin-right .4s ease-out,text-indent .5s ease-out,opacity .4s ease;
    transition: visibility .4s ease,margin-right .4s ease-out,text-indent .5s ease-out,opacity .4s ease
}

.about-page .about-6 .bottom ul li .mores .link_icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.about-page .about-6 .bottom ul li .mores:hover .link_text {
    opacity: 1;
    text-indent: 0;
    margin-right: 6px;
    visibility: visible
}

.about-page .about-6 .bottom ul li:last-child {
    padding-right: 0;
    width: 16%
}

.about-page .about-6 .bottom ul li:last-child .ig:after {
    display: none
}

.about-page .about-6 .bottom ul li:hover i {
    filter: brightness(0)
}

.about-page .about-7 {
    position: relative;
    padding: 87px 0 79px;
    z-index: 1;
    margin-bottom: 60px;
}

.about-page .about-7 .left {
    width: 53.646%
}

.about-page .about-7 .right {
    width: 46.354%;
    color: #fff;
    padding: 38px 20px 0 0
}

.about-page .about-7 .right .ig {
    max-width: 706px;
    padding-left: 57px
}

.about-page .about-7 .right .header {
    text-align: right
}

.about-page .about-7 .right .header .tag {
    color: #fff;
    padding-right: 138px
}

.about-page .about-7 .right .header .tag:before {
    background: #fff;
    top: 8px
}

.about-page .about-7 .right .header .title {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 6px;
    margin-left: -132px
}

.about-page .about-7 .right .header .con {
    font-size: 18px;
    line-height: 1.8;
    opacity: .65;
    text-align: left
}

.about-page .about-7 .right .list {
    margin-top: 75px;
    border-top: 1px solid rgba(255,255,255,.2)
}

.about-page .about-7 .right .list ul li {
    padding: 19px 0 22px;
    border-bottom: 1px solid rgba(255,255,255,.2)
}

.about-page .about-7 .right .list ul li .tit {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 26px;
    line-height: 1.6
}

.about-page .about-7 .right .list ul li .tit em {
    width: 90%
}

.about-page .about-7 .right .list ul li .tit i {
    position: relative;
    width: 14px;
    height: 14px
}

.about-page .about-7 .right .list ul li .tit i:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    top: 6px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.about-page .about-7 .right .list ul li .tit i:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background: #fff;
    top: 0;
    left: 6px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.about-page .about-7 .right .list ul li .con {
    font-size: 18px;
    line-height: 1.8;
    opacity: .65;
    display: none;
    padding: 20px 0
}

.about-page .about-7 .right .list ul li.active .tit i:after {
    opacity: 0
}

.about-page .about-7:after {
    content: '';
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    width: 54.115%;
    height: 100%;
    background: url(/template/en/images/about2-bg.jpg) no-repeat center
}
@media screen and (max-width: 1680px) {
    .about-page .about-6 .bottom ul li {
        padding-right:40px
    }
}

@media screen and (max-width: 1440px) {
    .about-page .about-6 .bottom ul li p {
        width:90%
    }

    .about-page .about-7 .right .header .title {
        font-size: 78px;
        margin-left: -90px
    }
}

@media screen and (max-width: 1280px) {
    .about-page .about-6 .top .left .title {
        font-size:60px
    }

    .about-page .about-6 .bottom {
        padding-left: 0
    }

    .about-page .about-6 .bottom ul li p {
        width: 100%
    }

    .about-page .about-7 {
        padding: 50px 0
    }

    .about-page .about-7 .left,.about-page .about-7 .right {
        vertical-align: middle
    }

    .about-page .about-7 .right {
        padding-top: 0
    }

    .about-page .about-7 .right .ig {
        padding-left: 30px
    }

    .about-page .about-7 .right .header .title {
        font-size: 62px;
        margin-left: 0
    }
}

@media screen and (max-width: 1100px) {
    .about-page .about-6 .top .left .title {
        font-size:60px
    }

    .about-page .about-6 .bottom ul li p {
        font-size: 21px
    }

    .about-page .about-7 .right .header .title {
        font-size: 30px
    }

    .about-page .about-7 .right .list {
        margin-top: 40px
    }
}

@media screen and (max-width: 1000px) {
    .about-page .about-6 .top .left,.about-page .about-6 .top .right {
        width:100%
    }

    .about-page .about-6 .top .right {
        margin-top: 20px
    }

    .about-page .about-6 .bottom ul {
        margin-bottom: -20px
    }

    .about-page .about-6 .bottom ul li:last-child {
        width: 33.3333%
    }

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

    .about-page .about-7 .left {
        display: none
    }

    .about-page .about-7 .right {
        width: 100%
    }

    .about-page .about-7:after {
        width: 100%
    }
}

@media screen and (max-width: 700px) {
    .about-page .about-6 .bottom ul li {
        width:50%;
        padding-right: 20px
    }

    .about-page .about-6 .bottom ul li:last-child {
        width: 50%
    }

    .about-page .about-6 .bottom ul li:nth-child(even) {
        padding-right: 0
    }

    .about-page .about-7 .right .list ul li .tit {
        font-size: 22px
    }
}

@media screen and (max-width: 500px) {
    .about-page .about-6 .top .left .title {
        font-size:50px
    }

    .about-page .about-6 .top .right {
        font-size: 16px;
        line-height: 1.8
    }

    .about-page .about-6 .bottom ul li {
        width: 100%;
        padding-right: 0
    }

    .about-page .about-6 .bottom ul li:last-child {
        width: 100%
    }

    .about-page .about-6 .bottom ul li .ig {
        padding: 0
    }

    .about-page .about-6 .bottom ul li .ig:after {
        display: none
    }

    .about-page .about-7 .right {
        padding: 0 15px
    }

    .about-page .about-7 .right .ig {
        padding-left: 0
    }

    .about-page .about-7 .right .header .title {
        font-size: 24px
    }

    .about-page .about-7 .right .header .con {
        font-size: 16px;
        line-height: 1.8
    }

    .about-page .about-7 .right .list ul li .tit {
        font-size: 20px;
        line-height: 1.4
    }
}
@-webkit-keyframes bks {
  from {
    border-width: 0;
    opacity: 1;
  }
  80% {
    border-width: 20px;
    opacity: 0;
  }
  to {
    border-width: 20px;
    opacity: 0;
  }
}
@-moz-keyframes bks {
  from {
    border-width: 0;
    opacity: 1;
  }
  80% {
    border-width: 20px;
    opacity: 0;
  }
  to {
    border-width: 20px;
    opacity: 0;
  }
}
@keyframes bks {
  from {
    border-width: 0;
    opacity: 1;
  }
  80% {
    border-width: 20px;
    opacity: 0;
  }
  to {
    border-width: 20px;
    opacity: 0;
  }
}
.sustainablity-page .marginBox {
  padding: 0 !important;
}
.sustainablity-page .sustainablity-1 {
  padding: 100px 0 120px;
}
.sustainablity-page .sustainablity-1 .left {
  width: 55%;
  vertical-align: middle;
}
.sustainablity-page .sustainablity-1 .left .list ul {
  margin: -12px;
}
.sustainablity-page .sustainablity-1 .left .list ul li {
  padding: 12px;
}
.sustainablity-page .sustainablity-1 .right {
  width: 45%; 
  vertical-align: middle;
  text-align: left;
  padding-left: 50px;
}
.sustainablity-page .sustainablity-1 .right.ab-r{
  width: 100%; 
  vertical-align: middle;
  text-align: center;
  padding-left: 0;
}
.sustainablity-page .sustainablity-1 .right span.h3 {
  font-family:var(--font);
  font-size: 40px;
  color: #242424;
  line-height: 1.2;
  margin-bottom: .5em;
}
.sustainablity-page .sustainablity-1 .right .slide {
  margin-top: 20px;
}
.sustainablity-page .sustainablity-1 .right .slide span.h5 {
  font-size: 22px;
  color: var(--color);
  margin-bottom: .5em;
  display: block;
}
.sustainablity-page .sustainablity-1 .right .slide .text {
    font-size: 18px;
    color: #626262;
    line-height: 1.6;
    max-width: 1000px;
    padding-top: 30px;
    margin: auto;
}
.sustainablity-page .sustainablity-2 {
  text-align: center;
}
.sustainablity-page .sustainablity-2 .text {
    font-size: 18px;
    color: #626262;
    line-height: 1.6;
  max-width: 1250px;
  display: block;
  margin: 1.5em auto 2em;
}
.sustainablity-page .sustainablity-2 .list ul {
  margin: -23px;
}
.sustainablity-page .sustainablity-2 .list ul li {
  padding: 23px;
}
.sustainablity-page .sustainablity-2 .list ul li a {
  display: block;
}
.sustainablity-page .sustainablity-2 .list ul li a img {
  display: block;
  width: 100%;
}
.sustainablity-page .sustainablity-2 .list ul li a span {
  display: block;
  font-size: 20px;
  padding: .5em;
  text-align: center;
  background-color: var(--color);
  color: white;
}
.sustainablity-page .sustainablity-3 {
  padding: 140px 0 90px;
  text-align: center;
}
.sustainablity-page .sustainablity-3 .list {
  margin-top: 50px;
  padding: 0 10%;
  overflow: hidden;
}
.sustainablity-page .sustainablity-3 .list ul .slick-list {
  overflow: unset;
}
.sustainablity-page .sustainablity-3 .list ul li a {
  display: block;
  position: relative;
}
.sustainablity-page .sustainablity-3 .list ul li a img {
  width: 100%;
}
.sustainablity-page .sustainablity-3 .list ul li a span {
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f9bc62;
  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;
  opacity: 0;
}
.sustainablity-page .sustainablity-3 .list ul li a span img {
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.sustainablity-page .sustainablity-3 .list ul li a:hover span {
  opacity: 1;
}
.sustainablity-page .sustainablity-3 .list ul .slick-slide {
  -webkit-transform: scale(0.7862069);
  -moz-transform: scale(0.7862069);
  -ms-transform: scale(0.7862069);
  transform: scale(0.7862069);
  position: relative;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
.sustainablity-page .sustainablity-3 .list ul .slick-slide li {
  -webkit-transform: translateX(65%);
  -moz-transform: translateX(65%);
  -ms-transform: translateX(65%);
  transform: translateX(65%);
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
.sustainablity-page .sustainablity-3 .list ul .slick-active {
  -webkit-transform: scale(0.87931034);
  -moz-transform: scale(0.87931034);
  -ms-transform: scale(0.87931034);
  transform: scale(0.87931034);
  z-index: 1;
}
.sustainablity-page .sustainablity-3 .list ul .slick-active li {
  -webkit-transform: translateX(25%);
  -moz-transform: translateX(25%);
  -ms-transform: translateX(25%);
  transform: translateX(25%);
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current li {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current + div {
  -webkit-transform: scale(0.87931034);
  -moz-transform: scale(0.87931034);
  -ms-transform: scale(0.87931034);
  transform: scale(0.87931034);
  z-index: 1;
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current + div li {
  -webkit-transform: translateX(-25%);
  -moz-transform: translateX(-25%);
  -ms-transform: translateX(-25%);
  transform: translateX(-25%);
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current + div + div {
  -webkit-transform: scale(0.7862069);
  -moz-transform: scale(0.7862069);
  -ms-transform: scale(0.7862069);
  transform: scale(0.7862069);
}
.sustainablity-page .sustainablity-3 .list ul .slick-active.slick-current + div + div li {
  -webkit-transform: translateX(-65%);
  -moz-transform: translateX(-65%);
  -ms-transform: translateX(-65%);
  transform: translateX(-65%);
}
.testimonials-page .marginBox {
  padding: 100px 0 65px;
  text-align: center;
}
.testimonials-page .options {
  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;
  border-bottom: 1px solid #c3c3c3;
  margin-top: 110px;
}
.testimonials-page .options span {
  font-size: 22px;
  font-family:var(--font);
  width: 360px;
  margin-right: 1em;
  height: 2.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 .75em;
  border: 1px solid #c3c3c3;
  cursor: pointer;
  cursor: hand;
  background: #eee;
  margin-bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.testimonials-page .options span em {
  color: #bfbfbf;
}
.testimonials-page .options span.active {
  background-color: white;
  border-bottom-color: transparent;
}
.testimonials-page .ret .list {
  margin: 100px 0 70px;
}
.testimonials-page .ret .list ul {
  margin: -30px -15px;
  text-align: left;
}
.testimonials-page .ret .list ul li {
  padding: 30px 15px;
  text-align: center;
}
.testimonials-page .ret .list ul li a {
  display: block;
  position: relative;
}
.testimonials-page .ret .list ul li a img {
  width: 100%;
}
.testimonials-page .ret .list ul li a span {
  width: 40px;
  height: 40px;
  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%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f9bc62;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.testimonials-page .ret .list ul li a span img {
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.testimonials-page .ret .list ul li a:hover span {
  opacity: 1;
}
.news-page .marginBox {
  padding: 90px 6% 70px;
}
.news-page .sideBarLeft .list ul li a.img-box {
  padding: 30px 30px 20px;
  display: block;
  border: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .sideBarLeft .list ul li a.img-box img {
  display: block;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.news-page .sideBarLeft .list ul li a.img-box time {
  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-size: 16px;
  color: #8e8e8e;
  margin-top: 1.2em;
}
.news-page .sideBarLeft .list ul li a.img-box time em {
  font-size: 14px;
  padding: .3em 1em;
  border-radius: 1.5em;
  background: #f9bc62;
  color: white;
  text-transform: uppercase;
  margin-left: 1em;
}
.news-page .sideBarLeft .list ul li a.img-box:hover {
  border-color: #f9bc62;
}
.news-page .sideBarLeft .list ul li .content {
  padding: 30px 0 50px;
}
.news-page .sideBarLeft .list ul li .content span.h3 {
  font-family:var(--font);
  font-size: 28px;
  color: #242424;
  line-height: 2;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .sideBarLeft .list ul li .content span.h3:hover {
  color: #f9bc62;
}
.news-page .sideBarLeft .list ul li .content .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
  margin: 1em 0;
}
.news-page .sideBarLeft .list ul li .content a.link {
  font-size: 18px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  line-height: 1;
  border-bottom: 1px solid #f9bc62;
  color: #f9bc62;
}
.news-page .sideBarLeft .list ul li .content a.link:after {
  content: '';
  border: 4px solid #f9bc62;
  border-radius: 100%;
  position: absolute;
  top: -2px;
  left: 105%;
}
.newdet-page .marginBox {
  padding: 90px 6%;
}
.newdet-page .sideBarLeft time {
  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-size: 16px;
  color: #8e8e8e;
  margin-top: 1.2em;
}
.newdet-page .sideBarLeft time em {
  font-size: 14px;
  padding: .3em 1em;
  border-radius: 1.5em;
  background: #f9bc62;
  color: white;
  text-transform: uppercase;
  margin-left: 1em;
}
.newdet-page .sideBarLeft h1 {
  font-family:var(--font);
  font-size: 28px;
  color: #242424;
  line-height: 2;
  display: block;
  margin: 2em 0 1em;
}
.newdet-page .sideBarLeft .content {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
  padding: 1.5em 0;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
}
.newdet-page .sideBarLeft .share {
  font-size: 24px;
  color: #bfbfbf;
  margin-top: 1em;
  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;
}
.newdet-page .sideBarLeft .share a {
  margin-left: 1em;
  font-size: 80%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .sideBarLeft .share a:hover {
  color: #f9bc62;
}
.newdet-page .sideBarLeft .m-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0 80px;
}
.newdet-page .sideBarLeft .m-link .prev {
  margin-right: 20px;
  width: 100%;
}
.newdet-page .sideBarLeft .m-link .prev a.link img {
  margin-right: .5em;
}
.newdet-page .sideBarLeft .m-link .next {
  margin-left: 20px;
  width: 100%;
}
.newdet-page .sideBarLeft .m-link .next a.link {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.newdet-page .sideBarLeft .m-link .next a.link img {
  margin-left: .5em;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.newdet-page .sideBarLeft .m-link a.link {
  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:var(--font);
  font-size: 20px;
  color: #242424;
  margin-bottom: .5em;
}
.newdet-page .sideBarLeft .m-link .btnBox {
  padding: 20px;
  background: #eee;
  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;
}
.newdet-page .sideBarLeft .m-link .btnBox a.img {
  width: 35%;
  height: 80px;
  background-size: cover;
  background-position: center center;
}
.newdet-page .sideBarLeft .m-link .btnBox .text {
  margin-left: 15px;
}
.newdet-page .sideBarLeft .m-link .btnBox .text time {
  font-size: 16px;
  color: #8e8e8e;
  margin: 0;
}
.newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
  font-size: 18px;
  color: #242424;
  line-height: 2;
  margin-top: .1em;
  display: block;
}
.newdet-page .sideBarLeft .publicForm span.h6 {
  font-family:var(--font);
  font-size: 28px;
  color: #242424;
  line-height: 2;
  margin-bottom: 1em;
  display: block;
}
.service-page .marginBox {
  padding: 110px 6%;
}
.service-page .service-1 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.service-page .service-1 .bottom {
  margin-top: 70px;
  border-top: 1px solid #bfbfbf;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.service-page .service-1 .bottom .left {
  width: 100%;
  padding-right: 0%;
}
.service-page .service-1 .bottom .left .list ul li {
  font-family:var(--font);
  font-size: 28px;
  padding: 1em 0;
  position: relative;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-1 .bottom .left .list ul li em {
  color: #bfbfbf;
}
.service-page .service-1 .bottom .left .list ul li:after {
  content: '';
  bottom: 0;
  left: 0;
  width: 300%;
  height: 1px;
  background: #bfbfbf;
  position: absolute;
  z-index: -1;
}
.service-page .service-1 .bottom .left .list ul li .des{
  font-size: 20px;
  color: black;
  font-weight: normal;
  padding-left: 45px;
  margin-top: 15px;
  display: none;
}
.service-page .service-1 .bottom .left .list ul li.active,
.service-page .service-1 .bottom .left .list ul li:hover {
  color: var(--color);
}
.service-page .service-1 .bottom .right {
  margin-top: 35px;
  margin-right: 45px;
  width: 32%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.service-page .service-1 .bottom .right .img {
  height: 450px;
  background-size: cover;
  background-position: center center;
  display: block;
}
.service-page .service-2 {
  padding: 60px 0 110px;
}
.service-page .service-2 .list {
  margin-top: 50px;
}
.service-page .service-2 .list ul {
  margin: 0 -40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.service-page .service-2 .list ul li {
  padding: 0 40px;
}
.service-page .service-2 .list ul li .box {
  height: 100%;
  padding: 30px 10% 20px;
  background: #f6f1ea;
}
.service-page .service-2 .list ul li .box i {
  display: block;
  height: 60px;
}
.service-page .service-2 .list ul li .box span.h6 {
  display: block;
  font-family:var(--font);
  font-size: 24px;
  color: #242424;
  margin: .5em 0;
}
.service-page .service-2 .list ul li .box .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
}
.service-page .service-3 .form {
  margin-top: 40px;
}
.service-page .service-4 {
  padding-top: 120px;
}
.service-page .service-4 .left {
  width: 47%;
  vertical-align: middle;
}
.service-page .service-4 .left .img {
  height: 370px;
  background-size: cover;
  background-position: center center;
  display: block;
}
.service-page .service-4 .right {
  width: 53%;
  padding-left: 2%;
  vertical-align: middle;
}
.service-page .service-4 .right .list ul {
  margin: -25px;
}
.service-page .service-4 .right .list ul li {
  padding: 25px;
}
.service-page .service-4 .right .list ul li span.h6 {
  font-family:var(--font);
  font-size: 24px;
  color: #242424;
  line-height: 1.2;
  margin-bottom: .5em;
  display: block;
}
.service-page .service-4 .right .list ul li .text {
  font-size: 20px;
  color: #8e8e8e;
  line-height: 2;
}
.service-page .service-4 .right .list ul li.wid-100 {
  width: 100%;
}
.download-page .ret .list ul li em {
  font-size: 18px;
  color: #bb8c4b;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  border-bottom: 1px solid #f9bc62;
  margin-top: 1.2em;
  display: inline-block;
}
.download-page .ret .list ul li em:after {
  content: '';
  border: 4px solid #f9bc62;
  border-radius: 100%;
  position: absolute;
  top: -2px;
  left: 105%;
}
.download-page .ret .list ul li em:after {
  border-width: 2px;
}
.faq-page .marginBox {
  padding: 110px 0 100px;
  text-align: center;
}
.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: #ebebeb;
}
.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: 1.2;
  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: 1.2;
}
.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: 18px;
  color: #242424;
  /*text-align: right;*/
  display: block;
  position: relative;
}
.faq-page .marginBox .box .right .list ul li span.title i {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 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;
}
.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;
}




.service-page .service-6 .ui.container {
    width: auto;
    max-width: 1700px
}

.service-page .service-6 .box {
    height: 700px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5%
}

.service-page .service-6 .box .mask i {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.service-page .service-6 .box .mask i.active {
    opacity: 1
}

.service-page .service-6 .box .content {
    width: 660px;
    border: 1px solid #e5e5e5;
    padding: 4% 3%;
    position: relative;
    z-index: 1;
    background-color: #fff
}

.service-page .service-6 .box .content span.tag {
    display: block;
    color: #d4ab57;
    margin-bottom: .5em;
    font-weight: 500
}

.service-page .service-6 .box .content .text {
    margin: 1.5em 0;
    max-width: 90%
}

.service-page .service-6 .box .content .slickBtn {
    -webkit-box-pack: right;
    -webkit-justify-content: right;
    -moz-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right
}

.slickBtn {
    font-size: 30px
}

.slickBtn div {
    background-color: #eaf5fa;
    color: var(--color)
}

.slickBtn div:hover {
    color: #fff;
    background-color: var(--color)
}

@media screen and (max-width: 1450px) {
    .service-page .service-6 .box {
        height: 600px
    }
}

@media screen and (max-width: 1250px) {
    .service-page .service-6 .box {
        height: 500px
    }
}


@media screen and (max-width: 1000px) {
    .service-page .service-6 .box {
        height: 420px
    }
}

@media screen and (max-width: 700px) {
    .service-page .service-6 .box .content {
        max-width: 100%
    }

    .service-page .service-6 .box {
        height: auto
    }

    .service-page .service-6 .box .content {
        background-color: rgba(255,255,255,.6)
    }
}



.slickBtn {
    font-size: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.slickBtn div {
    width: 2em;
    height: 2em;
    border-radius: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--color);
    color: #fff;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.slickBtn div:hover {
    background-color: #000
}

.slickBtn div.next {
    margin-left: 1em
}

.slickBtn.pos div {
    position: absolute;
    top: 32%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1
}

.slickBtn.pos div.prev {
    right: 102%
}

.slickBtn.pos div.next {
    left: 102%;
    margin-left: 0
}

.slickDots {
    font-size: 10px
}

.slickDots ul {
    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
}

.slickDots ul li {
    width: 1em;
    height: 1em;
    border-radius: 100%;
    border: 1px solid var(--color);
    background-color: var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
    cursor: hand;
    margin: 0 .5em
}

.slickDots ul li.slick-active {
    background-color: transparent
}

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

    .slickBtn {
        font-size: 14px
    }

    .slickBtn.pos div.prev {
        left: auto;
        right: auto
    }

    .slickBtn.pos div.next {
        right: 0;
        left: auto
    }

    .slickDots {
        font-size: 7px
    }
}

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

    .slickBtn {
        font-size: 12px
    }

    .slickDots {
        font-size: 5px
    }
}





.contact-page .marginBox {
  padding-bottom: 90px;
}
.contact-page .contact-1 {
  padding: 100px 0 110px;
  text-align: center;
}
.contact-page .contact-1 .text {
  font-size: 20px;
  color: #626262;
  line-height: 1.6;
  max-width: 650px;
  display: block;
  margin: 1em auto 2em;
}
.contact-page .contact-1 .list ul {
  margin: -20px;
  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;
}
.contact-page .contact-1 .list ul li {
  padding: 20px;
}
.contact-page .contact-1 .list ul li .box {
  padding: 35px 5% 15px;
  border: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  height: 100%;
  position: relative;
  top: 0;
}
.contact-page .contact-1 .list ul li .box i {
  display: block;
}
.contact-page .contact-1 .list ul li .box i img {
  display: block;
  margin: 0 auto;
}
.contact-page .contact-1 .list ul li .box span.h6 {
  font-family:var(--font);
  font-size: 24px;
  color: #242424;
  margin: 1em 0 .5em;
  display: block;
}
.contact-page .contact-1 .list ul li .box p {
  font-size: 18px;
  color: #626262;
  line-height: 1.4;
  max-width: 400px;
  margin: auto;
}
.contact-page .contact-1 .list ul li .box:hover {
  border-color: var(--color);
  top: -20px;
}
.contact-page .map {
  position: relative;
  z-index: 1;
}
.news-page {
  padding: 60px 0 51px;
}
.news-page .ui.container ul.newslist {
  margin-top: 60px;
}
.news-page .ui.container ul.newslist li {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ccc;
}
.news-page .ui.container ul.newslist li .column {
  vertical-align: top;
}
.news-page .ui.container ul.newslist li:last-child {
  margin-bottom: 0;
}
.news-page .ui.container ul.newslist li .date {
  min-width: 120px;
  width: 120px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
}
.news-page .ui.container ul.newslist li .date span {
  font-size: 90px;
  font-family: 'DelonRegular';
  color: var(--color);
  line-height: 1;
  text-align: center;
}
.news-page .ui.container ul.newslist li .date em {
  font-weight: 500;
  text-align: center;
  font-size: 18px;
  color: .news-page .ui.container ul.newslist li .date em;
  margin-top: 10px;
}
.news-page .ui.container ul.newslist li .text {
  width: -webkit-calc(100% - 120px);
  width: -moz-calc(100% - 120px);
  width: calc(100% - 120px);
  padding-left: 80px;
}
.news-page .ui.container ul.newslist li .text .content{
     text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-page .ui.container ul.newslist li .text h5 {
  margin-bottom: 20px;
    line-height: 2;
}
.news-page .ui.container ul.newslist li .text h5 a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.news-page .ui.container ul.newslist li .text h5 a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: var(--color);
}
.news-page .ui.container ul.newslist li .text p {
  color: #a5a5a5;
  line-height: 2;
}
.news-page .ui.container ul.newslist li .text .content p {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news-page .ui.container ul.newslist li .img-box {
  max-height: 170px;
  overflow: hidden;
  width: 30%;
}
.newdet-page .ui.container .newst {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.newdet-page .ui.container .newst span {
  color: var(--color);
  font-weight: 500;
}
.newdet-page .ui.container .newst span em {
  color: #a5a5a5;
  font-weight: 400;
  margin-left: 10px;
}
.newdet-page .ui.container h1 {
  margin: 100px 0 30px;
}
.newdet-page .ui.container .content {
  color: #626262;
  font-size: 16px;
  line-height: 2;
  margin-top: 30px;
}
.newdet-page .ui.container .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 0 30px;
  border-bottom: 1px solid #ccc;
}
.newdet-page .ui.container .bottom .sharebox {
  color: #222;
}
.newdet-page .ui.container .bottom .sharebox span {
  color: #222;
  font-size: 18px;
  font-weight: 500;
  margin-right: 10px;
  vertical-align: middle;
  width: auto;
}
.newdet-page .ui.container .bottom .sharebox ul {
  width: auto;
  vertical-align: middle;
}
.newdet-page .ui.container .bottom .sharebox ul li {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: solid 1px #cccccc;
  border-radius: 100%;
  padding: 0;
  margin-right: 10px;
  text-align: center;
  line-height: 50px;
}
.newdet-page .ui.container .bottom .sharebox ul li a {
  font-size: 24px;
  color: var(--color);
}
.newdet-page .ui.container .bottom .tabbox .mores i {
  width: 50px;
  height: 50px;
  border: solid 1px #ccc;
  border-radius: 100%;
  position: relative;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  font-size: 24px;
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*.newdet-page .ui.container .bottom .tabbox .mores:hover i img {
  -webkit-filter: grayscale(1) brightness(2);
  filter: grayscale(1) brightness(2);
}*/
.newdet-page{
  padding-top: 80px;
}
@media screen and (max-width: 1600px) {
   
  span.txt {
    font-size: 20px;
  }
   
   
  span.h2, 
  .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
    font-size: 48px;
  }
    
  .about-page .about-1 .text,
  .contact-page .contact-1 .list ul li .box span.h6,
  .contact-page .contact-1 .list ul li .box p,
  .manufacturing-page .manufacturing-1 .left .text,
  .manufacturing-page .manufacturing-3 .box .text,
  .manufacturing-page .manufacturing-7 .text,
  .manufacturing-page .manufacturing-5 .text,
  .service-page .service-2 .list ul li .box .text,
  .service-page .service-4 .right .list ul li .text,
  .sustainablity-page .sustainablity-1 .right .slide .text,
  .sustainablity-page .sustainablity-2 .text,
  .advantage-page .advantage-1 .right .text,
  .advantage-page .advantage-3 .left .text,
  .advantage-page .advantage-4 .text,
  .advantage-page .advantage-6 .list ul li .box .right .text,
  .contact-page .contact-1 .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;
  }
   
  .inner-banner .box .right .mbx {
    font-size: 16px;
  }
  .inner-banner {
    height: 560px;
  }
  .about-page .about-2 .list ul li .box .content {
    padding: 15px;
  }
  .about-page .about-2 .list ul li .box .content span.h3 {
    font-size: 20px;
  }
  .about-page .about-2 .list ul li .box .content .text {
    font-size: 18px;
  }
  .about-page .about-2 {
    padding-bottom: 60px;
  }
  .about-page .about-3 .options {
    margin-top: 40px;
  }
  .about-page .about-3 .options ul li span {
    font-size: 18px;
    padding-bottom: .6em;
  }
  .about-page .about-3 .ret {
    margin-top: 30px;
  }
  .about-page .about-3 .ret .right span.h3 {
    font-size: 20px;
  }
  .about-page .about-3 .ret .right .btn div,
  .seoBox .seoNews .top .btn div {
    line-height: 36px;
    height: 36px;
  }
  .about-page .about-3 {
    padding-bottom: 80px;
  }
  .about-page .about-5 {
    padding: 80px 0;
  }
  .about-page .about-5 .options span,
  .testimonials-page .options span,
  .prodet-page .prodet-2 .options span {
    font-size: 18px;
    width: 280px;
  }
  .about-page .about-5 .options {
    margin-top: 40px;
  }
  .advantage-page .advantage-1 .left span.h1 {
    font-size: 160px;
  }
  .advantage-page .advantage-1 .left span.h5 {
    font-size: 24px;
  }
  .advantage-page .advantage-1 {
    padding-top: 50px;
  }
  .advantage-page .advantage-2 {
    padding: 50px 0;
  }
  .advantage-page .advantage-5 {
    padding: 60px 0;
  }
  .inner-page .form ul li {
    padding: 6px;
  }
  .inner-page .form ul {
    margin: -6px;
  }
  .inner-page .form ul li input,
  .inner-page .form ul li textarea,
  .inner-page .form ul li input[type="submit"] {
    font-size: 16px;
  }
  .contact-page .contact-1 {
    padding: 60px 0;
  }
  .contact-page .contact-1 .text {
    margin-bottom: 2em;
  }
  .contact-page .contact-1 .list ul li .box {
    padding: 15px 5%;
  }
  .contact-page .contact-1 .list ul li .box i img {
    max-height: 80px;
  }
  #mapContainer {
    height: 380px !important;
  }
  .testimonials-page .options {
    margin-top: 60px;
  }
  .testimonials-page .ret .list {
    margin: 50px 0;
  }
  .testimonials-page .ret .list ul li {
    padding: 10px;
  }
  .testimonials-page .ret .list ul {
    margin: -10px;
  }
  .download-page .ret .list ul li em {
    font-size: 16px;
    margin-top: .6em;
  }
  .faq-page .marginBox .box .left .box2 {
    padding: 30px 20px;
  }
  .faq-page .marginBox .box .left .box2 .slide span.h6 {
    font-size: 16px;
    margin-bottom: 1em;
  }
  .faq-page .marginBox .box .left .box2 .slide .nav ul li {
    font-size: 16px;
    margin-bottom: .8em;
  }
  .faq-page .marginBox .box .right .list ul li span.title,
  .faq-page .marginBox .box .right .list ul li .text {
    font-size: 16px;
  }
  .faq-page .marginBox .box .right .list ul li .text {
    margin: 20px 0;
  }
  .faq-page .marginBox .box .right .list ul li {
    padding: 10px;
    margin-bottom: 10px;
  }
  .faq-page .marginBox {
    padding: 90px 0;
  }
  .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;
  }
  .news-page .sideBarLeft .list ul li a.img-box {
    padding: 20px;
  }
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 24px;
  }
  .news-page .sideBarLeft .list ul li .content .text,
  .news-page .sideBarLeft .list ul li .content a.link {
    font-size: 16px;
  }
  .news-page .sideBarLeft .list ul li .content a.link:after {
    border-width: 2px;
  }
  .inner-page .sideBarBox .sideBarRight span.h5 {
    font-size: 18px;
    margin-top: 1.5em;
  }
  .inner-page .sideBarBox .sideBarRight form.search,
  .inner-page .sideBarBox .sideBarRight .nav ul li {
    font-size: 16px;
  }
  .inner-page .sideBarBox .sideBarRight .newsList ul li .content time {
    font-size: 14px;
  }
  .inner-page .sideBarBox .sideBarRight .newsList ul li .content span.h6 {
    font-size: 16px;
  }
  .inner-page .sideBarBox .sideBarRight .newsList ul li {
    padding: 10px 0;
  }
  .inner-page .sideBarBox .sideBarRight .imgBox {
    height: 380px;
  }
  .inner-page .sideBarBox .sideBarRight .imgBox .text {
    padding: 1em;
    font-size: 14px;
  }
  .newdet-page .sideBarLeft h1 {
    font-size: 24px;
    margin: 1em 0;
  }
  .newdet-page .sideBarLeft .content {
    font-size: 16px;
  }
  .newdet-page .sideBarLeft .share {
    font-size: 20px;
  }
  .newdet-page .sideBarLeft .m-link a.link,
  .newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
    font-size: 16px;
  }
  .newdet-page .sideBarLeft .m-link .btnBox {
    padding: 10px;
  }
  .newdet-page .sideBarLeft .m-link .btnBox .text time {
    font-size: 14px;
  }
  .newdet-page .sideBarLeft .m-link {
    margin: 30px 0 40px;
  }
  .newdet-page .sideBarLeft .publicForm span.h6 {
    font-size: 24px;
  }
  .inner-page #productList ul li span.h6 {
    font-size: 16px;
  }
  .prodet-page .prodet-3 {
    padding-bottom: 80px;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 24px;
  }
  .prodet-page .prodet-1 .right .text {
    font-size: 18px;
    margin: 1.5em 0;
  }
  .prodet-page .prodet-1 .right .share span.h6 {
    font-size: 20px;
  }
  .prodet-page .prodet-1 .right .share a {
    font-size: 16px;
  }
  .prodet-page .prodet-2 .ret {
    margin-top: 30px;
    font-size: 18px;
  }
  .prodet-page .prodet-2 {
    padding: 60px 0;
  }
  .inner-page #productList ul li a.link,
  .seoBox .seoNews .bottom .list ul li .box a.link {
    font-size: 16px;
  }
  .inner-page #productList ul li a.link em:after,
  .seoBox .seoNews .bottom .list ul li .box a.link:after {
    border-width: 2px;
  }
  .seoBox span.h3 {
    font-size: 38px;
  }
  .seoBox .seoAbout .right .text,
  .product-page .marginTop .left .text,
  .product-cat-page .slide .left .text {
    font-size: 16px;
  }
  .seoBox .seoHonor {
    padding: 50px 0;
  }
  .seoBox .seoNews .bottom .list ul li .box time {
    margin: 1em 0;
  }
  .seoBox .seoNews .bottom .list ul li .box span.h6 {
    font-size: 20px;
  }
  .seoBox .seoNews .bottom {
    margin-top: 30px;
  }
  .inner-page .m-page a,
  .inner-page .m-page span,
  .inner-page .m-page .next,
  .inner-page .m-page .prev {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin: 0 5px;
  }
  .product-cat-page .slide .right a.img {
    height: 600px;
  }
  .product-cat-page .slide {
    margin-top: 50px;
  }
  .service-page .marginBox {
    padding: 80px 6%;
  }
  .service-page .service-1 .bottom .left .list ul li {
    font-size: 24px;
  }
  .service-page .service-1 .bottom .right {
    width: 27%;
  }
  .service-page .service-1 .bottom .right .img {
    height: 360px;
  }
  .service-page .service-1 .bottom {
    margin-top: 40px;
  }
  .service-page .service-2 .list {
    margin-top: 30px;
  }
  .service-page .service-2 .list ul li .box i {
    height: 40px;
  }
  .service-page .service-2 .list ul li .box i img {
    max-height: 100%;
  }
  .service-page .service-2 .list ul li .box span.h6,
  .service-page .service-4 .right .list ul li span.h6 {
    font-size: 20px;
  }
  .service-page .service-2 {
    padding: 50px 0;
  }
  .service-page .service-4 {
    padding-top: 60px;
  }
  .service-page .service-4 .right .list ul li {
    padding: 15px;
  }
  .service-page .service-4 .right .list ul {
    margin: -15px;
  }
  .service-page .service-4 .left .img {
    height: 320px;
  }
  .sustainablity-page .sustainablity-1 {
    padding: 70px 0;
  }
  .sustainablity-page .sustainablity-1 .right span.h3 {
    font-size: 28px;
  }
  .sustainablity-page .sustainablity-1 .right .slide {
    margin-top: 20px;
  }
  .sustainablity-page .sustainablity-1 .right .slide span.h5 {
    font-size: 24px;
  }
  .sustainablity-page .sustainablity-2 .list ul li a span {
    font-size: 16px;
  }
  .sustainablity-page .sustainablity-3 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 1450px) {
  
  .inner-page .marginBox {
    padding: 50px 0;
  }
  .inner-banner {
     height: 470px;
  }
  .testimonials-page .marginBox {
    padding: 60px 0;
  }
  span.h2, 
  .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
    font-size: 38px;
  }
  span.txt {
    font-size: 16px;
  }
  .about-page .about-5 .options span,
  .testimonials-page .options span,
  .prodet-page .prodet-2 .options span {
    font-size: 16px;
    width: 220px;
  }
  .sustainablity-page .sustainablity-1 .right span.h3 {
    font-size: 24px;
  }
  .sustainablity-page .sustainablity-1 .right .slide span.h5 {
    font-size: 20px;
  }
   
  .about-page .about-1 .text,
  .contact-page .contact-1 .list ul li .box span.h6,
  .contact-page .contact-1 .list ul li .box p,
  .manufacturing-page .manufacturing-1 .left .text,
  .manufacturing-page .manufacturing-3 .box .text,
  .manufacturing-page .manufacturing-7 .text,
  .manufacturing-page .manufacturing-5 .text,
  .service-page .service-2 .list ul li .box .text,
  .service-page .service-4 .right .list ul li .text,
  .sustainablity-page .sustainablity-1 .right .slide .text,
  .sustainablity-page .sustainablity-2 .text,
  .advantage-page .advantage-1 .right .text,
  .advantage-page .advantage-3 .left .text,
  .advantage-page .advantage-4 .text,
  .advantage-page .advantage-6 .list ul li .box .right .text,
  .contact-page .contact-1 .text {
    font-size: 16px;
  }
  .sustainablity-page .sustainablity-2 .list ul li {
    padding: 10px;
  }
  .sustainablity-page .sustainablity-2 .list ul {
    margin: -10px;
  }
  .sustainablity-page .sustainablity-3 .list {
    margin-top: 30px;
  }
  .service-page .marginBox {
    padding: 60px 4%;
  }
  
  .service-page .service-1 .bottom .left .list ul li {
    font-size: 20px;
  }
  .service-page .service-1 .bottom .right {
    width: 24%;
  }
  .service-page .service-1 .bottom .right .img {
    height: 300px;
  }
  .service-page .service-2 .list ul li {
    padding: 0 15px;
  }
  .service-page .service-2 .list ul {
    margin: 0 -15px;
  }
  .service-page .service-2 .list ul li .box {
    padding: 15px;
  }
  .inner-page #productList ul li span.h6 {
    font-size: 14px;
  }
  .product-page .product-1 {
    padding: 0 0 60px;
  }
  .seoBox .seoNews .bottom .list ul li .box span.h6 {
    font-size: 18px;
  }
  .prodet-page .prodet-1 {
    padding-top: 60px;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 20px;
  }
  .prodet-page .prodet-1 .right .text {
    font-size: 16px;
  }
  .prodet-page .prodet-1 .right a.more {
    margin-top: 2em;
  }
  .prodet-page .prodet-1 .left .smallImg {
    padding-right: 23px;
  }
  .prodet-page .prodet-3 {
    padding-bottom: 50px;
  }
  .prodet-page .prodet-3 .list {
    margin: 30px 0;
  }
  .seoBox span.h3 {
    font-size: 32px;
  }
  .seoBox .seoNews .bottom .list ul li,
  .seoBox .seoHonor .list ul li,
  .manufacturing-page .manufacturing-2 .list ul li {
    padding: 10px;
  }
  .seoBox .seoNews .bottom .list ul,
  .seoBox .seoHonor .list ul,
  .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;
  }
  .testimonials-page .options {
    margin-top: 30px;
  }
  .contact-page .contact-1 {
    padding-top: 10px;
  }
  .advantage-page .advantage-1 .left span.h1 {
    font-size: 120px;
  }
  .advantage-page .advantage-1 .left span.h5 {
    font-size: 20px;
  }
  .advantage-page .advantage-3 .right .img {
    height: 380px;
  }
   
}
@media screen and (max-width: 1250px) {
   
  .about-page .about-1 .text,
  .contact-page .contact-1 .list ul li .box span.h6,
  .contact-page .contact-1 .list ul li .box p,
  .manufacturing-page .manufacturing-1 .left .text,
  .manufacturing-page .manufacturing-3 .box .text,
  .manufacturing-page .manufacturing-7 .text,
  .manufacturing-page .manufacturing-5 .text,
  .service-page .service-2 .list ul li .box .text,
  .service-page .service-4 .right .list ul li .text,
  .sustainablity-page .sustainablity-1 .right .slide .text,
  .sustainablity-page .sustainablity-2 .text,
  .advantage-page .advantage-1 .right .text,
  .advantage-page .advantage-3 .left .text,
  .advantage-page .advantage-4 .text,
  .advantage-page .advantage-6 .list ul li .box .right .text,
  .contact-page .contact-1 .text {
    font-size: 14px;
  }
   
  span.h2, 
  .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
    font-size: 28px;
  }
   
  .inner-banner {
   height: 330px;
  }
  .inner-banner .box .right .mbx {
    font-size: 14px;
  }
  .about-page .about-1 {
    padding: 40px 0;
  }
  .about-page .about-2 .list ul li .box .content span.h3 {
    font-size: 18px;
  }
  .about-page .about-2 .list ul li .box .content .text {
    font-size: 16px;
  }
  .about-page .about-2 .list ul li {
    padding: 10px;
  }
  .about-page .about-2 .list ul {
    margin: -10px;
  }
  .about-page .about-3 .options ul li span {
    font-size: 16px;
  }
  .about-page .about-3 .ret .right span.txt {
    font-size: 20px;
  }
  .about-page .about-3 .ret .right span.h3 {
    font-size: 18px;
  }
  .about-page .about-3 .ret .right .btn div,
  .seoBox .seoNews .top .btn div {
    line-height: 30px;
    height: 30px;
    padding: 0 15px;
  }
  .about-page .about-3 .ret .left .img {
    height: 240px;
  }
  .about-page .about-4 .list ul li a span {
    zoom: .7;
  }
  .about-page .about-5 .options span,
  .testimonials-page .options span,
  .prodet-page .prodet-2 .options span {
    font-size: 14px;
    width: 200px;
  }
  .about-page .about-5 .ret {
    margin-top: 20px;
  }
  .about-page .about-5 {
    padding: 50px 0;
  }
  .advantage-page .advantage-1 .left span.h1 {
    font-size: 90px;
  }
  .advantage-page .advantage-3 .right .img {
    height: 300px;
  }
  .advantage-page .advantage-4 {
    padding-top: 60px;
  }
  .advantage-page .advantage-6 .list {
    margin: 30px 0;
  }
  .advantage-page .advantage-6 .list ul li {
    padding: 15px 0;
  }
  .advantage-page .advantage-6 .list ul li .box .left .content span.h6 {
    font-size: 16px;
  }
  .advantage-page .advantage-6 .list ul li .box .left .content span.em {
    font-size: 18px;
  }
  .advantage-page .advantage-6 .list ul li .box .left {
    width: 35%;
    padding-right: 1%;
  }
  .advantage-page .advantage-6 .list ul li .box .left .img {
    margin-right: 10px;
  }
  .contact-page .contact-1 .list ul li .box i img {
    max-height: 60px;
  }
  .contact-page .contact-1 .list ul li {
    padding: 10px;
  }
  .contact-page .contact-1 .list ul {
    margin: -10px;
  }
  .testimonials-page .ret .list {
    margin: 30px 0;
  }
  .faq-page .marginBox .box {
    margin-top: 30px;
  }
  .faq-page .marginBox .box .right {
    width: 100%;
    padding-left: 0;
  }
  .faq-page .marginBox .box .left {
    display: none;
  }
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 20px;
  }
  .news-page .sideBarLeft .list ul li .content {
    padding: 20px 0 30px;
  }
  .newdet-page .sideBarLeft h1,
  .newdet-page .sideBarLeft .publicForm span.h6 {
    font-size: 20px;
  }
  .product-cat-page .slide .right a.img {
    height: 500px;
  }
  .service-page .service-1 .bottom .right {
    margin-top: 20px;
    margin-right: 20px;
  }
  .sustainablity-page .sustainablity-1 .right span.h3 {
    font-size: 20px;
  }
  .sustainablity-page .sustainablity-1 .right .slide span.h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
   
  .testimonials-page .options {
    display: none;
  }
  #banner,.inner-banner {
    margin-top: 120px;
  }
  .sustainablity-page .sustainablity-1 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .sustainablity-page .sustainablity-1 .left {
    width: 100%;
  }
  .sustainablity-page .sustainablity-1 {
    padding: 30px 0;
  }
  .sustainablity-page .sustainablity-3 {
    padding: 40px 0;
  }
  .service-page .service-1 .bottom .left .list ul li {
    font-size: 18px;
  }
  .service-page .service-1 .bottom .right .img {
    height: 200px;
  }
  .service-page .service-2 .list ul li {
    padding: 0 5px;
  }
  .service-page .service-2 .list ul {
    margin: 0 -5px;
  }
  .service-page .service-2 .list ul li .box span.h6,
  .service-page .service-4 .right .list ul li span.h6 {
    font-size: 16px;
  }
  span.h2, 
  .manufacturing-page .manufacturing-1 .right .list ul li span.h6 {
    font-size: 24px;
  }
  .inner-page .form ul li input,
  .inner-page .form ul li textarea,
  .inner-page .form ul li input[type="submit"] {
    font-size: 14px;
    padding: .5em;
  }
  .product-cat-page .slide .left {
    width: 100%;
    padding-right: 0;
    left: 0 !important;
    padding: 0 !important;
  }
  .product-cat-page .slide .right {
    display: none !important;
  }
  .product-cat-page .slide .left .text {
    max-height: none;
    margin: 1em 0;
  }
  .product-cat-page {
    padding-bottom: 50px;
  }
  .product-page .marginTop .left {
    width: 100%;
  }
  .product-page .marginTop .right {
    width: 100%;
    margin-top: 15px;
    padding-left: 0;
  }
  .inner-page #productList ul li a.img-box {
    padding: 20px 5% 0;
  }
  .product-page .product-1 {
    padding: 0 0 30px;
  }
  .inner-page .m-page {
    margin-top: 30px;
  }
  .seoBox .seoAbout .left {
    width: 100%;
    padding-right: 0;
  }
  .seoBox .seoAbout .right {
    width: 100%;
    margin-top: 20px;
  }
  .seoBox span.h3 {
    font-size: 28px;
  }
  .seoBox .seoNews .bottom .list ul li .box span.h6 {
    font-size: 16px;
  }
  .prodet-page .prodet-1 .right {
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .prodet-page .prodet-1 .left {
    width: 100%;
  }
  .prodet-page .prodet-1 .right .text {
    margin: 0;
    padding-right: 0;
    max-height: none;
  }
  .prodet-page .prodet-2 .ret {
    font-size: 16px;
  }
  .inner-page #productList ul li span.h6 {
    font-size: 14px;
  }
  .inner-page .sideBarBox .sideBarLeft {
    width: 100%;
    padding-right: 0;
  }
  .inner-page .sideBarBox .sideBarRight {
    display: none;
  }
  .prodet-page .prodet-3 .dots ul li button {
    font-size: 16px;
    width: 32px;
    height: 32px;
  }
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 18px;
  }
  .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;
  }
  .advantage-page .advantage-1 .left span.h1 {
    font-size: 60px;
  }
  .advantage-page .advantage-1 .left span.h5 {
    font-size: 16px;
  }
  .advantage-page .advantage-1 .right .text {
    margin-bottom: 1em;
  }
  .advantage-page .advantage-5 {
    padding: 30px 0;
  }
  .advantage-page .advantage-6 .list ul li .box .left .content span.h6 {
    font-size: 14px;
  }
  .advantage-page .advantage-6 .list ul li .box .left .content span.em {
    font-size: 16px;
  }
  .advantage-page .advantage-6 .list ul li .box .left {
    width: 40%;
  }
  .advantage-page .advantage-6 .list ul li .box .right {
    width: 60%;
  }
  .advantage-page .advantage-6 .dots ul li button {
    font-size: 16px;
    width: 30px;
    height: 30px;
  }
  .advantage-page .advantage-6 {
    padding-bottom: 40px;
  }
  .about-page .about-3 {
    padding-bottom: 40px;
  }
  .about-page .about-4 .list {
    margin-top: 30px;
  }
  span.txt {
    font-size: 14px;
  }
   
   
}
@media screen and (max-width: 700px) {
   .inner-banner{
     height: 220px;
   }
   .inner-banner .box .left{
     width: 100%;
     padding-right: 0;
   }
   .inner-banner .box .right{
     width: 100%;
     text-align: left;
   }
   .inner-banner .box .right .mbx{
     text-align: left;
   }
   
  .about-page .about-2 .list ul li .box .content span.h3 {
    font-size: 16px;
  }
  .about-page .about-2 .list ul li .box .content .text {
    font-size: 14px;
  }
  .about-page .about-3 .ret .right span.h3 {
    font-size: 16px;
  }
  .about-page .about-3 .ret .left .img {
    height: 180px;
  }
  .about-page .about-5 .options span,
  .testimonials-page .options span,
  .prodet-page .prodet-2 .options span {
    font-size: 12px;
    width: 140px;
  }
  .advantage-page .advantage-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .advantage-page .advantage-1 .right {
    width: 100%;
    margin-top: 20px;
  }
  .advantage-page .advantage-1 .left span.h1 {
    font-size: 40px;
  }
  .advantage-page .advantage-3 .left {
    width: 100%;
    padding-right: 0;
  }
  .advantage-page .advantage-3 .right {
    width: 100%;
    margin-top: 20px;
  }
  .advantage-page .advantage-3 .right .img {
    height: 200px;
  }
  .advantage-page .advantage-6 .list ul li .box .left {
    width: 100%;
  }
  .advantage-page .advantage-6 .list ul li .box .right {
    width: 100%;
    margin-top: 10px;
  }
  .advantage-page .advantage-6 .list ul li .box {
    display: block;
  }
   
  .contact-page .contact-1 .list ul li {
    width: 100%;
  }
  #mapContainer {
    height: 280px !important;
  }
  .faq-page .marginBox .box .right .list ul li span.title,
  .faq-page .marginBox .box .right .list ul li .text {
    font-size: 14px;
  }
  .manufacturing-page .manufacturing-3 .box {
    margin-left: 25%;
  }
  .news-page .sideBarLeft .list ul li a.img-box time {
    font-size: 14px;
  }
  .news-page .sideBarLeft .list ul li a.img-box time em {
    font-size: 14px;
  }
  .news-page .sideBarLeft .list ul li .content .text,
  .news-page .sideBarLeft .list ul li .content a.link {
    font-size: 14px;
  }
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 16px;
  }
  .newdet-page .sideBarLeft .m-link .btnBox .text {
    margin-left: 0;
    width: 100%;
  }
  .newdet-page .sideBarLeft .m-link .btnBox a.img {
    display: none;
  }
  .newdet-page .sideBarLeft .m-link a.link,
  .newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
    font-size: 14px;
  }
  .seoBox span.h3 {
    font-size: 24px;
  }
  .prodet-page .prodet-1 .left .smallImg ul li {
    padding: 5px;
  }
  .prodet-page .prodet-1 .left .smallImg ul {
    margin: -5px;
  }
  .prodet-page .prodet-1 .left .smallImg {
    padding-right: 10px;
  }
  .seoBox .seoNews .bottom .list ul li .box {
    padding: 10px;
  }
  .seoBox .seoNews .bottom .list ul li .box span.h6 {
    font-size: 14px;
    text-overflow:ellipsis;
    overflow:hidden;
    white-space:nowrap;
    width:320px;
    display:inline-block;
  }
  .seoBox .seoNews .bottom .list ul li .box time {
    font-size: 12px;
  }
  .inner-page .marginTop {
    width: 103%;
  }
  .service-page .service-1 .bottom .left .list ul li {
    font-size: 16px;
  }
  .service-page .service-2 .list ul li {
    width: 100%;
    padding: 5px;
  }
  .service-page .service-2 .list ul {
    display: block;
    margin: -5px;
  }
  .service-page .service-3 .form {
    margin-top: 20px;
  }
  .service-page .service-4 .right {
    width: 100%;
    padding-left: 0;
  }
  .service-page .service-4 .left {
    display: none;
  }
  .sustainablity-page .sustainablity-3 .list,
  .about-page .about-4 .list {
    padding: 0;
  }
  .sustainablity-page .sustainablity-1 .right .slide span.h5 {
    font-size: 16px;
  }
   .newdet-page .ui.container .content {
    font-size: 16px;
  }
  .newdet-page .ui.container .bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .prodet-page .prodet-3 .dots ul li button{
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .testimonials-page .ret .list ul li,
  .sustainablity-page .sustainablity-1 .left .list ul li {
    width: 50%;
  }
  .knowledge{
    display: none!important;
  }
  .testimonials-page .marginBox {
    padding: 30px 0;
  }
  .service-page .service-1 .bottom .left .list ul li {
    font-size: 14px;
  }
  .service-page .service-1 .bottom {
    display: block;
  }
  .service-page .service-1 .bottom .right {
    width: 100%;
  }
  .service-page .service-1 .bottom .left {
    padding-right: 0;
  }
  .service-page .service-1 .top {
    display: block;
  }
  .service-page .service-1 .top .right {
    margin-top: 10px;
  }
  .service-page .marginBox {
    padding: 30px 4%;
  }
  .product-cat-page .slide .left span.h2 {
    margin-top: -1.5em;
  }
  .seoBox .seoAbout .right .text,
  .product-page .marginTop .left .text,
  .product-cat-page .slide .left .text {
    font-size: 14px;
  }
  .seoBox .seoNews .top {
    display: block;
  }
  .seoBox .seoNews .top .right {
    margin-top: 10px;
  }
  .prodet-page .prodet-2 .ret {
    font-size: 14px;
  }
  .seoBox .seoHonor {
    padding: 25px 0;
  }
  .seoBox .seoNews {
    padding-bottom: 40px;
  }
  .newdet-page .sideBarLeft .m-link .prev {
    margin-right: 10px;
  }
  .newdet-page .sideBarLeft .m-link .next {
    margin-left: 10px;
  }
  .newdet-page .sideBarLeft time {
    margin-top: 0;
    font-size: 14px;
  }
  .newdet-page .sideBarLeft time em {
    font-size: 14px;
  } 
  .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;
  }
  .about-page .marginBox .marginTop .play {
    width: 40px;
    height: 40px;
  }
  .about-page .marginBox .marginTop .play i {
    border-left-width: 10px;
    border-top-width: 6px;
    border-bottom-width: 6px;
  }
  .inner-banner .box .right {
    margin-top: 5px;
  }
  .inner-banner .box .right,
  .inner-banner .box .right .mbx {
    text-align: left;
  }
  .news-page .ui.container ul.newslist li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .news-page .ui.container ul.newslist li .text {
    max-width: 600px;
    padding: 0 0px;
    width: 100%;
  }
  .news-page .ui.container ul.newslist li .date span {
    text-align: left;
  }
   
}
 
.seoBox .seoNews .bottom .list ul li .box a.link:hover,
.news-page .sideBarLeft .list ul li .content a.link:hover {
  color: #242424;
  border-color: #242424;
}
 
.seoBox .seoNews .bottom .list ul li .box a.link:hover:after,
.news-page .sideBarLeft .list ul li .content a.link:hover:after {
  border-color: #242424;
}

.xinwennr{
  font-size: 16px;
  line-height: 2;
  margin-bottom: 20px;
}
.erdftghjk h1{
  display: inline;
}
.fenleiyedsd{
  font-size:36px;
  line-height: 2;
  font-family:var(--font);
}
.gfdgdgd{
  text-overflow:ellipsis;
  overflow:hidden;
  white-space:nowrap;
  width:600px;
  display:inline-block;
  vertical-align: middle;
}
.vfdgdgrd{
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
}
.vfdgdgrd span{
  font-size: 20px;
  line-height: 2;
  font-family:var(--font);
}

.inner-page #productList ul li .des{
  font-size: 16px;
    line-height: 2;
   padding: 0 1em;
    position: relative;

}

.m-link{
  font-size: 16px; 
  padding-top: 15px;
}



.why-page .service-1 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.why-page .service-1 .left {
  vertical-align: middle;
}
.why-page .service-1 .left .img {
  height: 620px;
  display: block;
  -webkit-mask-image: url("../images/service-1-mask.png");
  mask-image: url("../images/service-1-mask.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.why-page .service-1 .right {
  vertical-align: middle;
  padding-left: 5%;
  padding-top: 5%;
}
.why-page .service-1 .right span.h2 {
  margin: .5em 0;
}
.why-page .service-1 .right span.h2 em {
  font-size: 0.875em;
}
.why-page .service-1 .right a.more {
  margin-top: 2em;
  font-size: 18px;
}
.why-page .service-2 {
  padding: 80px 0 10px;
  text-align: center;
}
.why-page .service-2 .list {
  margin-top: 80px;
}
.why-page .service-2 .list ul {
  margin: -13px;
}
.why-page .service-2 .list ul li {
  padding: 13px;
  text-align: center;
  overflow: hidden;
}
.why-page .service-2 .list ul li .num_box{
  position: relative;
  display: inline-block;
}
.why-page .service-2 .list ul li span.num {
  font-size: 50px;
  font-weight: 900;
  color: var(--color);
  display: inline-block;
  
  position: relative;
}
.why-page .service-2 .list ul li .num_box::before,
.why-page .service-2 .list ul li .num_box::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 500px;
  background-color: #bfbfbf;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  margin-left: .5em;
  margin-top: -0.2em;
}
.why-page .service-2 .list ul li .num_box::before{
  right: 100%;
  left: auto;
  margin-right: 1em;
  margin-left: 0;
}
.why-page .service-2 .list ul li:first-child .num_box::before{
  display: none;
}
.why-page .service-2 .list ul li:last-child .num_box::after{
  display: none;
}
.why-page .service-2 .list ul li span.h6 {
  font-weight: 700;
  font-size: 24px;
  color: #120c0b;
  margin: .5em 0;
  display: block;
  line-height: 1.2;
}
.why-page .service-2 .list ul li .text {
    line-height: 1.6;
    color: #626262;
}
.why-page .service-2 .list ul .slick-slide:last-child li span.num:after,
.why-page .service-2 .list ul li:last-child span.num:after {
  display: none;
}
.why-page .service-2 .list ul li .text{
  font-size: 18px;
}
.why-page .service-3 {
  padding: 130px 0 90px;
  text-align: center;
  color: white;
  background-image: url("../images/service-3-bg.jpg");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
.why-page .service-3 span.h2 {
  margin-bottom: 1.2em;
  line-height: 1.4;
    font-size: 48px;
}
.why-page .service-3 a.more {
    color: #ffffff;
    font-size: 18px;
}
.why-page .service-3 a.more:hover {
  color: white;
}
.why-page .service-4 {
  padding: 60px 0;
  background-color: var(--color);
  color: white;
  text-align: center;
}
.why-page .service-4 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.why-page .service-4 ul li {
  padding: 5px;
  border-right: 1px solid white;
}
.why-page .service-4 ul li span.h6 {
  font-weight: 900;
  font-size: 60px;
  display: block;
  line-height: 1.2;
}
.why-page .service-4 ul li span.h6 sub {
  font-size: 50%;
  vertical-align: baseline;
}
.why-page .service-4 ul li .text {
  color: inherit;
  margin-top: .5em;
  font-size: 18px;
}
.why-page .service-4 ul li:last-child {
  border-right: none;
}
.chainList {
  padding: 80px 0 100px;
}
.chainList .top .left {
  vertical-align: bottom;
}
.chainList .top .left span.tag {
  margin-bottom: 1em;
}
.chainList .top .right {
  vertical-align: bottom;
  text-align: right;
}
/*.chainList .top .right a.more {
  background-color: #f3f3f3;
}*/
.chainList .bottom {
  margin-top: 70px;
}
.chainList .bottom .list ul {
  margin: -10px;
}
.chainList .bottom .list ul li {
  padding: 10px;
  font-size: 22px;
  font-weight: 500;
  /*text-transform: uppercase;*/
  line-height: 1.2;
}
.chainList .bottom .list ul li a.img-box {
  display: block;
}
.chainList .bottom .list ul li span.h6 {
  display: block;
  margin-top: .6em;
  margin-bottom: 5px;
}
.chainList .bottom .list ul li time {
  display: block;
  color: var(--color);
}

#index-body .i-news {
    padding: 100px 0 110px
}

#index-body .i-news .i-title {
    max-width: 400px;
    margin: 17px auto 50px;
    text-align: center;
    color: #332f2c
}

#index-body .i-news ul {
    margin: -17px
}

#index-body .i-news ul li {
    padding: 17px
}

#index-body .i-news ul li .box {
    position: relative;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border: 1px solid #ccc;
    padding: 35px 20px
}

#index-body .i-news ul li .box .time {
    font-size: 18px;
    color: var(--color)
}

#index-body .i-news ul li .box .h4 {
    font-size: 24px;
    line-height: 30px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    margin: 17px 0 23px
}

#index-body .i-news ul li .box .des {
    font-size: 16px;
    line-height: 24px;
    color: #626262;
    margin-bottom: 23px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box
}

#index-body .i-news ul li .box .mores {
    font-size: 18px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s
}

#index-body .i-news ul li .box .mores img {
    -webkit-filter: brightness(0);
    filter: brightness(0);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    display: inline-block;
    vertical-align: baseline;
    margin-left: 6px
}

#index-body .i-news ul li .box .line i {
    position: absolute;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
    background: var(--color)
}

#index-body .i-news ul li .box .line i:nth-child(1) {
    left: 0;
    top: 0;
    width: 1px;
    height: 0
}

#index-body .i-news ul li .box .line i:nth-child(2) {
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s
}

#index-body .i-news ul li .box .line i:nth-child(3) {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0;
    -webkit-transition-delay: .4s;
    -moz-transition-delay: .4s;
    transition-delay: .4s
}

#index-body .i-news ul li .box .line i:nth-child(4) {
    right: 0;
    top: 0;
    width: 0;
    height: 1px;
    -webkit-transition-delay: .6s;
    -moz-transition-delay: .6s;
    transition-delay: .6s
}

#index-body .i-news ul li .box:hover .h4 {
    color: var(--color)
}

#index-body .i-news ul li .box:hover .mores {
    color: var(--color)
}

#index-body .i-news ul li .box:hover .mores img {
    -webkit-filter: brightness(1);
    filter: brightness(1);
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px)
}

#index-body .i-news ul li .box:hover .line i:nth-child(1) {
    height: 100%
}

#index-body .i-news ul li .box:hover .line i:nth-child(2) {
    width: 100%
}

#index-body .i-news ul li .box:hover .line i:nth-child(3) {
    height: 100%
}

#index-body .i-news ul li .box:hover .line i:nth-child(4) {
    width: 100%
}

@media screen and (max-width: 1600px){
   .why-page .service-1 {
    padding-top: 80px;
  }
   .why-page .service-2,
  .why-page .service-3 {
    padding: 80px 0;
  }
  .why-page .service-2 .list ul li span.h6 {
    font-size: 20px;
  } 
  .why-page .service-4 ul li span.h6 {
    font-size: 48px;
  }
  .why-page .service-2 .list ul li span.num {
    font-size: 36px;
  }
  .why-page .service-2 .list {
    margin-top: 50px;
  }
  .why-page .service-4 {
    padding: 40px 0;
  }
}
@media screen and (max-width: 1450px){
  .why-page .service-1 .left .img {
    height: 600px;
  }
  .why-page .service-2 .list ul li span.num {
    font-size: 32px;
  }
  .why-page .service-2 .list ul li span.h6 {
    font-size: 18px;
  }
  .why-page .service-2 .list {
    margin-top: 30px;
  } 
  .why-page .service-1 {
    padding-top: 60px;
  }
  .why-page .service-2,
  .why-page .service-3 {
    padding: 60px 0;
  } 
  .why-page .service-4 ul li span.h6 {
    font-size: 36px;
  } 
  .why-page .service-2 .list ul li span.h6{
    font-size: 16px;
  }
}
@media screen and (max-width: 1250px){
   .why-page .service-2 .list ul li span.h6 {
    font-size: 14px;
    line-height: 28px;
  }
  .why-page .service-4 ul li span.h6 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1000px){
   .why-page .service-1 .right {
    padding: 0;
    width: 100%;
  }
  .why-page .service-1 .left {
    display: none;
  }
  .why-page .service-2 .list ul li {
    width: 25%;
  }
  .why-page .service-2 .list ul li:last-child span.num:after {
    display: inline-block;
  }
  .why-page .service-2 .list ul li span.num {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px){
  .why-page .service-4 ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .why-page .service-4 ul li {
    width: 100%;
    border: none;
  } 
  .why-page .service-4 ul li span.h6 {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px){
  .why-page .service-1 {
    padding-top: 40px;
  }
  .why-page .service-2,
  .why-page .service-3 {
    padding: 40px 0;
  }
  .why-page .service-2 .list ul li {
    width: 100%;
  }

  .why-page .service-2 .list ul li .num_box:before, 
  .why-page .service-2 .list ul li .num_box:after{
    display: none;
  }
  .why-page .service-4 ul li {
    width: 50% !important;
  }
   .chainList .top .right {
    text-align: left;
    margin-top: 10px;
  }
}
.fancybox-can-drag .fancybox-content,
.fancybox-can-drag .fancybox-content .fancybox-image,
.fancybox-image,
.fancybox-can-zoomIn .fancybox-content .fancybox-image{
  background: #ececec;
}



.aft02 {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden
}

.aft02 .bg_fix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 690px
}

.aft02 .bg_fix:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    position: absolute;
    left: 0;
    top: 0
}

.aft02 .bg_fix img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.aft02 .top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 47px;
    z-index: 1;
    position: relative
}

.aft02 .top .hu_h3 {
    color: #fff;
    font-family: var(--font);
}

.aft02 .top p {
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    color: #fff;
    margin-top: 10px
}

.aft02 .top .line {
    height: 75px;
    width: 1px;
    background-color: rgba(255,255,255,.4);
    margin: 28px 0;
    position: relative
}

.aft02 .top .line:after {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    animation: 2s linear .5s infinite hua2
}

@keyframes hua2 {
    from {
        top: 0
    }

    to {
        top: 95%
    }
}

.aft02 .top h4 {
    color: #fff;
    font-family: var(--font);
}

.aft02 .botF {
    position: relative
}

.aft02 .botF .fa {
    background-image: none;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 74px;
    color: #cbcbcb;
    outline: none
}

.aft02 .botF .fa:hover {
    color: var(--color)
}

.aft02 .bot {
    position: relative;
    overflow: hidden;
    margin: auto
}
.aft02 .bot .swiper-slide{
  padding: 15px 10px;
}
.aft02 .bot .box {
    background-color: #fff;
    padding: 50px 30px 138px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgb(102 102 102/30%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.aft02 .bot .box .icon {
    border-radius: 50%;
    position: relative;
    height: 111px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 111px
}

.aft02 .bot .box:hover .icon:before {
    animation: img01anime 10s 0s linear infinite
}

.aft02 .bot .box:hover .icon:after {
    animation: img02anime 10s 0s linear infinite
}

.aft02 .bot .box .icon:before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1.6px dashed var(--color)
}

.aft02 .bot .box .icon:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.6px dashed var(--color)
}

@keyframes img01anime {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes img02anime {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(-360deg)
    }
}

.aft02 .bot .box .icon img {
    width: 56px;
    transition: 0s
}

.aft02 .bot .box h4 {
    font-size: 24px;
    font-family: 'Montserrat-SemiBold';
    color: #333;
    margin-bottom: 20px;
    margin-top: 54px;
    min-height: 72px;
}

.aft02 .bot .box h5 {
    width: 239px;
    font-size: 18px;
    position: relative;
    color: #666;
    text-align: center;
    line-height: 26px;
    height: 52px
}

.aft02 .bot .box h5:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    background-color: var(--color);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0
}

.aft02 .bot .box p {
    padding: 0 40px;
    font-size: 18px;
    height: 70px
}

.aft02 .bot .box:hover h5:after {
    background-color: #fff
}

.aft02 .bot .box:hover h4,.aft02 .bot .box:hover h5,.aft02 .bot .box:hover p {
    color: #fff
}

.aft02 .bot .box:hover .icon img {
    filter: grayscale(10) brightness(10)
}

.aft02 .bot .box:hover .icon,.aft02 .bot .box:hover .icon:before,.aft02 .bot .box:hover .icon:after {
    border-color: #fff
}

.aft02 .bot .box:hover {
    background-color: var(--color)
}

.aft02 .bot .aft02Swiper {
    margin: auto
}

.aft02 .bot {
    margin: auto;
    padding: 22px 0
}

.aft03 {
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.aft03 .icenter2 {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.aft03 .icenter2 .le {
    overflow: hidden;
    position: relative;
    width: 45%;
    height: 695px
}

.aft03 .icenter2 .le:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.5);
    content: '';
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0);
    z-index: 1
}

.aft03 .icenter2 .le:hover:before {
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,115%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,115%,0)
}

.aft03 .icenter2 .le img {
    height: 100%
}

.aft03 .icenter2 .le:hover img {
    transform: scale(1.1)
}

.aft03 .icenter2 .ri {
    width: 50%
}

.aft03 .icenter2 .ri>ul {
    margin: 20px 0 0
}

.aft03 .icenter2 .ri>ul li {
    position: relative;
    padding-left: 15px;
    font-size: 18px;
    color: #666;
    line-height: 30px
}

.aft03 .icenter2 .ri>ul li:before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #666;
    position: absolute;
    left: 0;
    top: 13px;
    content: ""
}

.aft03 dl dd {
    padding-top: 60px;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #d5d5d5
}

.aft03 dl dd .icon {
    width: 86px;
    margin-right: 58px
}

.aft03 dl dd .text h4 {
    position: relative;
    padding-bottom: 0;
    font-size: 18px;
    color: #333;
    width: fit-content;
    margin-bottom: 10px
}

.aft03 dl dd .text h4 strong {
    font-size: 70px;
    font-weight: 700
}

.aft03 dl dd .text h4:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color)
}

.aft03 dl dd .text p {
    font-size: 18px;
    color: #666
}

.custom-2 .ui .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.custom-2 .ui .top .left {
    padding-right: 65px
}

.custom-2 .ui .top .left .h3 {
    padding-left: 35px;
    border-left: 3px solid var(--color)
}

.custom-2 .ui .top .left p {
    line-height: 2;
    margin-top: 35px
}

.custom-2 .ui .bottom {
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px
}

.custom-2 .ui .bottom .left {
    padding-right: 80px
}

.custom-2 .ui .bottom .left p {
    max-width: 600px;
    line-height: 1.8;
    margin-top: 45px
}

.custom-2 .ui .bottom .right ul.list3 li:hover {
    background: #f3f3f3;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all
}

.custom-2 .ui .bottom .right ul.list3 li .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 65px 15px 28px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #eee
}

.custom-2 .ui .bottom .right ul.list3 li .top em {
    margin-left: 25px;
    font-family: "rom"
}

.custom-2 .ui .bottom .right ul.list3 li .top i.fr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px
}

.custom-2 .ui .bottom .right ul.list3 li .content {
    padding: 10px 30px 20px;
    line-height: 1.8;
    display: none;
    font-size: 16px
}

@media screen and (max-width: 1250px) {
    .font-48 {
        font-size:30px
    }

    .custom-2 .ui .bottom .left {
        padding-right: 0
    }

    .font-36 {
        font-size: 28px
    }

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

@media screen and (max-width: 1000px) {
    .font-30 {
        font-size:18px;
        line-height: 32px
    }

    .custom-1 .btm ul.list2 li.item {
        width: 120px;
        height: 120px
    }

    .custom-2 .ui .bottom .right {
        padding-right: 0
    }

    .custom-2 .ui .bottom {
        padding: 30px 25px
    }
}

@media screen and (max-width: 700px) {
    .font-40 {
        font-size:28px
    }

    .font-20 {
        font-size: 14px
    }

    .custom-2 .ui .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .custom-2 .ui .top .left {
        padding-right: 0;
        width: 100%
    }

    .custom-2 .ui .top .right {
        width: 100%
    }

    .custom-2 .ui .bottom .right ul.list3 li .top {
        flex-wrap: nowrap;
        font-size: 16px
    }

    .custom-2 .ui .bottom .left {
        padding-right: 0;
        width: 100%
    }

    .custom-2 .ui .bottom .right {
        padding-right: 0;
        width: 100%;
        margin-top: 40px
    }
}

@media screen and (max-width: 500px) {
    .font-40 {
        font-size:20px
    }

    .font-48 {
        font-size: 24px;
        line-height: 40px
    }

    .font-36 {
        font-size: 24px
    }
}

.contact2-page .marginBox {
    padding-top: 0
}

.contact2-page .contact-1 {
    padding: 150px 0 110px;
    text-align: center
}

.contact2-page .contact-1 .text {
    font-size: 18px;
    color: #8e8e8e;
    line-height: 1.6;
    max-width: 650px;
    display: block;
    margin: 1em auto 3em
}

.contact2-page .contact-1 .list ul {
    margin: -20px;
    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
}

.contact2-page .contact-1 .list ul li {
    padding: 20px
}

.contact2-page .contact-1 .list ul li .box {
    padding: 35px 5% 35px;
    border: 1px solid #bfbfbf;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    height: 100%;
    position: relative;
    top: 0
}

.contact2-page .contact-1 .list ul li .box i {
    display: block
}

.contact2-page .contact-1 .list ul li .box i img {
    display: block;
    margin: 0 auto
}

.contact2-page .contact-1 .list ul li .box span.h6 {
    font-weight: 500;
    font-size: 24px;
    color: #242424;
    margin: 1em 0 .5em;
    display: block
}

.contact2-page .contact-1 .list ul li .box p {
    font-size: 18px;
    color: #8e8e8e;
    line-height: 2
}

.contact2-page .contact-1 .list ul li .box:hover {
    border-color: var(--color);
    top: -20px
}

.contact2-page .map {
    position: relative;
    z-index: 1
}

.contact2-page .form ul {
    margin: -15px -7px
}

.contact2-page .form ul li {
    padding: 15px 7px
}

.contact2-page .form ul li input,.contact2-page .form ul li textarea {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: .6em 1em;
    border: 1px solid #bfbfbf
}

.contact2-page .form ul li input::-webkit-input-placeholder,.contact2-page .form ul li textarea::-webkit-input-placeholder {
    color: #8e8e8e
}

.contact2-page .form ul li input:-moz-placeholder,.contact2-page .form ul li textarea:-moz-placeholder {
    color: #8e8e8e
}

.contact2-page .form ul li input::-moz-placeholder,.contact2-page .form ul li textarea::-moz-placeholder {
    color: #8e8e8e
}

.contact2-page .form ul li input:-ms-input-placeholder,.contact2-page .form ul li textarea:-ms-input-placeholder {
    color: #8e8e8e
}

.contact2-page .form ul li input::placeholder,.contact2-page .form ul li textarea::placeholder {
    color: #8e8e8e
}

.contact2-page .form ul li textarea {
    height: 150px
}

.contact2-page .form ul li input[type=submit] {
    border: none;
    background: var(--color);
    color: #fff;
    font-size: 20px;
    font-family: 'rom';
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.contact2-page .form ul li input[type=submit]:hover {
    background: #242424
}

.contact2-page .form ul li.wid-100 {
    width: 100%
}
.related-application{
  margin-bottom: 80px;
}
.related-application .list ul{
  margin: 0 -10px;
}
.related-application .list ul li{
  padding: 0 10px;
}
.related-application .list ul li .box .img-box{
    display: block;
}
.related-application .list ul li .box h4{
  font-size: 24px;
  font-family: var(--font);
  margin-top: 15px;
}
.pt-90{
  padding-top: 90px;
}
@media screen and (max-width: 1600px) {
    .contact2-page .form ul li {
        padding:6px
    }

    .contact2-page .form ul {
        margin: -6px
    }

    .contact2-page .form ul li input,.contact2-page .form ul li textarea,.contact2-page .form ul li input[type=submit] {
        font-size: 16px
    }
}

@media screen and (max-width: 1000px) {
  .contact2-page .form ul li input,.contact2-page .form ul li textarea,.contact2-page .form ul li input[type=submit] {
    font-size:14px;
    padding: .5em
  }
  .aft02 {
    padding: 80px 0;
    
  }
  .aft03 .icenter2 .le {
      width: 100%;
      height: auto;
  }
  .aft03 .icenter2{
    flex-direction: column;
  }
  .aft03 .icenter2 .ri {
    width: 100%;
    margin-top: 60px;
  } 
  .aft02 .bg_fix {
    height: 100%;
  }
  .aft02 .bot .box p {
    height: auto;
  }
  .aft02 .bot .box {
    padding: 50px 30px;
  }
  .custom-2 .ui .bottom {
    padding: 30px 0;
  }
  .custom-2 .ui .bottom {
    padding: 0;
    margin: 0;
  }
  .contact2-page .contact-1 {
    padding: 80px 0;
  }
  .custom-2 .ui .bottom .right ul.list3 li .top {
    padding: 15px 65px 15px 15px;
  }
}