@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-Regular';
  src: url(../fonts/Montserrat-Regular.ttf) format('truetype'), url(../fonts/Montserrat-Regular.eot) format('eot'), url(../fonts/Montserrat-Regular.woff) format('woff'), url(../fonts/Montserrat-Regular.woff2) format('woff2');
}
@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-Bold';
  src: url(../fonts/Montserrat-Bold.ttf) format('truetype'), url(../fonts/Montserrat-Bold.eot) format('eot'), url(../fonts/Montserrat-Bold.woff) format('woff'), url(../fonts/Montserrat-Bold.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: '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: 'Poppins-Rugular';
  src: url(../fonts/Poppins-Rugular.ttf) format('truetype'), url(../fonts/Poppins-Rugular.eot) format('eot'), url(../fonts/Poppins-Rugular.woff) format('woff'), url(../fonts/Poppins-Rugular.woff2) format('woff2');
}
input::-webkit-input-placeholder {
  color: #d6d6d6;
}
textarea::-webkit-input-placeholder {
  color: #d6d6d6;
}
input::-moz-placeholder {
  color: #d6d6d6;
}
input:-moz-placeholder {
  color: #d6d6d6;
}
input:-ms-input-placeholder {
  color: #d6d6d6;
}
body {
  margin: 0 auto;
  padding: 0;
  --color: #ed1c24;
  font-family: 'Montserrat-Regular';
  --font: 'Montserrat-Bold';
  background-color: white;
  color: black;
  max-width: 1920px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1630px;
  margin: 0 auto;
  position: relative;
}


#qrcode{
  position: fixed;
  right:20px;
  bottom:190px;
  width: 60px;
  height: 60px;
  border-radius:50%;
  background-color: var(--color);
  display: flex;
  justify-content: center;
  align-items: center; 
  z-index: 50;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
#qrcode i{
  color: white;
  font-size: 24px;
}
#qrcode .box{
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 10px;
  padding: 15px;
  background-color: white;
  right: 120%;
  top:50%;
  transform: translateY(-50%) rotateY(-90deg);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#qrcode .box #ewm img,
#qrcode .box #ewm canvas{
  width: 100px;
  height:100px;
  border: 8px solid white; 
}
#qrcode:hover .box{
  opacity:1;
  transform: translateY(-50%) rotateY(0deg);
}

#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: #000;
}
#header.active {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#header .nav-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 95px;
}
#header .nav-t .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#header .nav-t .right form {
  margin-right: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#header .nav-t .right form input[type='text'] {
  width: 470px;
  height: 50px;
  padding: 0 20px;
  font-size: 16px;
  border: none;
  background-color: white;
}
#header .nav-t .right form input[type='submit'] {
  width: 50px;
  height: 50px;
  background-color: var(--color);
  border: none;
  background-image: url('../images/search.png');
  background-repeat: no-repeat;
  background-position: center;
}
#header .nav-t .right .h-inquiry {
  width: 190px;
  height: 50px;
  background-color: var(--color);
  color: white;
  border: 1px solid var(--color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-family: var(--font);
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
}
#header .nav-t .right .h-inquiry:hover {
  background-color: transparent;
  color: var(--color);
  border-color: var(--color);
}
#header .nav {
  position: relative;
  height: 75px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 90px;
  font-size: 16px;
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  text-transform: uppercase;
  font-family: 'Montserrat-Bold';
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  border-color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 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;
  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;
  white-space: nowrap;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu li:last-child {
  margin-right: 0;
}


#header .nav .ui.menu .menu-box ul.menu > li ul.sub-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 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 .right {
  margin-left: 220px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box {
  margin-left: 30px;
}
.language-box .zhuyu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box .zhuyu span {
  font-size: 18px;
  font-family: 'Montserrat-Medium';
  margin: 0 8px;
  color: white;
}
.language-box .zhuyu i {
  font-size: 20px;
  color: white;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#banner {
  position: relative;
  margin-top: 100px;
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
}
#banner .banner-content ul li .content .box {
  color: white;
}
#banner .banner-content ul li .content .box p {
  font-size: 20px;
  font-family: 'Montserrat-ExtraBold';
  margin: 25px 0 45px;
}
#banner .banner-content ul li .content .box h2 {
  font-size: 60px;
  line-height: 1.2;
  font-family: 'Montserrat-ExtraBold';
  text-transform: uppercase;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#banner .banner-content ul li .content .box h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 15px;
  display: block;
  background-color: var(--color);
  z-index: -1;
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.more {
  display: block;
  padding: 20px 40px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: var(--color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid transparent;
}
.more:hover {
  background-color: transparent;
  border-color: var(--color);
}
.more:hover span {
  color: var(--color);
}
.more span {
  display: block;
  position: relative;
  z-index: 5;
  font-size: 16px;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-family: var(--font);
}
.h-title h3 {
  font-size: 36px;
  font-family: 'Montserrat-ExtraBold';
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.h-title h3::before {
  content: '';
  display: block;
  width: 70px;
  height: 8px;
  background-color: var(--color);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -15px;
}
.h-title.h-left h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.h-title.h-left h3::before {
  width: 8px;
  height: 70px;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}
@-webkit-keyframes img_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-moz-keyframes img_scale {
  0% {
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes img_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-webkit-keyframes img_rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-moz-keyframes img_rotate {
  0% {
    -moz-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes img_rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.tit-font {
  font-family: 'Montserrat-SemiBold';
}
#index-body .category {
  padding: 140px 0 0;
  position: relative;
}
#index-body .category .bottom {
  margin-top: 45px;
  position: relative;
}
#index-body .category .bottom .imgs {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#index-body .category .bottom .imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .bottom .imgs .img.active img {
  z-index: 1;
  opacity: 1;
}
#index-body .category .bottom .category-content {
  position: relative;
  z-index: 5;
}
#index-body .category .bottom .category-content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .category .bottom .category-content ul li {
  padding: 0 70px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  height: 740px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .category .bottom .category-content ul li .img {
  position: absolute;
  left: 25%;
  bottom: -20px;
  width: 485px;
  -webkit-transform: rotateY(90deg);
  -moz-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  z-index: 10;
}
#index-body .category .bottom .category-content ul li:last-child .img {
  left: unset;
  right: 25%;
  -webkit-transform: rotateY(-90deg);
  -moz-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
}
#index-body .category .bottom .category-content ul li.active {
  background-color: rgba(237, 28, 36, 0.4);
}
#index-body .category .bottom .category-content ul li.active .img {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
#index-body .category .bottom .category-content ul li.active .box {
  bottom: unset;
  top: 70px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#index-body .category .bottom .category-content ul li.active .box .btn {
  opacity: 1;
}
#index-body .category .bottom .category-content ul li .box {
  border-top: 1px solid white;
  position: absolute;
  left: 50%;
  top: 63%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: -webkit-calc(100% - 140px);
  width: -moz-calc(100% - 140px);
  width: calc(100% - 140px);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .bottom .category-content ul li .box h4 {
  font-family: 'Montserrat-Bold';
  color: white;
  margin: 15px 0 25px;
  line-height: 2;
}
#index-body .category .bottom .category-content ul li .box .btn {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product {
  position: relative;
  padding: 165px 0 150px;
}
#index-body .product .bottom ul {
  margin: 0 40px;
}
#index-body .product .bottom ul li {
  padding: 0 40px;
}
#index-body .product .bottom ul li:hover .img {
  border-color: rgba(0, 0, 0, 0.2);
}
#index-body .product .bottom ul li:hover .img .btn {
  opacity: 1;
}
#index-body .product .bottom ul li .img {
  border: 1px solid transparent;
  display: block;
  width: 100%;
  height: 310px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
#index-body .product .bottom ul li .img .btn {
  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%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .bottom ul li .img img {
  max-width: 85%;
}
#index-body .product .bottom ul .slick-arrow {
  width: 60px;
  height: 60px;
  background-color: #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -50px;
  z-index: 10;
  color: transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
}
#index-body .product .bottom ul .slick-arrow::before {
  content: "\f104";
  font-family: 'FontAwesome';
  font-size: 20px;
  color: white;
  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%);
}
#index-body .product .bottom ul .slick-arrow:hover {
  background-color: var(--color);
}
#index-body .product .bottom ul .slick-next {
  right: -50px;
  left: unset;
}
#index-body .product .bottom ul .slick-next::before {
  content: "\f105";
}
#index-body .about {
  background: url('../images/about-bg.png') no-repeat;
  background-position: left 10px;
  position: relative;
  padding: 0 0 95px;
}
#index-body .about .about-content .left {
  width: 53%;
}
#index-body .about .about-content .left h4 {
  margin: 25px 0 100px;
}
#index-body .about .about-content .left .con {
  margin-bottom: 90px;
  line-height: 1.8;
}
#index-body .about .about-content .right {
  width: 47%;
  padding-top: 40px;
}
#index-body .about .about-content .right .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .advantage {
  padding: 140px 0 160px;
  background-color: #f0f0f0;
}
#index-body .advantage h3 {
  font-size: 30px;
  font-family: 'Montserrat-ExtraBold';
  text-align: center;
}
#index-body .advantage .top {
  margin: 65px 0 50px;
}
#index-body .advantage .top ul {
  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;
}
#index-body .advantage .top ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 60px;
  cursor: pointer;
}
#index-body .advantage .top ul li:hover img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}
#index-body .advantage .top ul li:hover h4 {
  color: var(--color);
}
#index-body .advantage .top ul li img {
  -webkit-filter: brightness(0) invert(0.6);
  filter: brightness(0) invert(0.6);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#index-body .advantage .bottom ul {
  margin: 0 -5px;
}
#index-body .advantage .bottom ul.active {
  display: block;
}
#index-body .advantage .bottom ul li {
  padding: 0 5px;
}
#index-body .service {
  padding: 135px 0 115px;
  background: url('../images/service-bg.jpg') no-repeat;
  background-size: cover;
}
#index-body .service .h-title h3 {
  color: white;
}
#index-body .service .service-content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 80px -10px 0;
}
#index-body .service .service-content ul li {
  width: 33.333333%;
  padding: 10px;
}
#index-body .service .service-content ul li:nth-child(1) span:nth-child(1),
#index-body .service .service-content ul li:nth-child(4) span:nth-child(1),
#index-body .service .service-content ul li:nth-child(1) span:nth-child(3),
#index-body .service .service-content ul li:nth-child(4) span:nth-child(3) {
  display: none;
}
#index-body .service .service-content ul li:nth-child(3) span:nth-child(2),
#index-body .service .service-content ul li:nth-child(6) span:nth-child(2),
#index-body .service .service-content ul li:nth-child(3) span:nth-child(4),
#index-body .service .service-content ul li:nth-child(6) span:nth-child(4) {
  display: none;
}
#index-body .service .service-content ul li .box {
  height: 320px;
  padding: 45px 70px 45px 90px;
  position: relative;
  color: white;
}
#index-body .service .service-content ul li .box span {
  width: 20px;
  height: 20px;
  position: absolute;
  border: 1px solid var(--color);
}
#index-body .service .service-content ul li .box span:nth-child(1) {
  left: 0;
  top: 0;
  border-right: none;
  border-bottom: none;
}
#index-body .service .service-content ul li .box span:nth-child(2) {
  right: 0;
  top: 0;
  border-left: none;
  border-bottom: none;
}
#index-body .service .service-content ul li .box span:nth-child(3) {
  left: 0;
  bottom: 0;
  border-right: none;
  border-top: none;
}
#index-body .service .service-content ul li .box span:nth-child(4) {
  right: 0;
  bottom: 0;
  border-left: none;
  border-top: none;
}
#index-body .service .service-content ul li .box h4 {
  margin: 30px 0 20px;
}
#index-body .service .service-content ul li .box .con {
  line-height: 2;
  font-family: 'Montserrat-Light';
}
#index-body .application {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 785px;
}
#index-body .application .left {
  width: 415px;
  height: 100%;
  background-color: var(--color);
  position: relative;
}
#index-body .application .left .h-title {
  position: relative;
  top: 170px;
  left: 215px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
#index-body .application .left .h-title h3 {
  color: white;
}
#index-body .application .left .h-title h3::before {
  background-color: white;
  bottom: -30px;
  top: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  transform: unset;
  left: 0;
}
#index-body .application .right {
  width: -webkit-calc(100% - 415px);
  width: -moz-calc(100% - 415px);
  width: calc(100% - 415px);
  padding: 85px 0 85px 30px;
  height: 100%;
}
#index-body .application .right ul {
  margin: 0 -150px 0 -15px;
}
#index-body .application .right ul li {
  padding: 0 15px;
  height: 615px;
}
#index-body .application .right ul li .img {
  width: 100%;
  height: 100%;
}
#index-body .application .right ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .parnter {
  padding: 115px 0 0;
  background: url('../images/parnter-bg.png') no-repeat;
  background-position: center 60px;
}
#index-body .parnter .img {
  margin-top: 45px;
  text-align: center;
}
#index-body .news {
  position: relative;
  padding: 160px 0;
}
#index-body .news .news-content {
  max-width: 1270px;
}
#index-body .news .news-content ul {
  margin: 70px -60px 0;
}
#index-body .news .news-content ul li {
  padding: 0 60px;
  position: relative;
}
#index-body .news .news-content ul li .text {
  background-color: white;
}
#index-body .news .news-content ul li .text:hover .bot {
  border-color: var(--color);
}
#index-body .news .news-content ul li .text h4 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .news .news-content ul li .text p {
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.8;
  margin: 35px 0;
}
#index-body .news .news-content ul li .text .btn {
  width: 160px;
  height: 60px;
  background-color: transparent;
  line-height: 60px;
  text-align: center;
  font-family: 'Montserrat-SemiBold';
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
#index-body .news .news-content ul li .text .btn:hover {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
#index-body .news .news-content ul li .text .date {
  font-family: 'Montserrat-SemiBold';
  font-size: 16px;
  margin-top: 45px;
}
#index-body .news .news-content ul li .text .date span {
  opacity: 0.6;
}
#index-body .news .news-content ul li .text .date span:first-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#index-body .news .news-content ul li .text .date span:first-child::after {
  content: '';
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  display: inline-block;
  margin-left: 10px;
}
#footer {
  position: relative;
  background-color: #1b1b1b;
}
#footer .footer-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
#footer .footer-t .footer-t-gird {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 85px 0 55px;
}
#footer .footer-t .footer-t-gird .qcode.t-list {
  width: 360px;
}
#footer .footer-t .footer-t-gird .qcode.t-list form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
#footer .footer-t .footer-t-gird .qcode.t-list form input[type='text'] {
  width: 49%;
  height: 60px;
  border: none;
  background-color: #5a5a5a;
  color: white;
  font-size: 17px;
  padding: 0 20px;
  margin-bottom: 15px;
}
#footer .footer-t .footer-t-gird .qcode.t-list form input[name='content'],
#footer .footer-t .footer-t-gird .qcode.t-list form input[name='mail'] {
  width: 100%;
}
#footer .footer-t .footer-t-gird .qcode.t-list form textarea {
  width: 100%;
  height: 90px;
  padding: 10px 20px;
  background-color: #5a5a5a;
  color: white;
  font-size: 17px;
  border: none;
  margin-bottom: 15px;
}
#footer .footer-t .footer-t-gird .qcode.t-list form input::-webkit-input-placeholder,
#footer .footer-t .footer-t-gird .qcode.t-list form textarea::-webkit-input-placeholder {
  color: white;
}
#footer .footer-t .footer-t-gird .qcode.t-list form .submit {
  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-left: auto;
}
#footer .footer-t .footer-t-gird .qcode.t-list form .submit::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  margin-left: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .qcode.t-list form .submit:hover input[type='submit'] {
  color: var(--color);
}
#footer .footer-t .footer-t-gird .qcode.t-list form .submit:hover::after {
  background-color: var(--color);
}
#footer .footer-t .footer-t-gird .qcode.t-list form .submit input[type='submit'] {
  font-size: 20px;
  font-family: 'Montserrat-Medium';
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .qcode.t-list .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#footer .footer-t .footer-t-gird .qcode.t-list .share a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: white;
  margin-right: 24px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .qcode.t-list .share a i {
  color: #333;
  font-size: 24px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .qcode.t-list .share a:hover {
  background-color: var(--color);
}
#footer .footer-t .footer-t-gird .qcode.t-list .share a:hover i {
  color: white;
}
#footer .footer-t .footer-t-gird .qcode.t-list .share a:last-child {
  margin-right: 0;
}
#footer .footer-t .footer-t-gird .t-list.contact {
  max-width: 320px;
}
#footer .footer-t .footer-t-gird .t-list.contact ul {
  margin-top: 55px;
}
#footer .footer-t .footer-t-gird .t-list.contact ul li {
  margin-bottom: 40px;
}
#footer .footer-t .footer-t-gird .t-list.contact ul li:last-child {
  margin-bottom: 0;
}
#footer .footer-t .footer-t-gird .t-list.contact ul li span {
  display: block;
  line-height: 1.6;
}
#footer .footer-t .footer-t-gird .t-list.contact ul li span:first-child {
  margin-bottom: 5px;
}
#footer .footer-t .footer-t-gird .t-list.link span {
  margin-bottom: 20px;
}
#footer .footer-t .footer-t-gird .t-list.link span a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .t-list.link span:hover a {
  color: var(--color);
}
#footer .footer-t .footer-t-gird .t-list {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#footer .footer-t .footer-t-gird .t-list .qc-img img,
#footer .footer-t .footer-t-gird .t-list .qc-img canvas {
  width: 40px;
  height: auto;
  border: 2px solid #fff;
}
#footer .footer-t .footer-t-gird .t-list h4 {
  font-size: 24px;
  font-family: Montserrat-Bold;
  margin-bottom: 40px;
  color: white;
  text-transform: uppercase;
}
#footer .footer-t .footer-t-gird .t-list span {
  font-size: 18px;
  color: white;
  line-height: 1.4;
  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;
  opacity: 0.9;
  font-family: 'Poppins-Rugular';
}
#footer .footer-b .footer-b-box {
  height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .footer-b .footer-b-box span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}
#footer .footer-b .footer-b-box span:first-child a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-b .footer-b-box span:first-child a:hover {
  color: white;
}
#footer .footer-b .footer-b-box img {
  width: 260px;
  height: auto;
  padding-top: 3px;
  margin-left: 5px;
  opacity: 0.3;
}
@media (max-width: 1650px) {
  #header .nav .ui.menu .right{
    margin-left: 30px;
  }
  .ui.container {
    width: 1400px;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 50px;
  }
  #index-body .category .bottom .category-content ul li {
    padding: 0 15px;
  }
  #index-body .category .bottom .category-content ul li .box {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
  }
  #index-body .product .container {
    width: 85%;
  }
  #index-body .product .bottom ul li .img {
    height: auto;
    padding: 60px 0;
  }
  #index-body .product .bottom ul .slick-next {
    right: -80px;
  }
  #index-body .product .bottom ul .slick-prev {
    left: -80px;
  }
  #index-body .product .bottom ul .slick-arrow {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
  #index-body .product .bottom ul li h4 {
    margin-top: 30px;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 50px;
  }
  #index-body .category .bottom .category-content ul li .img {
    bottom: 10%;
    max-width: 300px;
  }
  #index-body .category .bottom .category-content ul li .box h4 {
    line-height: 1.6;
    font-size: 24px;
  }
  #index-body .category .bottom .category-content ul li {
    height: 500px;
  }
  #index-body .category .bottom .category-content ul li .box {
    top: 80%;
  }
  #index-body .product {
    padding: 85px 0;
  }
  #index-body .about .about-content .left h4 {
    margin: 25px 0;
  }
  #index-body .about .about-content .left .con {
    margin-bottom: 40px;
  }
  #index-body .service .service-content ul li .box {
    padding: 45px 30px 45px;
  }
  #index-body .service .service-content ul li .box .con {
    line-height: 1.6;
  }
  #index-body .news {
    padding: 80px 0;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
      #header .nav .ui.menu .menu-box ul.menu > li {
        margin-right: 30px;
    }
  #footer .footer-t .footer-t-gird .t-list span {
    font-size: 16px;
  }
  #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 {
    width: 50%;
    max-width: 50%;
    margin: 20px 0;
  }
  #footer .footer-t .footer-t-gird .qcode.t-list {
    width: 100%;
  }
  #header .nav .ui.menu .right {
    margin-left: 0;
  }
  #index-body .category .bottom .category-content ul li .box h4 {
    font-size: 16px;
  }
  #index-body .product .bottom ul {
    margin: 0 -10px;
  }
  #index-body .product .bottom ul li {
    padding: 0 10px;
  }
  #index-body .product .bottom ul .slick-next {
    right: -50px;
  }
  #index-body .product .bottom ul .slick-prev {
    left: -50px;
  }
  #index-body .advantage .top ul li {
    margin: 0 20px;
  }
  #index-body .application .left {
    width: 285px;
  }
  .h-title h3 {
    font-size: 30px;
  }
  #index-body .application .left .h-title {
    top: 170px;
    left: 55%;
  }
  #index-body .application .right {
    width: -webkit-calc(100% - 285px);
    width: -moz-calc(100% - 285px);
    width: calc(100% - 285px);
    padding: 55px 0 55px 30px;
  }
  #index-body .application {
    height: 600px;
  }
  #index-body .application .right ul li {
    height: 510px;
  }
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block !important;
  }
  .ui.container,
  #index-body .product .container {
    width: 700px;
  }
  #index-body .category .bottom .category-content ul li.active{
    background-color: transparent;
  }
  #index-body .category .bottom .category-content ul li:hover {
    background-color: rgba(237, 28, 36, 0.4);
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 40px;
  }
  #index-body .about .about-content .left .con {
    padding-right: 0;
  }
  #banner .banner-content ul li .content .box p {
    font-size: 20px;
    margin: 25px 0;
  }
  #footer .footer-t .footer-t-gird .t-list.link {
    display: none;
  }
  #footer .footer-b .footer-b-box {
    height: auto;
    padding: 15px 0;
  }
  #footer .footer-b .footer-b-box span {
    text-align: center;
  }
  #index-body .category .bottom .category-content ul {
    display: block;
  }
  #index-body .category .bottom .category-content ul li .img {
    max-width: 85%;
    left: 50%;
    -webkit-transform: translateX(-50%) rotateY(-90deg);
    -moz-transform: translateX(-50%) rotateY(-90deg);
    transform: translateX(-50%) rotateY(-90deg);
  }
  #index-body .category .bottom .category-content ul li:last-child .img {
    right: unset;
    left: 50%;
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(-50%) rotateY(-90deg);
    -moz-transform: translateX(-50%) rotateY(-90deg);
    transform: translateX(-50%) rotateY(-90deg);
  }
  #index-body .category .bottom .category-content ul li:hover .img {
    -webkit-transform: translateX(-50%) rotateY(0deg);
    -moz-transform: translateX(-50%) rotateY(0deg);
    transform: translateX(-50%) rotateY(0deg);
  }
  #index-body .about .about-content .left {
    width: 100%;
    padding-right: 0;
  }
  #index-body .about .about-content .right {
    width: 100%;
    margin-top: 60px;
  }
  #index-body .advantage {
    padding: 85px 0;
  }
  #index-body .service .service-content ul li {
    width: 50%;
  }
  #index-body .service .service-content ul li:nth-child(1) span:nth-child(1),
  #index-body .service .service-content ul li:nth-child(4) span:nth-child(1),
  #index-body .service .service-content ul li:nth-child(1) span:nth-child(3),
  #index-body .service .service-content ul li:nth-child(4) span:nth-child(3) {
    display: block;
  }
  #index-body .service .service-content ul li:nth-child(3) span:nth-child(2),
  #index-body .service .service-content ul li:nth-child(6) span:nth-child(2),
  #index-body .service .service-content ul li:nth-child(3) span:nth-child(4),
  #index-body .service .service-content ul li:nth-child(6) span:nth-child(4) {
    display: block;
  }
}
@media (max-width: 700px) {
  .ui.container,
  #index-body .product .container {
    width: 500px;
  }
  #banner .banner-content ul li .content .box .more {
    display: none;
  }
  #index-body .category .bottom .category-content ul li {
    height: 320px;
  }
  #banner .banner-content ul li .content .box p {
    margin-bottom: 0;
  }
  #index-body .advantage,
  #index-body .parnter,
  #index-body .application,
  #index-body .service {
    display: none;
  }
  .h-title h3 {
    font-size: 24px;
  }
  #footer .footer-t .footer-t-gird .t-list {
    width: 100%;
    max-width: 100%;
  }
  #index-body .category .bottom .category-content ul li .img {
    right: 15px !important;
    left: unset !important;
    max-width: 50% !important;
    -webkit-transform: translate(0) rotateY(-90deg) !important;
    -moz-transform: translate(0) rotateY(-90deg) !important;
    transform: translate(0) rotateY(-90deg) !important;
    -webkit-transform-origin: right !important;
    -moz-transform-origin: right !important;
    -ms-transform-origin: right !important;
    transform-origin: right !important;
  }
  #index-body .category .bottom .category-content ul li:hover .img {
    -webkit-transform: translateX(0) rotateY(0deg) !important;
    -moz-transform: translateX(0) rotateY(0deg) !important;
    transform: translateX(0) rotateY(0deg) !important;
  }
  #footer .footer-t .footer-t-gird .qcode.t-list form input[type='text'] {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .ui.container,
  #index-body .product .container {
    width: 100%;
  }
  #banner .banner-content ul li .content .box p {
    display: none;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 24px;
  }
  #banner .banner-content ul li .content .box h2::before {
    display: none;
  }
  #index-body .category {
    padding: 90px 0 0;
  }
  #index-body .about .about-content .content .left {
    padding: 50px 30px;
  }
  #footer .footer-t .footer-t-gird {
    padding: 55px 0;
  }
  #index-body .about .about-content .left h4 {
    font-size: 22px;
    line-height: 1.6;
  }
}





span.tag {
    font-size: 18px;
    color: var(--color);
    display: block;
    line-height: 1.2
}

span.h2 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.20689655;
    display: block
}

.inner-banner {
  margin-top: 170px;
  height: 400px;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 3.5%;
}
.inner-banner span.h2 {
  font-size: 26px;
}
.inner-banner .mbx {
  font-size: 18px;
  margin-top: .5em;
}
/*.more {
    height: 3.05882353em;
    padding: 0px 1em 0em 2em;
    background-color: var(--color);
    border-radius: 3em;
}
.more:hover {
    background-color: rgba(255,255,255,.8);
}*/
.inner-page span.tag {
  margin-bottom: .6em;
}
.inner-page span.h2 {
  font-size: 36px;
  line-height: 1.4;
  font-family: var(--font);
}
.inner-page .flex {
  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;
}
.inner-page .flex .title {
  max-width: 550px;
}
.inner-page .flex .title span.tag {
  margin-bottom: .7em;
}
.inner-page .flex .text {
  max-width: 850px;
}
.inner-page .sideBarBox .sideBarLeft {
  width: 27%;
  padding-right: 3%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.inner-page .sideBarBox .sideBarLeft form {
  font-size: 16px;
  height: 4.375em;
  border-radius: .25em;
  background-color: #f2f1ec;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.inner-page .sideBarBox .sideBarLeft form input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 1.5em;
}
.inner-page .sideBarBox .sideBarLeft form button {
  width: 4.375em;
  background-color: transparent;
  border: none;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarLeft form button i {
  font-size: 1.6em;
}
.inner-page .sideBarBox .sideBarLeft form button:hover {
  background-color: var(--color);
  color: white;
}
.inner-page .sideBarBox .sideBarLeft .box {
  margin-top: 45px;
}
.inner-page .sideBarBox .sideBarLeft .box span.h2 {
  font-size: 24px;
  margin-bottom: 1em;
}
.inner-page .sideBarBox .sideBarLeft .box .nav {
  font-size: 18px;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li {
  padding: .6em 0;
  border-bottom: 1px solid #e7e7e7;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a i {
  margin-right: 1.5em;
  opacity: .8;
  font-size: .8em;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a em {
  padding: 0 .5em;
  border-radius: .25em;
  background-color: #eeede7;
  margin-left: auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a:hover {
  color: var(--color);
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a:hover em {
  background-color: var(--color);
  color: white;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li ul {
  padding-left: 2.5em;
  font-size: 0.88888889em;
  margin-top: 1em;
  display: none;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li ul li {
  border-bottom: none;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li.active ul {
  display: block;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .img-box {
  width: 30%;
  border-radius: 3px;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content {
  width: 70%;
  padding-left: 2%;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content span.h6 {
  font-size: 18px;
  line-height: 1.33333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content time {
  display: block;
  font-size: 14px;
  color: #9a9a9a;
  margin-top: .4em;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li:last-child {
  margin-bottom: 0;
}
.inner-page .sideBarBox .sideBarRight {
  width: 73%;
}
.inner-page .m-page {
  font-size: 17px;
  margin-top: 3.88235294em;
  font-family:var(--font);
}
.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,
.inner-page .m-page span {
  margin: 0 .5em;
  width: 3.05882353em;
  height: 3.05882353em;
  border-radius: 100%;
  background-color: #dfdfdf;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background-color: var(--color);
  color: white;
}
.inner-page .productList ul li a.img-box {
  display: flex;
  justify-content: center;
  background-color: #fff;
  overflow: unset;
  transition: 0.5s;
  padding: 30px;

}
.inner-page .productList ul li a.img-box img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
}
.inner-page .productList ul li .content {
  padding: 0 5%;
  text-align: center;
  transition: 0.5s;
}
.inner-page .productList ul li .content span.h6 {
  font-weight: 500;
  font-size: 22px;
  color: #120c0b;
  display: block;
  padding: 1em 0 .7em;
  border-bottom: 1px solid #ececec;
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: .5em;
}
.inner-page .productList ul li .content .text {
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:2;
  overflow: hidden;
}
.inner-page .productList ul li:hover a.img-box {
  background-color: var(--color);
}
.inner-page .productList ul li:hover a.img-box img {
  -webkit-transform: translateY(49%);
  -moz-transform: translateY(49%);
  -ms-transform: translateY(49%);
  transform: translateY(49%);
}
.inner-page .productList ul li:hover .content span.h6 {
  color: #fff;
  border-bottom-color: #fff;
}
.inner-page .productList ul li:hover .content .text {
  color: #fff;
}
.inner-page .productList ul li:hover .content {
  -webkit-transform: translateY(-285%);
  -moz-transform: translateY(-285%);
  -ms-transform: translateY(-285%);
  transform: translateY(-285%);
}
.about-page .about-1 {
  padding: 110px 0;
}
.about-page .about-1 .flex{
  align-items: flex-start;
}
.about-page .about-1 .text{
  max-height: 250px;
  overflow-y: auto;
}
.about-page .about-1 .list {
  margin: 65px 0;
  text-align: center;
}
.about-page .about-1 .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.about-page .about-1 .list ul li {
  width: auto;
}
.about-page .about-1 .list ul li span {
  font-size: 40px;
  line-height: 1;
  display: block;
  margin-bottom: .7em;
  font-family:var(--font);
}
.about-page .about-1 .list ul li p {
  font-size: 18px;
}
.about-page .about-1 .box {
  height: 510px;
  background-position: center;
  background-size: cover;
  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;
}
.about-page .about-1 .box .play {
  cursor: pointer;
  cursor: hand;
}
.about-page .about-2 {
  padding: 110px 0;
  background-color: #f8f7f7;
}
.about-page .about-2 .flex {
  -webkit-box-align: unset;
  -webkit-align-items: unset;
  -moz-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
}
.about-page .about-2 .left span.h2 {
  margin-bottom: 1em;
}
.about-page .about-2 .left .text {
  max-width: 800px;
  line-height: 2.22222222;
}
.about-page .about-2 .right {
  margin: 0 auto;
  width: 30%;
}
.about-page .about-2 .right .info {
  font-size: 18px;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: white;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -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;
  padding: 0 10%;
}
.about-page .about-2 .right .info i.iconfont {
  color: var(--color);
  margin-right: 1.5em;
  border-radius: 100%;
  flex-shrink: 0;
}
.about-page .about-2 .options .right .info i.iconfont {
  /*color: transparent;*/
  color: var(--color);
  /*border: 1px solid var(--color);*/
}
.about-page .about-2 .options .right .info p.active i.iconfont {
  color: #fff;
  border-color: transparent;
}
.about-page .about-3 {
  padding: 100px 0;
}
.about-page .about-3 span.h2 {
  margin-bottom: 1em;
}
.about-page .about-3 .list {
  position: relative;
}
.about-page .about-3 .list ul {
  margin: 0 -35px;
}
.about-page .about-3 .list ul li {
  padding: 0 35px;
}
.about-page .about-3 .list ul li a.img-box {
  display: block;
}
.about-page .about-3 .list ul li span {
  font-size: 18px;
  color: #222;
  display: block;
  margin-top: 1.2em;
  text-align: center;
}
.about-page .about-3 .list .btn div {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  margin: 0;
}
.about-page .about-3 .list .btn div.prev {
  left: 0;
}
.about-page .about-3 .list .btn div.next {
  right: 0;
}
.about-page .about-3 .list .btn div:hover {
  background-color: var(--color);
}
.about-page .about-4 {
  padding: 100px 0;
  background-color: #f8f7f7;
}
.about-page .about-4 .left {
  width: 40%;
  padding-right: 3%;
}
.about-page .about-4 .left .text {
  font-size: 17px;
  margin-top: 1.5em;
}
.about-page .about-4 .left a.more {
  margin-top: 3.52941176em;
}
.about-page .about-4 .right {
  width: 60%;
}
.about-page .about-4 .right .list {
  padding-top: 25px;
  overflow: hidden;
}
.about-page .about-4 .right .list .slick-list {
  overflow: unset;
}
.about-page .about-4 .right ul {
  margin: -7px;
}
.about-page .about-4 .right ul li {
  padding: 7px;
}
.about-page .about-4 .right ul li img {
  width: 100%;
  position: relative;
  top: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-5 .box {
  position: relative;
  padding: 110px 0;
}
.about-page .about-5 .box .mask {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2%;
  z-index: -1;
}
.about-page .about-5 .box .mask i {
  width: 100%;
  border-left: 1px solid #f9f9f9;
  border-right: 1px solid #f9f9f9;
}
.about-page .about-5 span.h2 {
  margin-bottom: 1em;
}
.about-page .about-5 .list {
  padding-top: 130px;
  overflow: hidden;
  padding-left: 1px;
  padding-right: 3px;
}
.about-page .about-5 .list .slick-list {
  overflow: unset;
}
.about-page .about-5 .list li a {
  height: 250px;
  border: 1px solid #f9f9f9;
  margin: 0 -1px;
  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: white;
  position: relative;
  top: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-5 .list li a img {
  max-height: 100%;
}
.about-page .about-5 .list .slick-current li a,
.about-page .about-5 .list .slick-current + div + div li a,
.about-page .about-5 .list .slick-current + div + div + div + div li a {
  top: -130px;
}
.contact-page {
  background-color: #fcfcfc;
}
.contact-page .contact-1 {
  padding-top: 110px;
}
.contact-page .contact-1 .box .left {
  vertical-align: bottom;
     padding-right: 2%;
}
.contact-page .contact-1 .box .left span.h2 {
  margin-bottom: .5em;
}
.contact-page .contact-1 .box .left span.h2.mt {
  margin-top: 1em;
}
.contact-page .contact-1 .box .left .text {

  line-height: 2;
}
.contact-page .contact-1 .box .left .text.disc {

}
.contact-page .contact-1 .box .left .text.disc p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
      font-size: 17px;
}
.contact-page .contact-1 .box .left .text.disc p:before {
  content: '';
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: black;
  margin-right: .6em;
  margin-top: .7em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.contact-page .contact-1 .box .left .share {
  font-size: 18px;
  margin-top: 3.88888889em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2em;
}
.contact-page .contact-1 .box .left .share a {
  margin-left: 1.5em;
}
.contact-page .contact-1 .box .right {
  vertical-align: bottom;
  padding: 0 1%;
}
.contact-page .contact-1 .box .right .form {
  border-radius: 10px;
  background-color: white;
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 45px 6% 55px;
}
.contact-page .contact-1 .box .right .form ul li {
  font-size: 16px;
  margin-bottom: 1em;
}
.contact-page .contact-1 .box .right .form ul li label {
  display: block;
  color: #666;
}
.contact-page .contact-1 .box .right .form ul li label em {
  color: red;
}
.contact-page .contact-1 .box .right .form ul li input,
.contact-page .contact-1 .box .right .form ul li textarea {
  padding: .5em 1em;
  border-radius: .8em;
  border: 1px solid #cbd6e2;
  background-color: #f5f8fa;
  display: block;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .box .right .form ul li input:focus,
.contact-page .contact-1 .box .right .form ul li textarea:focus {
  border-color: var(--color);
}
.contact-page .contact-1 .box .right .form ul li button {
  border-radius: 3em;
  border: none;
  margin-top: 1.5em;
  color: white;
}
.contact-page .contact-1 .box .right .form ul li button:hover{
  background-color: black;
}
.contact-page .contact-2 {
  padding: 110px 0;
}
.contact-page .contact-2 iframe {
  border: none;
  display: block;
  width: 100%;
}
.contact-page .contact-3{
  margin-top: 210px;
}
.contact-page .contact-3 ul{
  margin: -12px;
}
.contact-page .contact-3 ul li{
  padding:12px;
}
.contact-page .contact-3 ul li .box{
  background-color: white;
  font-size: 18px;
  height: 285px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 0 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.contact-page .contact-3 ul li .box img{
  position: absolute;
  left: 50%;
  top:0;
  transform: translate(-50%,-50%);
}
.contact-page .contact-3 ul li .box h4{
  font-family: 'Montserrat-SemiBold';
  margin-bottom: 10px;
}
.contact-page .contact-3 ul li .box p{
  margin-bottom: 10px;
}
.contact-page .contact-3 ul li .box p:last-child{
  margin-bottom: 0;
}

@media screen and (max-width: 1600px) {
  .contact-page .contact-3 ul li .box img{
    max-width: 120px;
  }
  .contact-page .contact-3 ul li .box p{
    font-size: 16px;
  }
}
@media screen and (max-width: 1400px) {
    .contact-page .contact-3 ul li .box img {
        max-width: 90px;
    }
    .contact-page .contact-3 ul li .box p {
        font-size: 14px;
    }
}
@media screen and (max-width: 1200px) {
   .contact-page .contact-3 ul li{
       width: 50% !important;
       margin: 30px 0;
    }
    .contact-page .contact-3 ul li .box img {
        max-width: 90px;
    }
    .contact-page .contact-3 ul li .box p {
        font-size: 14px;
    }
    .contact-page .contact-3 {
    margin-top: 85px;
  }
}
@media screen and (max-width: 700px) {
  .contact-page .contact-3 ul li {
        width: 100% !important;
    }
}

.honor-page {
  padding: 110px 0;
}
.honor-page .slide {
  margin-top: 70px;
}
.honor-page .slide:first-child {
  margin-top: 0;
}
.honor-page .slide span.h2 {
  margin-bottom: 1em;
}
.honor-page .slide .list ul {
  margin: -30px -55px;
}
.honor-page .slide .list ul li {
  padding: 30px 55px;
}
.honor-page .slide .list ul li a {
  display: block;
}
.honor-page .slide .list ul li a img {
  width: 100%;
}
.why-page {
  overflow: hidden;
}
.why-page .slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.why-page .slide .left {
  width: 50%;
  padding-right: 5%;
}
.why-page .slide .left .content {
  min-height: 350px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /*-webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;*/
}
.why-page .slide .left .content span.tag {
  margin-bottom: .5em;
}
.why-page .slide .left .content span.h2 {
  margin-top: 0;
  /*margin-bottom: auto;*/
}
.why-page .slide .left .content .text {
  margin: 1em 0 3em;
}
.why-page .slide .left .content a.link {
  --color2: var(--color);
  /*margin-top: auto;*/
}
.why-page .slide .right {
  width: 50%;
}
.why-page .slide .img {
    min-height: 780px;
    width: 126%;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.why-page .slide:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.why-page .slide:nth-child(even) .left {
  padding-left: 5%;
  padding-right: 0;
}
.why-page .slide:nth-child(even) .right {
  direction: rtl;
}
.type-page {
  padding: 110px 0;
}
.type-page .typeList ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.type-page .typeList ul li:last-child {
  margin-bottom: 0;
}
.type-page .typeList ul li .img {
  width: 40%;
  background-size: cover;
}
.type-page .typeList ul li .content {
  width: 60%;
  padding: 2% 4%;
}
.type-page .typeList ul li .content span.h6 {
  font-size: 24px;
  font-family:var(--font);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.type-page .typeList ul li .content span.h6:hover {
  color: var(--color);
}
.type-page .typeList ul li .content .text {
  font-size: 17px;
  margin: .5em 0 1em;
}
.type-page .typeList ul li .content .text img {
  margin-top: 1em;
}
.type-page .typeList ul li .content a.link {
  --color2: var(--color);
}
.type-page .typeList ul li .content a.link span {
  font-size: 1.5em;
}
.type-page .typePictureList ul {
  margin: -15px;
}
.type-page .typePictureList ul li {
  padding: 15px;
}
.type-page .typePictureList ul li a.img {
  display: block;
}
.type-page .typePictureList ul li span {
  font-size: 18px;

  padding: .7em;
  display: block;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.type-page .typePictureList ul li .box {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.type-page .typePictureList ul li .box:hover span {
  background-color: var(--color);
  color: white;
}
.solutions-page .solutions-1 {
  padding: 100px 0;
}
.solutions-page .solutions-1 .text {
  margin-top: 1em;
  max-width: 1600px;
  margin-bottom: 3em;
}
.solutions-page .solutions-1 .list {
  font-size: 10px;
  margin-top: 10em;
}
.solutions-page .solutions-1 .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
.solutions-page .solutions-1 .list ul li {
  width: 100%;
  padding: 3em;
  min-height: 30em;
  text-align: center;
  border-radius: 1em;
  -o-box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
}
.solutions-page .solutions-1 .list ul li i {
  display: block;
}
.solutions-page .solutions-1 .list ul li span.h6 {
  font-size: 18px;
  color: #222;
  display: block;
  font-family:var(--font);
  margin: 1em 0;
}
.solutions-page .solutions-1 .list ul li .text {
  margin: 0;
}
.solutions-page .solutions-2 {
  padding: 100px 0;
  text-align: center;
}
.solutions-page .solutions-2 span.tag i {
  color: black;
}
.solutions-page .solutions-2 span.h2 {
  margin-bottom: 1em;
}
.solutions-page .solutions-2 .list 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 #d5d5d5;
  text-align: left;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.solutions-page .solutions-2 .list li .img {
  width: 33%;
  padding: 0 2%;
}
.solutions-page .solutions-2 .list li .text {
  font-size: 17px;
}
.solutions-page .solutions-2 .list li .text table{
  width:100% !important;
  display: block;
  overflow-x: auto;
  height: auto;
}
.solutions-page .solutions-2 .list li .text table tr td{
  min-width: 200px;
}
.solutions-page .solutions-2 .list li .content {
  width: 40%;
  padding: 0 3%;
}
.solutions-page .solutions-2 .list li .content span.h6 {
  font-size: 20px;
  font-family:var(--font);
  margin-bottom: 1em;
  display: block;
}
.solutions-page .solutions-2 .list li .disc {
  width: 27%;
  padding-right: 4%;
}
.solutions-page .solutions-2 .list li .disc p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
  max-height: 200px;
  overflow-y: auto;
}
.solutions-page .solutions-2 .list li .disc p:before {
    content: '\f046';
    font-family: "FontAwesome";
    padding: 0 0.5em;
    margin-right: 0.5em;
    color: var(--color);
}
.solutions-page .solutions-2 .list li:hover {
  background-color: #f8f7f7;
}
.solutions-page .solutions-2 .list li:nth-child(3) ~ * {
  display: none;
}
.solutions-page .solutions-2 .list.active li {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.solutions-page .solutions-2 .list.active ~ a.down {
  display: none;
}
.solutions-page .solutions-2 a.down {
  font-size: 17px;
  margin-top: 1em;
  display: block;
  cursor: pointer;
  cursor: hand;
}
.solutions-page .solutions-2 a.down i {
  display: block;
  line-height: 1;
}
.faq-page {
  padding: 110px 0 70px;
  background-image: url("../images/faq-bg.jpg");
  background-position: top 8% right 8%;
  background-repeat: no-repeat;
}
.faq-page span.h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: .8em;
}
.faq-page .list ul li {
  margin-bottom: 1.5em;
  font-size: 10px;
  padding: 2.5em 5em;
  border-radius: 2.5em;
  background-color: #f8f8f9;
}
.faq-page .list ul li span.h6 {
  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-family:var(--font);
  font-size: 2.4em;
}
.faq-page .list ul li span.h6 em {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.faq-page .list ul li span.h6 i {
  width: 1.66666667em;
  height: 1.66666667em;
  border-radius: 100%;
  background-color: black;
  cursor: pointer;
  cursor: hand;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.faq-page .list ul li span.h6 i:after,
.faq-page .list ul li span.h6 i:before {
  content: '';
  width: 40%;
  height: 1px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 30%;
}
.faq-page .list ul li span.h6 i:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.faq-page .list ul li .text {
  font-size: 16px;
  margin-top: 1em;
  display: none;
}
.faq-page .list ul li.active span.h6 em {
  font-size: 1.25em;
}
.faq-page .list ul li.active span.h6 i:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.news-page {
  padding: 110px 0;
}
.news-page .list ul {
  margin: -25px -20px;
}
.news-page .list ul li {
  padding: 25px 20px;
}
.news-page .list ul li a.img-box {
  display: block;
  border-radius: 5px;
}
.news-page .list ul li a.img-box time {
  font-size: 14px;
  position: absolute;
  left: .5em;
  bottom: 1em;
  color: white;
}
.news-page .list ul li .content {
  padding: 0 5px;
}
.news-page .list ul li .content span.h6 {
  font-size: 20px;
  line-height: 1.6;
  margin: .8em 0;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
      display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-page .list ul li .content span.h6:hover {
  color: var(--color);
}
.news-page .list ul li .content .text {
  font-size: 15px;
  color: #979797;
      display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.newdet-page {
  padding: 110px 0 70px;
}
.newdet-page .sideBarBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.newdet-page .sideBarBox .sideBarLeft {
  padding-left: 7%;
  padding-right: 0;
}
.newdet-page .sideBarBox .sideBarRight h1 {
  font-size: 24px;
  font-family:var(--font);
  display: block;
      margin-bottom: 15px;
}
.newdet-page .sideBarBox .sideBarRight .text {
  color: #484848;
  margin: 1em 0 4em;
}
.newdet-page .sideBarBox .sideBarRight .m-link {
  display: block;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4%;
  font-family:var(--font);
}
.newdet-page .sideBarBox .sideBarRight .m-link div {
  max-width: 48%;
}
.service-page span.h2 {
  font-size: 44px;
}
.service-page .service-1 {
  padding: 140px 0 210px;
  background-image: url(/gooddeercompressors/2025/07/22/1.jpg);
  background-size: 33.4375% auto;
  background-repeat: no-repeat;
  background-position: center right;
  position: relative;
}
.service-page .service-1:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: url("../images/service-1-bg.jpg");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 69.27083333% auto;
}
.service-page .service-1 .box {
  margin-top: 10px;
}
.service-page .service-1 .box .left {
  vertical-align: middle;
  padding-right: 4%;
}
.service-page .service-1 .box .left .list {
  font-size: 18px;
  max-width: 660px;
}
.service-page .service-1 .box .left .list ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: .5em 1em;
  border-bottom: 1px solid #ebebeb;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: var(--color);
}
.service-page .service-1 .box .left .list ul li a i.iconfont {
  font-size: .6em;
  margin-right: .8em;
}
.service-page .service-1 .box .left .list ul li.active a {
  background-color: var(--color);
  color: white;
}
.service-page .service-1 .box .left .box2 {
  margin-top: 70px;
  padding: 0 25px;
}
.service-page .service-1 .box .left .box2 span.h6 {
  font-size: 24px;
  font-family:var(--font);
  display: block;
  margin-bottom: 1.2em;
}
.service-page .service-1 .box .left .box2 .text {
  color: #626262;
}
.service-page .service-1 .box .right {
  vertical-align: middle;
  padding-right: 2%;
}
.service-page .service-2 {
  padding-top: 110px;
  background-image: url("../images/service-2-bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  color: white;
}
.service-page .service-2 span.h2 {
  text-align: center;
  margin-bottom: 1.3em;
}
.service-page .service-2 .list {
  padding: 0 16px;
}
.service-page .service-2 .list ul {
  margin: -8px;
}
.service-page .service-2 .list ul li {
  padding: 8px;
}
.service-page .service-2 .list ul li .box {
  height: 610px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.service-page .service-2 .list ul li .box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: inherit;
  filter: grayscale(1);
  transition: .5s;
  z-index: -2;
}
.service-page .service-2 .list ul li .box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  transition: .5s;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.service-page .service-2 .list ul li .box:hover:before {
  filter: unset;
}
.service-page .service-2 .list ul li .box:hover:after {
  opacity: 0;
}
.service-page .service-2 .list ul li .box span.tag {
  font-size: 15px;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: .5em;
}
.service-page .service-2 .list ul li .box span.h2 {
  font-size: 36px;
  line-height: 1.22222222;
  text-align: left;
  margin-top: 0;
  margin-bottom: auto;
  font-family:var(--font);
}
.service-page .service-2 .list ul li .box .text {
  font-size: 17px;
  margin: 1em 0 2em;
  color: inherit;
}
.service-page .service-2 .list ul li .box .top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20% 10%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-2 .list ul li .box .bottom {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 10%;
  text-align: center;
  opacity: 0;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-2 .list ul li .box .bottom span.h2 {
  text-align: inherit;
}
.service-page .service-2 .list ul li .box:hover .top {
  opacity: 0;
}
.service-page .service-2 .list ul li .box:hover .bottom {
  opacity: 1;
  z-index: 1;
}
.service-page .service-3 {
  padding: 190px 0 120px;
  background-image: url("../images/service-03-bg.jpg");
  background-position: center;
  background-size: cover;
}
.service-page .service-3 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.service-page .service-3 .box .left {
  width: 48%;
  padding-right: 3%;
}
.service-page .service-3 .box .left .form {
  padding: 30px 7%;
  border-radius: 10px;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  background-color: rgba(255, 255, 255, 0.4);
}
.service-page .service-3 .box .left .form span.h3 {
  font-size: 28px;
  font-family:var(--font);
  display: block;
  line-height: 1.2;
}
.service-page .service-3 .box .left .form .text {
  font-size: 16px;
  color: #414345;
  margin: 1em 0 2em;
}
.service-page .service-3 .box .left .form form ul {
  margin: -7px -5px;
}
.service-page .service-3 .box .left .form form ul li {
  padding: 7px 5px;
}
.service-page .service-3 .box .left .form form ul li input,
.service-page .service-3 .box .left .form form ul li textarea {
  display: block;
  width: 100%;
  border: none;
  background-color: #e9eaea;
  font-size: 14px;
  padding: 1em 1.2em;
}
.service-page .service-3 .box .left .form form ul li input::-webkit-input-placeholder, .service-page .service-3 .box .left .form form ul li textarea::-webkit-input-placeholder {
  color: #333;
}
.service-page .service-3 .box .left .form form ul li input:-moz-placeholder, .service-page .service-3 .box .left .form form ul li textarea:-moz-placeholder {
  color: #333;
}
.service-page .service-3 .box .left .form form ul li input::-moz-placeholder, .service-page .service-3 .box .left .form form ul li textarea::-moz-placeholder {
  color: #333;
}
.service-page .service-3 .box .left .form form ul li input:-ms-input-placeholder, .service-page .service-3 .box .left .form form ul li textarea:-ms-input-placeholder {
  color: #333;
}
.service-page .service-3 .box .left .form form ul li input::placeholder,
.service-page .service-3 .box .left .form form ul li textarea::placeholder {
  color: #333;
}
.service-page .service-3 .box .left .form form ul li textarea {
  height: 100px;
}
.service-page .service-3 .box .left .form form ul li button {
  border-radius: 3em;
  margin-top: 1.5em;
  border: none;
  font-size: 16px;
  color: white;
}
.service-page .service-3 .box .left .form form ul li button:hover{
  background-color: black;
}
.service-page .service-3 .box .left .form form ul li button em {
  border-bottom: none;
}
.service-page .service-3 .box .left .form form ul li.wid-100 {
  width: 100%;
}
.service-page .service-3 .box .left .form form ul li:last-child {
  text-align: center;
}
.service-page .service-3 .box .right {
  width: 52%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  padding: 2% 0;
}
.service-page .service-3 .box .right span.h2 {
  line-height: 1.09090909;
}
.service-page .service-3 .box .right .info {
  margin-top: auto;
  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;
  font-size: 10px;
  gap: 3em;
}
.service-page .service-3 .box .right .info .slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.service-page .service-3 .box .right .info .slide i {
  max-width: 3.3em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
      font-size: 20px;
    color: var(--color);
}
.service-page .service-3 .box .right .info .slide .content {
  margin-left: 1em;
}
.service-page .service-3 .box .right .info .slide .content span.h6 {
  font-size: 24px;
  font-weight: 500;
  display: block;
  line-height: 1;
}
.service-page .service-3 .box .right .info .slide .content p {
  font-size: 17px;
  margin-top: .3em;
  line-height: 2;
}
.service-page .service-3 .box .right form {
  font-size: 14px;
  margin-top: 4.28571429em;
  border-radius: .8em;
  background-color: rgba(191, 191, 191, 0.5);
  height: 4.71428571em;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.service-page .service-3 .box .right form input {
  display: block;
  width: 100%;
  padding: 0 1.42857143em;
  border: none;
  background-color: transparent;
}
.service-page .service-3 .box .right form button {
  width: 7.14285714em;
  border-radius: .8em;
  background-color: var(--color);
  color: white;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: none;
}
.service-page .service-3 .box .right form button i {
  font-size: 2em;
}
.product-page {
  padding: 110px 0;
}
.product-page h1 {
  font-size: 24px;
  font-family:var(--font);
}
.product-page .description {
  margin: 1em 0 2em;
}


.product-page .pro_nav {
  padding: 55px 0;
}

.product-page .pro_nav ul li {
  font-size: 20px;
  line-height: 1.8;
  border: 1px solid #c8c6c1;
  padding: 30px 10px;
  transition: 0.3s;
  height: 115px;
}

.product-page .pro_nav ul li a{
  display: inline-block;
  vertical-align: middle;
}

.product-page .pro_nav ul li .img{
  width: 60px;
  margin-right: 10px;
}

.product-page .pro_nav ul li .text{
  width: calc(100% - 80px);
}

.product-page .pro_nav ul li img {
  vertical-align: middle;
}

.product-page .pro_nav ul li.active,
.product-page .pro_nav ul li:hover {
  background: var(--color);
  color: #1c1c1c;
}

.product-page .product-1 {
  /*background: url(../images/product-bg1.jpg) no-repeat;*/
  background-size: cover;
  color: white;
  height: 42vw;
}

.product-page .product-1 .box {
  width: 40%;
  margin-left: auto;
}

.product-page .product-1 .box .content {
  line-height: 28px;
  margin: 35px 0 55px;
}

.product-page .product-1 .box .more {
  font-size: 20px;
  height: 59px;
  line-height: 59px;
  background: #ceff03;
  border-radius: 29px;
  display: inline-block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding: 0 40px;
}

.product-page .product-1 .box .more:hover {
  background: black;
}

.product-page .pro-list {
  padding: 0px 0 100px;
}

.product-page .pro-list .cat_des{
  font-size: 14px;
  line-height: 2;
  color: #555;
  margin: 10px 0 30px 0;
  max-height: 170px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.product-page .pro-list ul {
  margin: -10px;
}

.product-page .pro-list ul > p{
  font-size: 16px;
  letter-spacing: 0;
}

.product-page .pro-list ul li {
  padding: 10px;
}

.product-page .pro-list ul li .img-box {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.product-page .pro-list ul li .img-box img {
  display: block;
  width: auto;
  margin: auto;
}

.product-page .pro-list ul li h5 {
  font-size: 18px;
  line-height: 2;
  min-height: 4em;
  font-weight: bold;
  margin-top: 10px;
}

.product-page .pro-list ul li .des{
  font-size: 14px;
  line-height: 2;
  margin-top: 15px;
  color: #333;
}

.product-page .pro-list ul li:hover .img-box {
  background: rgba(0, 0, 0, 0.1);
}


@media screen and (max-width: 1600px) {
  .product-page .product-1 {
    background-size: contain;
    padding: 66px 0 107px;
  }
}
@media screen and (max-width: 1450px) {
    .product-page .product-1 .box {
    width: 60%;
  }
}

@media screen and (max-width: 1250px) {
  
  .product-page .product-1 {
    background-size: cover;
  }
}
@media screen and (max-width: 1000px) {
    .product-page .product-1 .box {
    width: 100%;
  }
  .product-page .pro_nav ul li{
    width: 50% !important;
  }
  .product-page .pro_nav ul li .text{
    font-size: 16px;
  }
   .solutions-page .solutions-2 .list li .text table{
     display: block;
     overflow: visible;
     overflow-x: auto;
    height: auto;
   }
  .solutions-page .solutions-2 .list li .text table tr td{
    min-width: 200px;
  }
  .solutions-page .solutions-2 .list li .disc p{
      max-height: unset;
    overflow-y: unset;
  }
}
@media screen and (max-width: 750px) {
  .product-page .product-1{
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .product-page .pro_nav ul li{
    width: 100% !important;
  }
}


.product-det-page .product-det-1 {
  padding: 100px 0 100px;
}
.product-det-page .product-det-1 .box {
  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;
}
.product-det-page .product-det-1 .left {
  width: 40%;
  vertical-align: middle;
}
.product-det-page .product-det-1 .left a {
  display: block;
  padding: 0;
  border: 1px solid #bebebe;
}
.product-det-page .product-det-1 .left a img {
  margin: auto;
  width: 100%;
}
.product-det-page .product-det-1 .left .smallImg a img {
  height: 120px;
}
.product-det-page .product-det-1 .left ul {
  margin: -10px;
}
.product-det-page .product-det-1 .left ul li {
  padding: 10px;
}
.product-det-page .product-det-1 .left .smallImg {
  width: 19%;
  padding-right: 20px;
}
.product-det-page .product-det-1 .left .smallImg .slick-current a {
  border-color: var(--color);
}
.product-det-page .product-det-1 .left .bigImg {
  width: 100%;
}
.product-det-page .product-det-1 .left .bigImg a {
  position: relative;
  background: #f3f3f3;
}
.product-det-page .product-det-1 .left .bigImg a:before {
  content: '';
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: var(--color);
  background-image: url("../images/icon-search-white.png");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 3%;
  right: 3%;
}
.product-det-page .product-det-1 .right {
  width: 60%;
  padding-left: 3.5%;
  vertical-align: middle;
  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;
}
.product-det-page .product-det-1 .right .flexBottom a.more {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-det-page .product-det-1 .right h1 {
  font-size: 22px;
  font-family:var(--font);
  line-height: 1.6;
  display: block;
}
.product-det-page .product-det-1 .right .text {
  margin: 1em 0 2em;
  line-height: 30px;
  font-size: 16px;
}
.product-det-page .product-det-1 .right .more {
  margin-bottom: 10px;
}
.product-det-page .product-det-1 .right .flexTop span.tag {
  text-transform: capitalize;
}
.product-det-page .product-det-1 .right .smallImg a img {
  display: block;
  margin: 0 auto;
  background: #f3f3f3;
}
.product-det-page .product-det-1 .right ul {
  margin: -10px;
}
.product-det-page .product-det-1 .right ul .slick-track {
  margin-left: 0;
}
.product-det-page .product-det-1 .right ul li {
  padding: 10px;
}
.product-det-page .product-det-1 .right .smallImg {
  width: 100%;
}
.product-det-page .product-det-1 .right .smallImg .slick-current a {
  border-color: var(--color);
}
.product-det-page #index-body .i-application .txt,
.product-det-page #index-body .i-application .i-title {
  color: #000;
}
.product-det-page .product-det-2 {
  padding: 60px 0;
  position: relative;
}
.product-det-page .product-det-2:before {
  content: '';
  width: 4.03125vw;
  height: 36.61458333vw;
  z-index: -1;
  position: absolute;
  background: url("../images/icon-meiluo.png") center no-repeat;
  background-size: cover;
  left: 0;
  top: 5%;
}
.product-det-page .product-det-2 .left {
  width: 23%;
  padding-right: 1%;
}
.product-det-page .product-det-2 .left .navList {
  background-color: #fff;
}
.product-det-page .product-det-2 .left .navList ul {
  font-size: 20px;
  font-family:var(--font);
}
.product-det-page .product-det-2 .left .navList ul li span {
  color: #fff;
  background-color: #000;
  padding: 1.1em 2em;
  display: block;
  position: relative;
}
.product-det-page .product-det-2 .left .navList ul li span i.fa {
  position: absolute;
  right: 5%;
  top: 1.3em;
  cursor: pointer;
  cursor: hand;
}
.product-det-page .product-det-2 .left .navList ul li ul {
  padding: .7em 2em;
  font-weight: 500;
  font-size: 110%;
  line-height: 1.2;
}
.product-det-page .product-det-2 .left .navList ul li ul li {
  padding: 1em 0;
}
.product-det-page .product-det-2 .left .navList ul li ul li a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  padding-right: 1em;
  position: relative;
}
.product-det-page .product-det-2 .left .navList ul li ul li a:hover {
  color: var(--color);
}
.product-det-page .product-det-2 .left .navList ul li ul li a i.fa {
  position: absolute;
  top: 0;
  right: 0;
}
.product-det-page .product-det-2 .left .navList ul li ul ul {
  padding: .5em 0 .5em 1em;
  font-size: 75%;
  font-weight: 400;
  display: none;
}
.product-det-page .product-det-2 .left .navList ul li ul ul li {
  padding: 0.5em 0;
}
.product-det-page .product-det-2 .left .navList ul li ul ul li a {
  padding-right: 0;
}
.product-det-page .product-det-2 .right {
  width: 100%;
}
.product-det-page .product-det-2 .right .prodet-content span.h3 {
  font-size: 36px;
  font-family:var(--font);
  text-transform: uppercase;
  line-height: 1.2;
  display: block;
  position: relative;
}
.product-det-page .product-det-2 .right .prodet-content .pdl {
  padding-left: 5% !important;
}
.product-det-page .product-det-2 .right .prodet-content .pdr {
  padding-right: 5% !important;
}
.product-det-page .product-det-2 .right .prodet-content .logo {
  float: right;
}
.product-det-page .product-det-2 .right .prodet-content span.tag {
  margin-bottom: 3.5em;
  font-size: 18px;
  display: block;
  text-transform: uppercase;
  color: var(--color);
  line-height: 1.2;
}
.product-det-page .product-det-2 .right .prodet-content .table {
  font-size: 20px;
}
.product-det-page .product-det-2 .right .prodet-content table {
  font-weight: 300;
  line-height: 2;
  margin: -10px !important;
  width: auto !important;
}
.product-det-page .product-det-2 .right .prodet-content table em {
  font-weight: 400;
}
.product-det-page .product-det-2 .right .prodet-content table strong {
  color: var(--color);
  font-size: 1.2em;
  font-weight: 500;
  display: block;
}
.product-det-page .product-det-2 .right .prodet-content table tr {
  background-color: transparent !important;
}
.product-det-page .product-det-2 .right .prodet-content table tr td {
  border: none !important;
  padding: 10px !important;
  vertical-align: top;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 {
  padding: 100px 0 120px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .logo {
  float: none;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 span.h3 {
  font-size: 47px;
  margin-top: 1.5em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 span.h3:before {
  display: none;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 {
  padding-bottom: 25%;
  width: 100%;
  padding-right: 50%;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  margin-top: 30px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 span.title {
  font-size: 36px;
  font-family:var(--font);
  display: block;
  color: var(--color);
  text-transform: uppercase;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 span.title:before {
  content: '';
  width: 3em;
  height: 2px;
  background-color: var(--color);
  margin-right: .5em;
  display: inline-block;
  vertical-align: middle;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .text {
  font-size: 20px;
  margin: 2em 0 3em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul {
  margin: -30px -20px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li {
  padding: 30px 20px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex i {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 50px;
  text-align: center;
  margin-right: 0.5em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex i:before {
  content: '';
  width: 3.18181818em;
  height: 3.54545455em;
  background: url("../images/icon-5-bg.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 40%;
  -webkit-transform: translate(-20%, -50%);
  -moz-transform: translate(-20%, -50%);
  -ms-transform: translate(-20%, -50%);
  transform: translate(-20%, -50%);
  z-index: -1;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-2 .text {
  margin-top: 2em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-2 .text p {
  margin-bottom: 3em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-2 .text img {
  display: block;
  margin: 0 auto;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-3 {
  padding-top: 90px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table {
  margin-top: 6em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table table {
  margin-top: 1.5em !important;
  display: block;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table table td[colspan="6"] {
  padding-bottom: 0 !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table table td[colspan="6"] strong {
  line-height: 1;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-4 {
  padding-top: 120px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-4 .table {
  margin-top: 3em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-4 .table table {
  margin: -5px !important;
  margin-bottom: 2.5em !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-4 .table table td {
  padding: 5px !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-4 .table img {
  display: block;
  margin-left: auto;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-5 {
  padding-top: 120px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-5 .text {
  margin-top: 1.5em;
  font-size: 22px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 {
  padding: 90px 0 150px;
  background-color: #f3f3f3;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text {
  font-weight: 400;
  font-size: 22px;
  margin-top: 5em;
  background-image: url("../images/prodet-content-6-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  color: #fff;
  line-height: 1.2;
  padding: 1em 0;
  position: relative;
  z-index: 1;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text:after {
  content: '';
  width: 42%;
  left: 27%;
  top: -5%;
  border-radius: inherit;
  background-color: var(--color);
  z-index: -1;
  position: absolute;
  height: 110%;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text hr {
  border: none;
  border-top: 1px solid #080808;
  border-bottom: 2px solid #323134;
  display: block;
  margin: 1em 0;
  width: 100%;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text .img {
  height: 165px;
  margin-bottom: 1.5em;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text .img img {
  max-height: 100%;
  display: block;
  margin: 0 auto;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table {
  text-align: center;
  margin: 0 !important;
  line-height: inherit;
  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;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table p {
  width: 100%;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table tr {
  width: 100% !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td {
  vertical-align: bottom;
  padding: 0 2% !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td:nth-child(1) {
  width: 27% !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td:nth-child(2) {
  width: 42% !important;
  padding: 0 3% !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td:nth-child(2) hr {
  border-top-color: var(--color);
  border-bottom-color: var(--color);
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td:nth-child(3) {
  width: 31% !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td:nth-child(3) .img img {
  max-height: 85%;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-7 {
  padding-top: 90px;
  text-align: center;
  background: #e9e9e9;
  background: -webkit-linear-gradient(340deg, #e9e9e9, #e1e1e1);
  background: -moz-linear-gradient(340deg, #e9e9e9, #e1e1e1);
  background: linear-gradient(110deg, #e9e9e9, #e1e1e1);
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-7 span.h3 {
  margin-bottom: 2em;
  display: inline-block;
  z-index: 1;
  line-height: 1.4;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 {
  text-align: center;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8.txt-center {
  text-align: center !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 span.h3 {
margin-bottom: 2em;
    display: inline-block;
    z-index: 1;
    font-size: 36px;
    text-transform: capitalize;
    font-family:var(--font);
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 .productList {
  overflow: hidden;
  text-align: left;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 .productList ul {
  margin: 0 -15px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 .productList ul li {
  padding: 0 15px;
}
.inner-page.product-det-page span.h2 em {
  color: var(--color);
}
.inner-page.product-det-page .i-application {
  text-align: center;
}
.inner-page.product-det-page .i-application ul {
  margin: 0 -15px;
}
.inner-page.product-det-page .i-application li {
  padding: 15px;
}
.inner-page.product-det-page .i-application li p {
  font-size: 18px;
  padding: 20px 0;
}
.inner-page.product-det-page .i-application .txt {
  line-height: 2;
  margin: 0 auto;
  font-size: 15px;
  width: 65%;
}
.miaoshu-det .top {
  margin-bottom: 30px;
}
.miaoshu-det .top h2 {
  font-size: 24px;
  font-family:var(--font);
  line-height: 1;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.miaoshu-det .top p {
  font-size: 17px;
  line-height: 2;
  padding: 5px 0;
}
.miaoshu-det .top h2:before {
  content: "";
  width: .8em;
  height: .8em;
  background: var(--color);
  margin-right: .5em;
}
.miaoshu-det .bottom table {
  font-size: 16px;
  border: 0;
  margin-bottom: 0;
}
.miaoshu-det .bottom table td p {
  line-height: 1.8;
  padding: 5px;
}
.inner-page .prodet-product-link .dotsBox {
  margin-top: 50px;
  text-align: center;
}
.inner-page .prodet-product-link .dotsBox .prev,
.inner-page .prodet-product-link .dotsBox .next,
.inner-page .prodet-product-link .dotsBox .dots,
.inner-page .prodet-product-link .dotsBox li {
  display: inline-block;
  vertical-align: middle;
}
.inner-page .prodet-product-link .dotsBox .prev,
.inner-page .prodet-product-link .dotsBox .next,
.inner-page .prodet-product-link .dotsBox button {
  margin: 0 13px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 100%;
  font-size: 18px;
  color: #301500;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-weight: 400;
  border: none;
  cursor: pointer;
  cursor: hand;
}
.inner-page .prodet-product-link .dotsBox .prev:after,
.inner-page .prodet-product-link .dotsBox .next:after,
.inner-page .prodet-product-link .dotsBox button:after {
  content: '';
  width: 130%;
  height: 130%;
  position: absolute;
  left: -15%;
  top: -15%;
  border-radius: inherit;
  border: 2px solid #ececec;
}
.inner-page .prodet-product-link .dotsBox .prev:hover,
.inner-page .prodet-product-link .dotsBox .next:hover,
.inner-page .prodet-product-link .dotsBox button:hover,
.inner-page .prodet-product-link .dotsBox .slick-active button {
  background: var(--color);
  color: #fff;
}
@media screen and (max-width: 1700px) {
  .inner-banner {
    height: 300px;
  }
  .inner-banner span.h2,
  .inner-page span.h2,
  .product-det-page .product-det-2 .right .prodet-content span.h3,
  .service-page .service-2 .list ul li .box span.h2 {
    font-size: 28px;
  }
  .inner-banner .mbx,
  .about-page .about-1 .list ul li p,
  .about-page .about-2 .right .info,
  .about-page .about-3 .list ul li span,
  .contact-page .contact-1 .box .left .share,
  .inner-page .sideBarBox .sideBarLeft .box .nav,
  .inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content span.h6,
  .inner-page.product-det-page .i-application li p,
  .service-page .service-1 .box .left .list {
    font-size: 16px;
  }
  .about-page .about-1,
  .about-page .about-2,
  .about-page .about-3,
  .about-page .about-4,
  .about-page .about-5 .box,
  .contact-page .contact-2,
  .type-page,
  .honor-page,
  .newdet-page,
  .news-page,
  .product-det-page .product-det-1,
  .product-page,
  .solutions-page .solutions-1,
  .solutions-page .solutions-2 {
    padding: 80px 0;
  }
  .contact-page .contact-1,
  .service-page .service-2 {
    padding-top: 80px;
  }
  .about-page .about-1 .list ul li span,
  .service-page span.h2 {
    font-size: 32px;
  }
  .about-page .about-5 .list li a {
    height: 160px;
  }
  .about-page .about-5 .list .slick-current li a,
  .about-page .about-5 .list .slick-current + div + div li a,
  .about-page .about-5 .list .slick-current + div + div + div + div li a {
    top: -80px;
  }
  .about-page .about-5 .list {
    padding-top: 80px;
  }
  .contact-page .contact-1 .box .right .form ul li {
    font-size: 14px;
  }
  .contact-page .contact-1 .box .right .form {
    padding: 30px 5%;
  }
  .contact-page .contact-2 iframe {
    height: 400px;
  }
  .inner-page .sideBarBox .sideBarLeft form {
    font-size: 14px;
    height: 4em;
  }
  .inner-page .sideBarBox .sideBarLeft .box span.h2,
  .newdet-page .sideBarBox .sideBarRight h1,
  .product-det-page .product-det-1 .right h1,
  .miaoshu-det .top h2,
  .inner-page .productList ul li .content span.h6,
  .product-page h1,
  .service-page .service-1 .box .left .box2 span.h6,
  .service-page .service-3 .box .right .info .slide .content span.h6,
  .type-page .typeList ul li .content span.h6 {
    font-size: 20px;
  }
  .type-page .typePictureList ul li span,
  .news-page .list ul li .content span.h6,
  .solutions-page .solutions-2 .list li .content span.h6 {
    font-size: 18px;
  }
  .faq-page {
    padding: 180px 0 50px;
  }
  .faq-page .list ul li {
    font-size: 8px;
  }
  .inner-page .m-page,
  .service-page .service-3 .box .right .info .slide .content p,
  .solutions-page .solutions-2 .list li .text,
  .type-page .typeList ul li .content .text,
  .about-page .about-4 .left .text {
    font-size: 15px;
  }
  .newdet-page .sideBarBox .sideBarRight .m-link,
  .inner-page .productList ul li .content .text,
  .service-page .service-3 .box .left .form .text {
    font-size: 14px;
  }
  .inner-page .prodet-product-link .dotsBox {
    zoom: .8;
  }
  .service-page .service-1 {
    padding: 100px 0 160px;
  }
  .service-page .service-2 .list ul li .box {
    height: 500px;
  }
  .service-page .service-3 {
    padding: 100px 0;
  }
  .service-page .service-3 .box .left .form span.h3 {
    font-size: 24px;
  }
  .solutions-page .solutions-1 .list {
    font-size: 8px;
  }
  .solutions-page .solutions-1 .list ul li i img {
    max-height: 45px;
  }
  .why-page .slide .img {
    min-height: 600px;
  }
}
@media screen and (max-width: 1450px) {
  .inner-page .productList ul li:hover .content {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .inner-page .productList ul li:hover a.img-box img {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .inner-page .productList ul li:hover .content span.h6 {
    color: #120c0b;
    border-bottom-color: #ececec;
  }
  .inner-page .productList ul li:hover .content .text {
    color: #222;
  }
  .flexBottom {
    margin-top: 10px;
  }
  .honor-page .slide .list ul li {
    padding: 30px;
  }
  .honor-page .slide .list ul {
    margin: -30px;
  }
  .faq-page {
    background-size: 30% auto;
  }
  .about-page .about-1 .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .inner-page .flex .title {
    max-width: none;
  }
  .inner-page .flex .text {
    max-width: none;
    margin-top: 1em;
    font-size: 16px;
    line-height: 30px;
  }
  .about-page .about-1 .box {
    height: 400px;
  }
}
@media screen and (max-width: 1250px) {
  .inner-banner {
    height: 240px;
    padding-top: 0;
  }
  .inner-banner span.h2,
  .inner-page span.h2,
  .product-det-page .product-det-2 .right .prodet-content span.h3,
  .service-page .service-2 .list ul li .box span.h2 {
    font-size: 24px;
  }
  .inner-banner .mbx,
  .about-page .about-1 .list ul li p,
  .about-page .about-2 .right .info,
  .about-page .about-3 .list ul li span,
  .contact-page .contact-1 .box .left .share,
  .inner-page .sideBarBox .sideBarLeft .box .nav,
  .inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content span.h6,
  .inner-page.product-det-page .i-application li p,
  .service-page .service-1 .box .left .list {
    font-size: 14px;
      line-height: 28px;
  }
  .about-page .about-1,
  .about-page .about-2,
  .about-page .about-3,
  .about-page .about-4,
  .about-page .about-5 .box,
  .contact-page .contact-2,
  .type-page,
  .honor-page,
  .newdet-page,
  .news-page,
  .product-det-page .product-det-1,
  .product-page,
  .solutions-page .solutions-1,
  .solutions-page .solutions-2 {
    padding: 60px 0;
  }
  .about-page .about-1 .list {
    margin: 40px 0;
  }
  .about-page .about-1 .box {
    height: 320px;
  }
  .about-page .about-3 .list ul li {
    padding: 0 20px;
  }
  .about-page .about-3 .list ul {
    margin: 0 -20px;
  }
  .about-page .about-4 .left a.more {
    margin-top: 2em;
  }
  .about-page .about-5 .list .slick-current li a,
  .about-page .about-5 .list .slick-current + div + div li a,
  .about-page .about-5 .list .slick-current + div + div + div + div li a {
    top: 0;
  }
  .about-page .about-5 .list {
    padding-top: 0;
  }
  .about-page .about-5 .list li a {
    height: auto;
    padding: 5%;
  }
  .contact-page .contact-1,
  .service-page .service-2 {
    padding-top: 60px;
  }
  .type-page .typePictureList ul li span,
  .news-page .list ul li .content span.h6,
  .solutions-page .solutions-2 .list li .content span.h6 {
    font-size: 16px;
  }
  .type-page .typePictureList ul li {
    padding: 10px;
  }
  .type-page .typePictureList ul {
    margin: -10px;
  }
  .faq-page {
    padding: 100px 0 50px;
  }
  .faq-page .list ul li {
    font-size: 7px;
  }
  .faq-page .list ul li .text {
    font-size: 14px;
  }
  .inner-page .m-page,
  .service-page .service-3 .box .right .info .slide .content p,
  .solutions-page .solutions-2 .list li .text,
  .type-page .typeList ul li .content .text,
  .about-page .about-4 .left .text {
    font-size: 14px;
    line-height: 30px;
  }
  .news-page .list ul li {
    padding: 15px;
  }
  .news-page .list ul {
    margin: -15px;
  }
  .product-det-page .product-det-1 .left .bigImg a:before {
    zoom: .7;
  }
  .product-det-page .product-det-1 .right .text {
    font-size: 14px;
  }
  .product-det-page .product-det-1 .right .more {
    font-size: 13px;
  }
  .more {
    padding: 0 1.5em;
  }
  .inner-page .productList ul li .content {
    padding: 0;
  }
  .inner-page .sideBarBox .sideBarLeft .box span.h2,
  .newdet-page .sideBarBox .sideBarRight h1,
  .product-det-page .product-det-1 .right h1,
  .miaoshu-det .top h2,
  .inner-page .productList ul li .content span.h6,
  .product-page h1,
  .service-page .service-1 .box .left .box2 span.h6,
  .service-page .service-3 .box .right .info .slide .content span.h6,
  .type-page .typeList ul li .content span.h6 {
    font-size: 18px;
  }
  .service-page .service-1 {
    padding: 70px 0 120px;
  }
  .service-page .service-1 .box .left .box2 {
    margin-top: 30px;
    padding: 0;
  }
  .about-page .about-1 .list ul li span,
  .service-page span.h2 {
    font-size: 28px;
  }
  .service-page .service-2 .list ul li .box {
    height: 360px;
  }
  .service-page .service-2 {
    background-size: 100% auto;
  }
  .solutions-page .solutions-2 .list li .disc {
    padding-right: 2%;
  }
}
@media screen and (max-width: 1000px) {
  .why-page .slide {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .why-page .slide .left {
    width: 100%;
    padding: 30px 0 !important;
  }
  .why-page .slide .right {
    width: 100%;
  }
  .why-page .slide .right .img {
    min-height: auto;
    height: 200px;
    width: 100%;
  }
  .why-page {
    padding: 50px 0;
  }
  .inner-page .sideBarBox .sideBarLeft {
    display: none;
  }
  .inner-page .sideBarBox .sideBarRight {
    width: 100%;
  }
  .type-page .typeList ul li .content {
    width: 100%;
  }
  .type-page .typeList ul li .img {
    width: 100%;
    height: 200px;
    background-position: center;
  }
  .type-page .typeList ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .solutions-page .solutions-1 .list ul li {
    width: 49%;
  }
  .solutions-page .solutions-1 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 2%;
    -moz-column-gap: 2%;
    column-gap: 2%;
  }
  .solutions-page .solutions-2 .list li .img {
    width: 100%;
  }
  .solutions-page .solutions-2 .list li .content {
    width: 100%;
    padding: 2%;
  }
  .solutions-page .solutions-2 .list li .disc {
    width: 100%;
    padding: 0 2%;
  }
  .solutions-page .solutions-2 .list li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0;
  }
  .solutions-page .solutions-2 a.down {
    font-size: 15px;
  }
  .service-page .service-1 .box .left {
    width: 100%;
    padding-right: 0;
  }
  .service-page .service-1 .box .right {
    width: 100%;
    margin-top: 30px;
  }
  .service-page .service-1 .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-page .service-1 {
    background-image: unset;
  }
  .service-page .service-2 .list ul li {
    width: 50%;
  }
  .service-page .service-3 .box .left {
    width: 100%;
    padding-right: 0;
  }
  .service-page .service-3 .box .right {
    width: 100%;
    margin-top: 30px;
  }
  .service-page .service-3 .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-page .service-3 .box .right form {
    margin-top: 2em;
  }
  .service-page .service-3 .box .right span.h2 {
    margin-bottom: 1.5em;
  }
  .service-page .service-3 {
    padding: 70px 0;
  }
  .inner-page .sideBarBox .sideBarLeft .box span.h2,
  .newdet-page .sideBarBox .sideBarRight h1,
  .product-det-page .product-det-1 .right h1,
  .miaoshu-det .top h2,
  .inner-page .productList ul li .content span.h6,
  .product-page h1,
  .service-page .service-1 .box .left .box2 span.h6,
  .service-page .service-3 .box .right .info .slide .content span.h6,
  .type-page .typeList ul li .content span.h6 {
    font-size: 16px;
  }
  .product-det-page .product-det-1 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .product-det-page .product-det-1 .left {
    padding-right: 0;
    width: 100%;
  }
  .news-page .list ul li {
    width: 50% !important;
  }
  .honor-page .slide .list ul li {
    padding: 10px;
  }
  .honor-page .slide .list ul {
    margin: -10px;
  }
  .contact-page .contact-1 .box .right {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .contact-page .contact-1 .box .left {
    width: 100%;
  }
  .contact-page .contact-2 iframe {
    height: 300px;
  }
  .about-page .about-4 .left {
    padding-right: 0;
    width: 100%;
  }
  .about-page .about-4 .right {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner {
    height: 200px;
  }
  .inner-banner span.h2,
  .inner-page span.h2,
  .product-det-page .product-det-2 .right .prodet-content span.h3,
  .service-page .service-2 .list ul li .box span.h2 {
    font-size: 20px;
  }
  .about-page .about-1 .box {
    height: 240px;
  }
  .about-page .about-1 .box .play {
    max-width: 60px;
  }
  .about-page .about-4 .right .list {
    padding-top: 0;
  }
  .about-page .about-1 .list ul {
    gap: 10px;
  }
  .about-page .about-1 .list ul li span,
  .service-page span.h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner {
    height: auto;
    padding: 15% 0;
  }
  .about-page .about-1 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-1 .list ul li span {
    margin-bottom: .2em;
  }
  .about-page .about-1 .box {
    height: 200px;
  }
  .type-page .typePictureList ul li {
    width: 50% !important;
  }
  .type-page .typePictureList ul li span,
  .news-page .list ul li .content span.h6,
  .solutions-page .solutions-2 .list li .content span.h6 {
    font-size: 14px;
  }
  .faq-page .list ul li {
    padding: 1.5em;
    font-size: 6px;
  }
  .faq-page {
    padding: 60px 0;
  }
  .inner-page .m-page {
    margin-top: 1.5em;
  }
  .news-page .list ul li {
    width: 100% !important;
  }
  .product-det-page .product-det-1 .right .flexBottom a.more {
    padding: 0 1em;
    height: 2.4em;
  }
  .product-det-page .product-det-1 .right .flexBottom a.more.ml-15 {
    margin-left: 5px;
  }
  .service-page .service-2 .list ul li .box {
    height: 280px;
  }
  .service-page .service-2 .list ul li {
    width: 100%;
  }
  .service-page .service-2 {
    background-size: auto 20%;
  }
  .service-page .service-1 {
    padding: 50px 0;
  }
  .service-page .service-3 .box .left .form span.h3 {
    font-size: 20px;
  }
  .service-page .service-3 .box .right form button {
    width: 5em;
  }
  .service-page .service-3 .box .right form {
    font-size: 12px;
  }
  .solutions-page .solutions-1 .list {
    margin-top: 5em;
    font-size: 7px;
    padding: 0;
  }
  .solutions-page .solutions-1 .list ul li {
    width: 100%;
  }
}


/*设计师*/
 @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

#header .nav .ui.menu .logo img {
    filter: grayscale(100%) brightness(1000%);
}

#header.active .nav .ui.menu .logo img {
    filter: none;
}
#index-body .init-4 .box .right .link.more {
    margin-top: 30px;
}
#index-body .init-5 .box .right .list ul li .content:hover a.link {
    background: var(--color);
    color: #fff;
    padding: 0.5em 1em 0.5em 2em;
    border-radius: 3em;
}
#index-body .init-5 .box .right .list ul li:hover img {
    transform: rotateY(360deg);
      transition: 1s 0s;
}

#index-body .init-5 .box .right .list ul li img{
   transition: 1s 0s;
}
.news-page .list ul li .img-box img {
    width: 100%;
    object-fit: cover;
    height: 310px;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li img {
    width: 100%;
    object-fit: cover;
    height: 90px;
}
.newdet-page .sideBarBox .sideBarRight .text p img.wscnph {
    width: 49%;
    padding: 15px;
    border-radius: 20px;
}


.faq-page .list ul li.active i {
    background-color: var(--color) !important;
       transition: all .5s ease;
}
.faq-page .list ul li i {
       transition: all .5s ease;
}

.type-page .typePictureList ul li a.img img {
    width: 100%;
}
.why-page .slide:nth-child(even) .right .img {
    background-position: center left;
}
.about-page .about-4 .right ul li .img-box:hover img {
    transform: scale(1,1);
}

.solutions-page .solutions-1 .list ul li:hover img {
    transform: rotateY(360deg);
      transition: 1s 0s;
}

.solutions-page .solutions-1 .list ul li img{
   transition: 1s 0s;
}


.solutions-page .solutions-1 .img img {
    width: 100%;
    object-fit: cover;
    height: 500px;
}


.application-page span.h2 {
  font-size: 36px;
  color: #363636;
  font-family:var(--font);
  line-height: 1.2;
}
.application-page span.h2:after {
  content: '';
  width: 1em;
  height: 0.11111111em;
  display: block;
  background-color: var(--color);
  margin-top: .2em;
}
.application-page .application-1 {
  padding-top: 110px;
}
.application-page .application-1 .box .slide {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  overflow: hidden;
  align-items: center;
}
.application-page .application-1 .box .right {
    width: 55%;
}
.application-page .application-1 .box .left {
      padding-right: 50px;
    width: 45%;
}

.application-page .application-1 .box .left .info {
  margin: 10px 0;
}
.application-page .application-1 .box .left span.h6 {
  font-size: 26px;
  line-height: 1.4;
}
.application-page .application-1 .box .left .text {
  font-size: 16px;
  color: #7e7f81;
      margin: 35px 0 0;
}
.application-page .application-1 .box .left .text p {

}
.application-page .application-1 .box .left .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.application-page .application-1 .box .left .btn div {
  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: #7f7f7f;
  color: white;
  font-size: 20px;
  margin-right: 1em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
  cursor: hand;
}
.application-page .application-1 .box .left .btn div:hover {
  background-color: var(--color);
}
.application-page .application-1 .box .right .img {
  /*-webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  transform: skewX(-15deg);
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;*/
  overflow: hidden;
}
.application-page .application-1 .box .right .img img {
  /*-webkit-transform: skewX(15deg) scale(1.2);
  -moz-transform: skewX(15deg) scale(1.2);
  -ms-transform: skewX(15deg) scale(1.2);
  transform: skewX(15deg) scale(1.2);*/
}
.application-page .application-1 .list {
  margin-top: 70px;
  overflow: hidden;
}
.application-page .application-1 .list ul {
  margin: -26px;
}
.application-page .application-1 .list ul .slick-list {
  overflow: unset;
}
.application-page .application-1 .list ul .slick-slide {
  opacity: 0;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
.application-page .application-1 .list ul .slick-slide.slick-active {
  opacity: 1;
}
.application-page .application-1 .list ul li {
  padding: 26px;
}
.application-page .application-1 .list ul li a.img {
  display: block;
  /*-webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  transform: skewX(-15deg);
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;*/
  overflow: hidden;
}
.application-page .application-1 .list ul li a.img img {
  /*-webkit-transform: skewX(15deg) scale(1.2);
  -moz-transform: skewX(15deg) scale(1.2);
  -ms-transform: skewX(15deg) scale(1.2);
  transform: skewX(15deg) scale(1.2);*/
}
.application-page .application-1 .list ul li span.h6 {
  font-size: 18px;
  color: #363636;
  margin-top: 1.5em;
  display: block;
  text-align: center;
}
.application-page .application-2 {
  padding: 80px 0 110px;
  text-align: center;
}
.application-page .application-2 span.h2:after {
  margin-left: auto;
  margin-right: auto;
}
.application-page .application-2 .list {
  margin-top: 50px;
}
.application-page .application-2 .list ul {
  margin: -25px;
  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;
}
.application-page .application-2 .list ul li {
  padding: 25px;
}
.application-page .application-2 .list ul li .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.application-page .application-2 .list ul li .flex .img {
background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 30%;
    z-index: 2;
}
.application-page .application-2 .list ul li .flex .content {
    position: relative;
    width: 70%;
    z-index: 1;
    color: #fff;
    padding: 3% 50px;
    text-align: left;
}
.application-page .application-2 .list ul li .flex .content:before {
  content: '';
  width: 125%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #083b92;
  z-index: -1;
  background-size: 100% 100%;
}
.application-page .application-2 .list ul li .flex .content span.h6 {
    font-size: 26px;
    font-family:var(--font);
    display: block;
    margin-bottom: 0.5em;
        text-transform: capitalize;
}
.application-page .application-2 .list ul li .flex .content .text {
  font-size: 17px;
  line-height: 1.6;
}
.application-page .application-2 .list ul li .flex .content .text p {
    padding: 3px 0;
}
.application-page .application-2 .list ul li .flex .img ul {
  margin: 0;
}
.application-page .application-2 .list ul li .flex .img ul li{
  padding: 0;
}
.application-page .application-2 .list ul li .flex .img ul .slick-slide > div,
.application-page .application-2 .list ul li .flex .img ul .slick-slide,
.application-page .application-2 .list ul li .flex .img ul .slick-track,
.application-page .application-2 .list ul li .flex .img ul li,
.application-page .application-2 .list ul li .flex .img ul,
.application-page .application-2 .list ul li .flex .img {
  height: 100%;
}
.application-page .application-2 .list ul li .flex .img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.solution-yd-page .application-2 .list ul{
  margin: -10px; 
}
.solution-yd-page .application-2 .list ul li{
  padding: 10px;
}
.application-page .application-2 .list ul li .flex .content .gallery ul{
  display: block;
}
.application-page .application-3 {
  padding-bottom: 110px;
  text-align: center;
}
.application-page .application-3 span.h2:after {
  margin-left: auto;
  margin-right: auto;
}
.application-page .application-3 .list {
  margin-top: 40px;
}
.application-page .application-3 .list ul {
  border: 1px solid #e7e7e7;
}
.application-page .application-3 .list ul li {
  padding: 20px;
  border-right: 1px solid #e7e7e7;
  text-align: center;
}
.application-page .application-3 .list ul li a.img {
  display: block;
  margin: 70px 0;
  padding: 0 5%;
}
.application-page .application-3 .list ul li .btn {
  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;
}
.application-page .application-3 .list ul li .btn a {
  height: 40px;
  width: 40px;
  border: 1px solid #e7e7e7;
  margin: 0 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #aaa;
  font-size: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.application-page .application-3 .list ul li .btn a:hover {
  color: white;
  border-color: var(--color);
  background-color: var(--color);
}
.application-page .application-3 .list ul li span.h6 {
  font-size: 19px;
  line-height: 1.2;
  margin: 1em 0 .5em;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.application-page .application-3 .list ul li span.h6:hover {
  color: var(--color);
}
.application-page .application-3 .list ul li .text {
  font-size: 16px;
  color: #919191;
  line-height: 1.4;
  -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.element .text span.meta {
    font-size: 14px
}

.element .text h2 {
    font-size: 56px;
    font-weight: 700
}

.element .text .right {
    font-size: 17px
}
.element .text {
    position: relative;
    z-index: 9;
    text-align: center;
    padding: 120px 0;
    border-bottom: 1px solid #000
}
.element {
    width: 100%;
    position: relative;
    overflow: hidden
}

.element:after {
    content: '';
    background: #e8e8e8;
    width: 300%;
    height: 300%;
    position: absolute;
    left: -100%;
    top: -100%;
    transform: rotate(-12deg);
    transition: all .5s ease-out
}

.application-4 li.element:hover:after {
    transform: rotate(0deg) translateY(-100%)
}
.application-4 li.element:hover {
    color: #fff
}
.application-4 li.element:hover .text {
  color: inherit;
}
.solutions-page .about-2 .flex .left {
    width: 65%;
    padding-right: 140px;
}
.solutions-page .about-2 .flex .right {
    width: 35%;
}
.solutions-page .about-2 .flex .left span.h2 {
    margin-bottom: 0.5em;
}
.solutions-page .about-2 .flex .right p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
        cursor: pointer;
            padding: 10px;
                line-height: 2;
                max-width: 100%;
}
.about-page .about-2 .options .right .info p.active{
  background: var(--color);
  color: #fff;
}


.type-page .typeList ul li:nth-child(even) {
    flex-direction: row-reverse;
}
.solutions-page .about-2 .left .text {
      min-height: 280px;
}
.inner-page.product-det-page .i-application .text {
    width: 50%;
    font-size: 17px;
    margin: 0 auto;
}
.miaoshu-det .text {
    font-size: 17px;
}
.miaoshu-det .top .cont {
    margin-bottom: 30px;
}
.product-det-page .product-det-1 .right .flexBottom a.more:hover {
    border: 1px solid var(--color);
    color: var(--color);
}
.product-det-page .product-det-1 .right .flexBottom a.more {
    border: 1px solid var(--color);
}
.inner-page.product-det-page .miaoshu-det {
    margin-bottom: 80px;
}
.inner-page .sideBarBox .sideBarRight .productList li {
    padding: 10px 15px;
}
.inner-page .sideBarBox .sideBarRight .productList ul {
    margin: 0 -15px;
}
.inner-page .sideBarBox .sideBarRight .right .text p {
    font-size: 16px;
}


.inner-page .sideBarBox .sideBarRight .right .text .neirong {
    -webkit-line-clamp: 10;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
/*设计师-end*/
/*.pro-top {
    margin-bottom: 60px;
    display: flex;
}*/
.pro-top .left,
.pro-top .right {
  vertical-align: middle;
}
.pro-top .left img {
    width: 100%;
}
.pro-top ul {
  margin-top: 20px;
}
.pro-top ul li {
  margin-bottom: 1em;
  
}
/*.pro-top ul li span {
  display: flex;
  align-items: center;
}*/
.pro-top ul li span i {
  margin-right: .5em;
  flex-shrink: 0;
  transition: .5s;
  cursor: pointer;
  cursor: hand;
      background: var(--color);
    color: var(--color);
}
.pro-top ul li span i.active {
  transform: rotate(180deg);
}
.pro-top ul li dl {
  margin: 1em 0;
  width: 100%;
  overflow: hidden;
      padding-top: 20px;
}
.pro-top ul li dl dd {
  /*border-top: 1px solid #eee;*/
  padding: .5em;
      text-align: center;
}

.pro-top ul li .slick-track{
  margin-left: 0;
}
.pro-top ul li dl dd .img {
    border: 1px solid #eee;
    padding: 40px 30px;
}

/*.pro-top:nth-child(even) {
    flex-direction: row-reverse;
}


.pro-top:nth-child(even) .right{
    padding-right: 4% !important;
}*/

.product3 {
    padding-top: 100px;
}
.product3 .pro-dt .box {
    display: flex;
    align-items: center;
}
.product3 .pro-dt .right {
    padding-left: 5%;
}
.product3 .pro-dt .right h1 {
    font-size: 32px;
    font-family:var(--font);
    margin-bottom: 20px;
}
.product3 .pro-dt .right p {
    font-size: 17px;
    padding: 5px 0;
        text-align: justify;
}

.inner-page.product-det-page .i-application li .box img {
    object-fit: cover;
    width: 100%;
    max-height: 350px;
}
.biaoti {
    text-align: center;
        margin-bottom: 40px;
}
.biaoti h2 {
    font-size: 36px;
    line-height: 1.4;
    font-family:var(--font);
}
.biaoti p {
    font-size: 17px;
}
.inner-page.contact-page.prot-3 {
    padding-bottom: 100px;
}
.pro-top ul li dl dd .img {
    background: #f3f3f3;
}
.pro-top ul li dl dd:hover .img {
    background-color: var(--color);
}



.pro-top ul li dl dd:hover .img img {
       -webkit-transform: translateY(35%);
    -moz-transform: translateY(35%);
    -ms-transform: translateY(35%);
    transform: translateY(35%);
}
.pro-top ul li dl dd .img img {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
}

.pro-top ul li dl dd span {
    text-align: center;
    transition: .5s;
    font-weight: 500;
    font-size: 17px;
    color: #120c0b;
    display: block;
    padding: 1em 15px 0.7em;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0.5em;
}


.pro-top ul li dl dd:hover span {
    color: #fff;
-webkit-transform: translateY(-430%);
    -moz-transform: translateY(-430%);
    -ms-transform: translateY(-430%);
    transform: translateY(-430%);
}



@media screen and (max-width: 1450px) {
.pro-top ul li dl dd:hover .img img {
       -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

  .pro-top ul li dl dd:hover span {
    color: #000;
-webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
}


.case-page .product-det-1 {
    padding: 0px 0 40px;
}

.case-page .product-det-1 .left .bigImg a:before{
  display: none;
}
a.run {
    background: #eee;
    padding: 10px 0;
}

.type-page .typeList ul li .content .text p{
  line-height: 1.5;
  text-align: justify;
}

.ca-ss {
    display: flex;
}
.ca-ss .column {
    width: 50%;
}
.ca-ss span.ca-1 {
     text-align: left !important;
    width: 60%;
    padding: 0.7em 0em 0.7em 0.7em !important;
}
.ca-ss span.ca-2 {
    text-align: right !important;
     width: 40%;
}

.ca-ss span{
  font-size: 17px !important;
}


@media screen and (max-width: 1450px) {
  .ca-ss span{
  font-size: 14px !important;
}
}

.video-list .box video.pv-video {
    width: 100%;
}
.video-list li .box {
    padding: 0 20px;
    margin-bottom: 50px;
    text-align: center;
}
.video-list li .box span {
    font-size: 17px;
    text-transform: capitalize;
}

.inner-page.newdet-page .sideBarRight .category .time span {
    padding-right: 25px;
    color: var(--color);
    font-family:var(--font);
}

.inner-page.newdet-page .sideBarRight .category .time {
    font-size: 16px;
}

.newdet-page .sideBarBox .sideBarRight .text p {
    font-size: 17px;
    padding: 5px 0;
}

.inner-banner.solu {
    height: 600px;
}

.solutions-1-img ul li {
    padding: 0 10px;
}

.inner-page.product-page .sideBarBox .sideBarLeft .box .nav ul li:nth-child(2) ul {
    display: none;
}

.pro-top ul li h6 {
    font-size: 18px;
    font-family:var(--font);
    position: relative;
}

.pro-top .left {
    margin-bottom: 20px;
}

.pro-top ul li h6:after {
    position: absolute;
    content: "";
    width: 60%;
    height: 2px;
    background: #eee;
    right: 0;
    top: 50%;
}


.pro-top ul li h6 i {
  margin-right: .5em;
  flex-shrink: 0;
  transition: .5s;
  cursor: pointer;
  cursor: hand;
      background: var(--color);
    color: var(--color);
}
.pro-top ul li h6 i.active {
  transform: rotate(180deg);
}



#index-body .init-4 .box .right>.text p {
    text-align: justify;
}

#index-body .init-5 .box .right .list ul li .content .text p {
    text-align: justify;
}

#footer .footer-center .flex .slide p span {
    padding-left: 35px;
}
.solutions-page .solutions-1 .text p {
    /*text-align: justify;*/
}
.why-page .slide .left .content .text p {
    text-align: justify;
}
.inner-page .text {
    font-size: 18px;
    color: #222;
    line-height: 1.7
}
.inner-page.about-page .about-1 .flex .text p {
    /*text-align: justify;*/
    font-size: 18px;
}
    .seoPublic {
        word-break: break-word;
    }
    .seoPublic .title {
        font-size: 32px;
        font-family:var(--font);
        line-height: 1.4;
        margin-bottom: 2em;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: 22px;
        line-height: 1.4;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp:2;
        overflow: hidden;
    }

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

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

    .seoPublic .Auxil-news .list ul li .content p {
        font-weight: 300;
        font-size: 16px;
        margin: 1em 0;
        display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp:3;
      overflow: hidden;
    }

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

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

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

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

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

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

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

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

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

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

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

    .seoPublic .text a {
        color: inherit;
    }

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

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

    .seoPublic .Auxil-through a {
        display: inline-block;
        line-height: 40px;
        height: 40px;
        padding: 0 25px;
        font-size: 14px;
        color: black;
        border: 1px solid #eee;
        background: #f8f8f8;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 100%;
    }

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

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

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

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

    .seoPublic .Auxil-related .list ul li .box a.img-box {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 30px;
    }

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

    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: 22px;
        color: #111;
        font-weight: 500;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
             display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

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

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

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

    .seoPublic .Auxil-related .list ul li .box .content a.more:hover {
        color: white;
        background: var(--color);
    }
    .seoPublic .Auxil-related .list ul li .box .content a.more:hover span{
      color: white;
    }
    @media screen and (max-width: 1400px) {
        .seoPublic .title {
            font-size: 28px;
            margin-bottom: 1.5em;
        }

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

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

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

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

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

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

    @media screen and (max-width: 1000px) {
      .inner-banner{
        margin-top: 120px;
      }
        .seoPublic .title {
            font-size: 24px;
            margin-bottom: 1em;
        }
        .seoIndustry.Auxil-industry {
    display: none;
}

        #cp-Nav {
            display: block;
        }

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

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

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

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

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

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

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

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

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

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

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

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

        .seoPublic > div {
            padding: 30px 0;
        }
        .seoPublic .Auxil-about .box .right .text {
            max-height: none;
        }
        .product3 .pro-dt .box {
          flex-wrap: wrap;
        }
        .product3 .pro-dt .box .left {
          width: 100%;
        }
        .product3 .pro-dt .box .right {
          width: 100%;
          padding-left: 0;
          margin-top: 30px;
        }
  .about-page .about-2 .flex .left {
    width: 100%;
    padding-right: 0;
  }
  .about-page .about-2 .flex .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .about-page .about-2 .flex {
    flex-wrap: wrap;
  }
  .solutions-page .about-2 .left .text {
    min-height: auto;
  }
  .about-page .about-2 .right .info {
    padding: 5%;
  }
    }


    