/*@font-face {
  font-family: 'Barlow-Regular';
  src: url(../fonts/Barlow-Regular.ttf) format('truetype'), url(../fonts/Barlow-Regular.eot) format('eot'), url(../fonts/Barlow-Regular.woff) format('woff'), url(../fonts/Barlow-Regular.woff2) format('woff2');
}
@font-face {
  font-weight: bold;
  src: url(../fonts/Barlow-Bold.ttf) format('truetype'), url(../fonts/Barlow-Bold.eot) format('eot'), url(../fonts/Barlow-Bold.woff) format('woff'), url(../fonts/Barlow-Bold.woff2) format('woff2');
}
@font-face {
  font-weight: 300;
  src: url(../fonts/Barlow-Light.ttf) format('truetype'), url(../fonts/Barlow-Light.eot) format('eot'), url(../fonts/Barlow-Light.woff) format('woff'), url(../fonts/Barlow-Light.woff2) format('woff2');
}
@font-face {
  font-family: 'BarlowCondensed-Regular';
  src: url(../fonts/BarlowCondensed-Regular.ttf) format('truetype'), url(../fonts/BarlowCondensed-Regular.eot) format('eot'), url(../fonts/BarlowCondensed-Regular.woff) format('woff'), url(../fonts/BarlowCondensed-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'BarlowCondensed-Light';
  src: url(../fonts/BarlowCondensed-Light.ttf) format('truetype'), url(../fonts/BarlowCondensed-Light.eot) format('eot'), url(../fonts/BarlowCondensed-Light.woff) format('woff'), url(../fonts/BarlowCondensed-Light.woff2) format('woff2');
}
@font-face {
  font-weight: bold;
  src: url(../fonts/BarlowCondensed-SemiBold.ttf) format('truetype'), url(../fonts/BarlowCondensed-SemiBold.eot) format('eot'), url(../fonts/BarlowCondensed-SemiBold.woff) format('woff'), url(../fonts/BarlowCondensed-SemiBold.woff2) format('woff2');
}*/
input::-webkit-input-placeholder {
  color: #8e8e8e;
}
textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
input::-moz-placeholder {
  color: #8e8e8e;
}
input:-moz-placeholder {
  color: #8e8e8e;
}
input:-ms-input-placeholder {
  color: #8e8e8e;
}
body {
  margin: 0;
  padding: 0;
  --color: #02459e;
  --yellow: #fccf1b;
  font-family: 'Source Sans 3', 'Arial', sans-serif;
  /*--font: 'BarlowCondensed-SemiBold';
  --inner-font: 'Barlow-Bold';*/
  background-color: #fff;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1530px;
  margin: 0 auto;
  position: relative;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#header .header-fold {
  width: 100px;
  height: 100px;
  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;

}
#header .nav {
  position: relative;
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
  height: 100px;
  padding-left: 12px;
}
#header .nav .ui.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 30px;
  font-size: 20px;
  color: #000;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  border-bottom: 1px solid transparent;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  border-color: var(--color);
  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: 12px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 300px;
  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: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover > ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin-left: 60px;
}
#header .nav .ui.menu .right .line {
  margin: 0 20px;
  width: 1px;
  height: 25px;
  background-color: #000;
}
#header .nav .ui.menu .right .h-search{
  cursor: pointer;
}
#header .nav .ui.menu .right .h-inquiry {
  width: 255px;
  height: 100px;
  background-color: var(--color);
  color: white;
  margin-left: 30px;
  cursor: pointer;
}
.language-box .zhuyu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box .zhuyu span {
  margin-left: 12px;
  margin-right: 5px;
  font-size: 18px;
}
.language-box .zhuyu i {
  font-size: 24px;
}
.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;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
.home-title h3 {
  font-weight: bold;
  line-height: 1.2;
}
.home-title h3 span {
  color: var(--color);
}
.btn-go {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  color: #000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-go:hover span {
  margin-right: 20px;
}
.btn-go span {
  font-size: 20px;
  margin-right: 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-go.white {
  border-bottom: 2px solid white;
  color: white;
}
.btn-go.white:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}
@-webkit-keyframes bth-float {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes bth-float {
  0% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bth-float {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
.submit {
  width: 195px;
  height: 50px;
  background: var(--color);
  border-radius: 35px;
  border: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  text-align: center;
}
.submit input[type="submit"] {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  color: white;
  line-height: 55px;
  position: relative;
  z-index: 2;
  background-color: transparent;
  border: none;
}
.submit::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  right: 0;
  top: 0;
  -webkit-transform: translateX(-400px);
  -moz-transform: translateX(-400px);
  -ms-transform: translateX(-400px);
  transform: translateX(-400px);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.submit:hover::before {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#banner {
  margin-top: 100px;
}
#banner .banner-content .left {
  width: 100px;
  position: relative;
}
#banner .banner-content .left .paging {
  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%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#banner .banner-content .left .paging span {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.4);
}
#banner .banner-content .left .paging ol {
  width: 1px;
  height: 160px;
}
#banner .banner-content .left .paging ol li.active {
  background-color: var(--color);
}
#banner .banner-content .left .paging ol li {
  width: 100%;
  height: 50%;
  background-color: #e6e6e6;
  display: block;
}
#banner .banner-content ul {
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .content {
  width: 100%;
  padding: 0 140px;
  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%);
  color: white;
  z-index: 5;
}
#banner .banner-content ul li .content h2 {
  font-size: 60px;
  font-weight: bold;
  color: white;
  line-height: 1.1;
  margin-bottom: 50px;
  max-width: 520px;
}
#banner .banner-content ul li .content .banner-btn {
  display: block;
  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: 290px;
  height: 75px;
  background-color: white;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  padding-left: 48px;
  padding-right: 20px;
  overflow: hidden;
  position: relative;
}
#banner .banner-content ul li .content .banner-btn::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 75px;
  background-color: var(--color);
  right: -215px;
  top: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .banner-content ul li .content .banner-btn:hover::before {
  right: 0;
}
#banner .banner-content ul li .content .banner-btn:hover span {
  color: white;
}
#banner .banner-content ul li .content .banner-btn span {
  font-size: 24px;
  position: relative;
  z-index: 2;
  color: #000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .banner-content ul li .content .banner-btn i {
  font-size: 30px;
  color: white;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#banner .banner-content ul .slick-dots {
  width: 220px;
  height: 80px;
  position: absolute;
  left: 0;
  bottom: 0;
  /*background-color: white;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#banner .banner-content ul .slick-dots li.slick-active {
  background-color: white;
  border: 2px solid var(--color);
}
#banner .banner-content ul .slick-dots li {
  margin-right: 15px;
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #bfbfbf;
  border: 2px solid transparent;
}
#banner .banner-content ul .slick-dots li:last-child {
  margin-right: 0;
}
#banner .banner-content ul .slick-dots li button {
  display: none;
}
@-webkit-keyframes img_fly {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(600px);
    transform: translateY(600px);
  }
}
@-moz-keyframes img_fly {
  0% {
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -moz-transform: translateY(600px);
    transform: translateY(600px);
  }
}
@keyframes img_fly {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(600px);
    -moz-transform: translateY(600px);
    transform: translateY(600px);
  }
}
@-webkit-keyframes img_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes img_rotate {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes img_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#index-body .category {
  padding: 100px 0 100px;
  position: relative;
}
#index-body .category .category-content .home-title h3 {
  font-size: 45px;
}
#index-body .category .category-content ul {
  margin: 45px -17px 0;
  position: relative;
}
#index-body .category .category-content ul li {
  padding: 0 17px;
}
#index-body .category .category-content ul li:hover .title {
  background-color: var(--color);
}
#index-body .category .category-content ul li:hover .title h4 {
  color: white;
}
#index-body .category .category-content ul li .img-box {
  width: 100%;
  overflow: hidden;
  display: block;
}
#index-body .category .category-content ul li .title {
  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: 100%;
  height: 80px;
  background-color: #f8f8f8;
}
#index-body .category .category-content ul .slick-arrow {
  width: 70px;
  height: 70px;
  background-color: transparent;
  border: 5px solid #e0e0e0;
  border-radius: 50%;
  color: transparent;
  position: absolute;
  top: 26.5%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .category-content ul .slick-arrow:hover {
  border-color: var(--color);
}
#index-body .category .category-content ul .slick-arrow:hover::before {
  color: var(--color);
}
#index-body .category .category-content ul .slick-arrow::before {
  content: "\e6e8";
  font-family: "iconfont";
  font-size: 40px;
  color: #e0e0e0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .category .category-content ul .slick-prev {
  left: -105px;
}
#index-body .category .category-content ul .slick-prev::before {
  content: "\ebbf";
}
#index-body .category .category-content ul .slick-next {
  right: -105px;
}
#index-body .category .category-content ul .slick-dots {
  display: block;
  width: -webkit-calc(100% - 34px);
  width: -moz-calc(100% - 34px);
  width: calc(100% - 34px);
  height: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #edecec;
  margin: 60px auto 0;
}
#index-body .category .category-content ul .slick-dots li.slick-active {
  background-color: var(--color);
}
#index-body .category .category-content ul .slick-dots li {
  width: 255px;
  height: 3px;
}
#index-body .category .category-content ul .slick-dots button {
  display: none;
}
#index-body .product {
  padding: 100px 0 100px;
  background: url("../images/pro-icon.png") no-repeat left top;
  position: relative;
}

#index-body .product ul {
  margin: 0 -10px;
}
#index-body .product ul .slick-dots {
  display: block;
  width: 100%;
  height: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #edecec;
  margin: 70px 0 0 auto;
}
#index-body .product ul .slick-dots li.slick-active {
  background-color: var(--color);
}
#index-body .product ul .slick-dots li {
  width: 255px;
  height: 3px;
  padding: 0;
}
#index-body .product ul .slick-dots button {
  display: none;
}
#index-body .product ul li {
  padding: 0 10px;
}
/*#index-body .product ul li:hover .box .title {
  bottom: 0;
}*/
#index-body .product ul li .box {
  position: relative;
}
#index-body .product ul li .box .title {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  height: 80px;
  width: 100%;
  background-image:linear-gradient(to right, var(--color) 0%, #8cd406 100%);
  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;
}
#index-body .about {
  padding: 50px 0 50px;
  position: relative;
}
#index-body .about .about-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#index-body .about .about-content .left {
  width:50%;
  padding-right: 60px;
}
#index-body .about .about-content .left p {
  margin-bottom: 80px;
}
#index-body .about .about-content .right {
  width:50%;
  position: relative;
}
@keyframes play_scale{
  0%{
    transform: translate(-50%,-50%) scale(0.85);
    opacity: 1;
  }
  100%{
    transform: translate(-50%,-50%) scale(1);
    opacity: 0;
  }
}
#index-body .about .about-content .right a.play{
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
  display: flex;
  width: 120px;
  height: 120px;
  justify-content: center;
  align-items: center;
}
#index-body .about .about-content .right a.play img{
  position: relative;
  z-index: 4;
  width:75px;
}
#index-body .about .about-content .right a.play::before{
  content:"";
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
  animation: play_scale 2s linear infinite;
  border-radius: 50%;
}
#index-body .about .about-content .right a.play::after{
  content:"";
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: 100px;
  height: 100px;
  display: block;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
  animation: play_scale 2s linear infinite;
  animation-delay: 0.5s;
  border-radius: 50%;
}
#index-body .about .about-b ul {
  margin-top: 75px;
  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;
}
#index-body .about .about-b 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;
}
#index-body .about .about-b ul li h4 {
  font-size: 80px;
 font-weight: bold;
  color: var(--color);
}
#index-body .about .about-b ul li .text span {
  color: var(--color);
}
#index-body .advantage {
  width: 100%;
  position: relative;
}
#index-body .advantage .advantage-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#index-body .advantage .advantage-content .left{
  padding-right: 45px;
  width: 50%;
}
#index-body .advantage .advantage-content .home-title h3 {
  font-size: 45px;
  font-weight: bold;
}
#index-body .advantage .advantage-content ul {
  margin-top: 50px;
}
#index-body .advantage .advantage-content ul li.active {
  background-color: #fbfbfb;
}
#index-body .advantage .advantage-content ul li.active .box {
  height: 135px;
  border-color: transparent;
}
#index-body .advantage .advantage-content ul li.active .box .title span {
  color: var(--color);
}
#index-body .advantage .advantage-content ul li.active .box p {
  max-height: 70px;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .advantage .advantage-content ul li {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
#index-body .advantage .advantage-content ul li .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-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;
  height: 105px;
  margin-left: 20px;
  border-bottom: 1px dashed #e0e0e0;
  max-width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .advantage .advantage-content ul li .box .title {
  width: 100%;
}
#index-body .advantage .advantage-content ul li .box .title h4 {
  font-weight: bold;
  width: -webkit-calc(100% - 45px);
  width: -moz-calc(100% - 45px);
  width: calc(100% - 45px);
}
#index-body .advantage .advantage-content ul li .box p {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  max-height: 0;
  overflow: hidden;
  padding-left: 45px;
}
#index-body .advantage .right {
  width: 50%;
}
#index-body .application {
  margin: 150px 0 150px;
}
#index-body .application .home-title h3 {
  font-weight: bold;
}
#index-body .application .application-content {
  margin-left: auto;
}
#index-body .application .application-content .content {
  width: 100%;
}
#index-body .application .application-content .content ul {
  margin: 60px -16px 0;
}
#index-body .application .application-content .content ul .slick-dots {
  width: calc(100% - 32px);
  height: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #edecec;
  margin-top: 70px;
  margin-left: 16px;
}
#index-body .application .application-content .content ul .slick-dots li.slick-active {
  background-color: var(--color);
}
#index-body .application .application-content .content ul .slick-dots li {
  width: 255px;
  height: 3px;
  padding: 0;
}
#index-body .application .application-content .content ul .slick-dots button {
  display: none;
}
#index-body .application .application-content .content ul li {
  padding: 0 16px;
  position: relative;
  height: 360px;
}
#index-body .application .application-content .content ul li .img_box{
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
}
#index-body .application .application-content .content ul li .img_box::before{
  height: 100%;
  width: 100%;
  content:"";
  position: absolute;
  inset:0;
  display: block;
  background-image: linear-gradient(to top,rgba(2,69,159,.6) 0%,rgba(2,69,159,0) 50%);
}
#index-body .application .application-content .content ul li  .img_box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#index-body .application .application-content .content ul li:hover .title {
  bottom: 0;
}
#index-body .application .application-content .content ul li .box{
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}
#index-body .application .application-content .content ul li .title {
  width: 100%;
  height: 55px;
  color: white;
  position: absolute;
  bottom: -100%;
  left: 0;
  background-image: linear-gradient(to right,var(--color) 0%,#8cd406 100%);
  transition: 0.5s;
  text-transform: uppercase;
}
#index-body .news .home-title h3 {
  font-weight: bold;
}
#index-body .news .home-title h3,
#index-body .news .home-title p {
  text-transform: uppercase;
}
#index-body .news .news-content {
  margin-top: 100px;
}
#index-body .news .news-content ul {
  margin: 0 -55px;
}
#index-body .news .news-content ul li {
  padding: 0 55px;
}
#index-body .news .news-content ul li .box .date {
  border-bottom: 4px solid var(--color);
  padding-bottom: 10px;
}
#index-body .news .news-content ul li .box h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .news .news-content ul li .box p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 20px 0 40px;
}
#index-body .partner {
  padding: 100px 0 115px;
}
#index-body .partner .partner-content .home-title h3 {
  font-weight: bold;
}
#index-body .partner .partner-content ul {
  margin: 55px -10px 0;
}
#index-body .partner .partner-content ul li {
  padding: 0 10px;
}
#index-body .partner .partner-content ul li .img_box {
  height: 140px;
  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: #f8f8f8;*/
}
#footer {
  position: relative;
  background-color: #0d0b14;
  padding-top: 75px;
}
#footer .f-info .share a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #292b34;
  margin-right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .f-info .share a i {
  font-size: 20px;
  color: white;
}
#footer .f-info .share a:hover {
  background-color: var(--color);
}
#footer .f-info .share a:last-child {
  margin-right: 0;
}
#footer .f-info form {
  margin-top: 60px;
  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;
}
#footer .f-info form input[type='text'] {
  width: 351px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  padding: 0 20px 0 60px;
  color: white;
  font-size: 16px;
  margin-right: 20px;
}
#footer .f-info form input[type='text']:last-child {
  margin-right: 0;
}
#footer .f-info form input[name='name'] {
  background: url("../images/form-name.png") no-repeat 20px center;
}
#footer .f-info form input[name='mail'] {
  background: url("../images/form-email.png") no-repeat 20px center;
}
#footer .f-info form input[name='content'] {
  width: 580px;
  background: url("../images/form-message.png") no-repeat 20px center;
}
#footer .f-info form input[type='submit'] {
  width: 150px;
  height: 50px;
  background-color: #02459e;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .f-info form input[type='submit']:hover {
  background-color: rgba(98, 153, 224, 0.6);
}
#footer .footer-t {
  padding: 85px 15px 150px;
}
#footer .footer-t ul {
  margin: 0 -15px;
}
#footer .footer-t ul li.link span {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#footer .footer-t ul li.link span:hover::before {
  color: var(--color);
}
#footer .footer-t ul li.link span::before {
  content: "\e6eb";
  font-family: "iconfont";
  font-size: 8px;
  color: white;
  margin-right: 10px;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  transition: color 0.5s;
}
#footer .footer-t ul li {
  padding: 0 15px;
}
#footer .footer-t ul li:last-child {
  max-width: 385px;
}
#footer .footer-t ul li .box #ewm img,
#footer .footer-t ul li .box #ewm canvas {
  width: 150px;
  height: auto;
  border: 13px solid #fff;
}
#footer .footer-t ul li .box ol li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 0;
}
#footer .footer-t ul li .box ol li:last-child {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#footer .footer-t ul li .box ol li:last-child span {
  margin-top: -5px;
}
#footer .footer-t ul li .box ol li span {
  margin-left: 15px;
  line-height: 1.4;
  width: -webkit-calc(100% - 40px);
  width: -moz-calc(100% - 40px);
  width: calc(100% - 40px);
}
#footer .footer-t ul li .box ol li span:hover {
  color: #8e8e8e;
}
#footer .footer-t ul li .box h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: white;
}
#footer .footer-t ul li .box form {
  position: relative;
  width: 430px;
  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;
}
#footer .footer-t ul li .box form input[type='text'] {
  width: -webkit-calc(50% - 20px);
  width: -moz-calc(50% - 20px);
  width: calc(50% - 20px);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background-color: transparent;
  font-size: 18px;
  padding-bottom: 20px;
  margin-bottom: 45px;
  display: block;
}
#footer .footer-t ul li .box form input[type='submit'] {
  width: 150px;
  height: 45px;
  font-size: 18px;
  line-height: 45px;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t ul li .box form input[type='submit']:hover {
  color: white;
  background-color: var(--color);
  border-color: var(--color);
}
#footer .footer-t ul li .box form input::-webkit-input-placeholder {
  color: #8e8e8e;
}
#footer .footer-t ul li .box form textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
#footer .footer-t ul li .box span {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 1.2;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  transition: color 0.5s;
  color: white;
  font-weight: 300;
}
#footer .footer-t ul li .box span:last-child {
  margin-bottom: 0px;
}
#footer .footer-t ul li:nth-child(5) .box {
  max-width: 300px;
}
#footer .footer-t ul li:nth-child(5) .box span {
  max-width: -webkit-calc(100 - 40px);
  max-width: -moz-calc(100 - 40px);
  max-width: calc(100 - 40px);
}
#footer .footer-b {
  background-color: var(--color);
}
#footer .footer-b .footer-b-box {
  height: 55px;
}
#footer .footer-b .footer-b-box span {
  display: block;
  font-size: 18px;
  color: white;
}
#footer .footer-b .footer-b-box img {
  width: 260px;
  height: auto;
  padding-top: 7px;
  margin-left: 5px;
}
@media (max-width: 1900px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 15px;
  }
  #index-body .about .about-content .right {
    width: 50%;
  }
  #header .nav .ui.menu .right {
    margin-left: 30px;
  }
}
@media (max-width: 1700px) {
  #header .nav .logo{
    max-width: 160px;
  }
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  .font-48 {
    font-size: 44px;
  }
  #header .nav .ui.menu .right {
    margin-left: 30px;
  }
  #header .nav {
    padding-left: 0;
  }
  #header .nav .logo {
    width: 150px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
  }
  #banner .banner-content ul li .content {
    padding: 0 80px;
  }
  #index-body .about {
    padding: 50px 0;
  }
  #index-body .application .application-content {
    width: 1400px !important;
    margin: 0 auto;
  }
  #index-body .application .application-content .content {
    width: 1400px !important;
  }
  #index-body .product ul .slick-dots {
    width: 1370px !important;
    margin: 70px auto 0;
  }
  #index-body .application .application-content .content ul {
    margin: 90px 0 0;
  }
  #index-body .application .application-content .content ul .slick-dots {
    width: -webkit-calc(100% - 32px) !important;
    width: -moz-calc(100% - 32px) !important;
    width: calc(100% - 32px) !important;
    margin: 70px auto 0;
  }
  #index-body .application {
    margin: 120px 0;
  }
  #footer .f-info form input[name='content'],
  #footer .f-info form input[type='text'] {
    width: -webkit-calc((100% - 210px)/3);
    width: -moz-calc((100% - 210px)/3);
    width: calc((100% - 210px)/3);
  }
  #header .nav .ui.menu .right .h-inquiry span{
    font-size: 16px;
  }
  #header .nav .ui.menu .right .h-inquiry {
    width: 185px;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .right .h-inquiry {
    display: none;
  }
  #index-body .product ul .slick-dots {
    width: 1170px !important;
  }
  #index-body .category .category-content .home-title h3 {
    font-size: 45px;
  }
  .font-48 {
    font-size: 36px;
  }
  #header .nav {
    padding-right: 15px;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 44px;
    margin-bottom: 30px;
  }
  #banner .banner-content ul li .content .banner-btn {
    width: 228px;
    height: 65px;
    padding-left: 20px;
  }
  #banner .banner-content ul li .content .banner-btn span {
    font-size: 20px;
  }
  #banner .banner-content ul li .content .banner-btn::before {
    height: 65px;
    right: -158px;
  }
  #banner .banner-content ul .slick-dots {
    width: 205px;
    height: 50px;
  }
  #index-body .about .about-content .left p {
    margin-bottom: 30px;
  }
  #index-body .product {
    padding: 80px 0 120px;
    background: none;
  }
  #index-body .advantage .right {
    height: 600px;
  }
  #index-body .advantage .right img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #index-body .application .application-content,
  #index-body .application .application-content .content {
    width: 1200px !important;
  }
  #index-body .product ul li .box .title h4 {
    font-size: 20px;
  }
  #index-body .application .application-content .content ul li {
    height: 420px;
  }
  #footer .footer-t > ul > li{
    width: 33.333333%;
    margin: 20px 0;
  }
  #footer .footer-t > ul > li:last-child {
    max-width: 33.3333%;
  }
  #footer .footer-t {
    padding: 85px 15px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 970px;
  }
  #banner .banner-content ul li .content {
    padding: 0 15px;
    width: 970px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 18px;
    margin-right: 20px;
  }
  #header .nav .logo {
    width: 140px;
  }
  #header .header-fold {
    display: none;
  }
  #header .nav {
    width: 100%;
    padding: 0 15px;
  }
  #banner .banner-content .left {
    display: none;
  }
  #banner .banner-content ul {
    width: 100%;
  }
  #index-body .partner .partner-content .home-title h3 {
    font-size: 32px;
  }
  #index-body .category {
    padding: 85px 0;
    position: relative;
  }
  #index-body .category .category-content .home-title h3 {
    font-size: 40px;
  }
  #index-body .category .category-content .home-title h3 br {
    display: none;
  }
  #index-body .about .about-content .right {
    height: 420px;
  }
  #index-body .about .about-content .right > img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #index-body .about .about-b ul li h4 {
    font-size: 60px;
  }
  #index-body .product ul .slick-dots {
    width: 970px !important;
  }
  #index-body .advantage .advantage-content {
    position: unset;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
  }
  #index-body .advantage .advantage-content ul li .box {
    max-width: 100%;
    margin-left: 0;
  }
  #index-body .advantage .advantage-content .home-title h3 {
    font-size: 30px;
  }
  .font-55 {
    font-size: 40px;
  }
  #index-body .application .application-content,
  #index-body .application .application-content .content {
    width: 1000px !important;
  }
  #index-body .application .application-content .content ul {
    margin: 60px 0 0;
  }
  #index-body .application {
    margin: 80px 0;
  }
  #index-body .partner {
    padding: 80px 0;
  }
  #footer .footer-t > ul > li {
    width: 33.33333%;
  }
  #footer .footer-t {
    padding: 85px 15px 65px;
  }
  #footer .footer-b .footer-b-box {
    padding: 15px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .language-box .zhuyu span {
    margin-left: 10px;
    font-size: 18px;
  }
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block !important;
  }
}
@media (max-width: 1000px) {
  
  .ui.container {
    width: 700px;
  }
  #banner .banner-content ul li .content {
    width: 700px;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 35px;
  }
  #index-body .about .about-content .left {
    margin-bottom: 45px;
    width: 100%;
    padding-right: 0;
  }
  #index-body .about .about-content .right {
    height: auto;
    width: 100%;
  }
  #index-body .about .about-b ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .about .about-b ul li {
    margin: 15px 0;
     width: 50%;
  }
  #index-body .advantage .advantage-content .left{
    margin-bottom: 45px;
    width: 100%;
    padding-right: 0;
  }
  #index-body .advantage .advantage-content .right{
    width: 100%;
    height: auto;
  }
  .font-45 {
    font-size: 30px;
  }
  #index-body .about {
    padding: 0;
  }
  #index-body .product {
    padding: 80px 0;
  }
  #index-body .application .application-content,
  #index-body .application .application-content .content {
    width: 700px !important;
  }
  #footer .f-info form input[name='content'],
  #footer .f-info form input[type='text'] {
    width: -webkit-calc(50% - 20px);
    width: -moz-calc(50% - 20px);
    width: calc(50% - 20px);
    margin-bottom: 30px;
    margin-right: 0;
  }
  #footer .f-info form {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #footer .f-info form input[type='submit'] {
    margin-right: auto;
    margin-left: 40px;
  }
  #footer .footer-t ul .link {
    display: none;
  }
  #footer .footer-t > ul > li {
    width: 50%;
  }
  #footer .footer-b .footer-b-box span {
    text-align: center;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  #banner .banner-content ul li .content {
    width: 500px;
  }
  #banner .banner-content ul li .content h2 {
    margin-bottom: 0;
  }
  #banner .banner-content ul li .content .banner-btn {
    display: none;
  }
  #index-body .about .about-content .left .home-title {
    margin-bottom: 60px;
  }
  #index-body .about .about-content .left .home-title h3 br {
    display: none;
  }
  #index-body .about .about-b ul li .text {
    margin-left: 20px;
  }
  #index-body .about .about-b ul {
    margin-top: 45px;
  }
  #index-body .about .about-b ul li {
    margin: 15px 0;
    width: 48%;
  }
  #index-body .about .about-b ul li h4 {
    font-size: 50px;
  }
  #index-body .product .product-content {
    width: 500px;
    padding: 0 15px;
  }
  #index-body .advantage,
  #index-body .application,
  #index-body .partner {
    display: none;
  }
  #index-body .news {
    padding-bottom: 60px;
  }
  #footer .f-info form input[name='content'],
  #footer .f-info form input[type='text'] {
    width: 100%;
  }
  #footer .f-info form input[type='submit'] {
    margin: 0 auto;
  }
  #footer .f-info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #footer .f-info .container .share {
    margin-top: 60px;
  }
  #footer .footer-t > ul > li {
    width: 100%;
  }
  #footer .footer-t ul li:nth-child(5) .box {
    max-width: 100%;
    margin-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #banner .banner-content ul li .content,
  #index-body .product .product-content {
    width: 100%;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 26px;
  }
  #index-body .category .category-content .home-title h3 {
    font-size: 28px;
  }
  .font-48 {
    font-size: 28px;
  }
  #index-body .about .about-b ul li {
    width: 100%;
  }
  #index-body .about .about-b ul li {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .font-55 {
    font-size: 29px;
  }
  #index-body .news .home-title h3 {
    margin-top: 10px;
  }
  #index-body .news .news-content {
    margin-top: 20px;
  }
}
.text-h:hover {
  color: var(--color);
}
.text-color {
  color: var(--color);
}

























.more_cont {
  overflow: hidden;
  position: relative;
  background-color: var(--color);
  color: #fff;
  cursor: pointer;
}
.more_cont span,
.more_cont i {
  position: relative;
  z-index: 2;
}
.more_cont::before {
  background-color: var(--color);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s;
  -o-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;
  -o-transform-origin: left;
  transform-origin: left;
  z-index: 1;
}
.more_cont:hover::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
.sca_ani {
  -webkit-animation: sca_ani 2s linear infinite;
  -moz-animation: sca_ani 2s linear infinite;
  -o-animation: sca_ani 2s linear infinite;
  animation: sca_ani 2s linear infinite;
}
@-webkit-keyframes sca_ani {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes sca_ani {
  0% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes sca_ani {
  0% {
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sca_ani {
  0% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.sca_ani_2 {
  -webkit-animation: sca_ani_2 2s linear infinite;
  -moz-animation: sca_ani_2 2s linear infinite;
  -o-animation: sca_ani_2 2s linear infinite;
  animation: sca_ani_2 2s linear infinite;
}
@-webkit-keyframes sca_ani_2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@-moz-keyframes sca_ani_2 {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -moz-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@-o-keyframes sca_ani_2 {
  0% {
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -o-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes sca_ani_2 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

.mt-130 {
  margin-top: 90px;
}
.pt-90 {
  padding-top: 90px;
}
.pb-90 {
  padding-bottom: 90px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-70 {
  padding-top: 70px;
}
.pb-70 {
  padding-bottom: 70px;
}
.font-60 {
  font-size: 60px;
  line-height: 1.2;
}
.font-48 {
  font-size: 48px;
}
.font-40 {
  font-size: 40px;
}
.font-36 {
  font-size: 34px;
}
.font-30 {
  font-size: 30px;
}
.font-24 {
  font-size: 24px;
}
.font-20 {
  font-size: 20px;
}
.font-18 {
  font-size: 18px;
  line-height: 2;
}
.font-16 {
  font-size: 16px;
  line-height: 2;
}
.title_subline_c span{
  border-bottom: 1px solid var(--color);
}
.title_subline_c_w span{
  border-bottom: 1px solid #fff;
}
.inner-banner{
  margin-top: 100px;
}
.inner-banner .cat_cont {
  height: 400px;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  display: none;
}
.inner-banner .cat_cont .container {
  height: 100%;
}
.inner-banner .cat_cont .container .cat_name {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
.inner-banner .bottom_c .left a {
  height: 70px;
  line-height: 70px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 26px;
  position: relative;
}
.inner-banner .bottom_c .left a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  display: block;
  background: #ccc;
  top: 50%;
  margin-top: -7px;
  right: 0px;
}
.inner-banner .bottom_c .left a::before {
  position: absolute;
  content: '';
  left: 50%;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background-color: rgba(218, 37, 28, 0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inner-banner .bottom_c .left a:hover,
.inner-banner .bottom_c .left a.active {
  color: var(--color);
}
.inner-banner .bottom_c .left a:hover::before,
.inner-banner .bottom_c .left a.active::before {
  width: 100%;
  background-color: var(--color);
  left: 0;
}
.inner-banner .bottom_c .right {
  text-align: left;
  margin: 20px 0;
  font-size: 16px;
  line-height: 2;
  text-transform: capitalize;
  /*font-weight: bold;*/
}
.inner-banner .bottom_c .right .img {
  width: 15px;
  margin-right: 8px;
  margin: 5px 12px 0 0;
}
.inner-banner .bottom_c .right a {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inner-banner .bottom_c .right a:first-child{
  color: var(--color);
}
.inner-banner .bottom_c .right a:hover {
  color: var(--color);
}
.suatainable-page .init-1 .container {
  height: 500px;
  position: relative;
}
.suatainable-page .init-1 .container .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.suatainable-page .init-1 .container .cont {
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  width: 780px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 30px;
}
.suatainable-page .init-2 .container .title_c .left {
  font-weight: bold;
  text-transform: uppercase;
  font-weight: bold;
}
.suatainable-page .init-2 .container .title_c .left .tips {
  color: var(--color);
}
.suatainable-page .init-2 .container .title_c .left .line {
  width: 250px;
  height: 1px;
  background-color: var(--color);
  margin-bottom: 10px;
}
.suatainable-page .init-2 .container .title_c .right {
  font-size: 16px;
}
.suatainable-page .init-2 .container .content {
  margin: 30px -30px 0;
}
.suatainable-page .init-2 .container .content .list {
  margin-top: 30px;
  padding: 0 30px;
}
.suatainable-page .init-2 .container .content .list .box {
  position: relative;
}
.suatainable-page .init-2 .container .content .list .box .img {
  display: block;
  width: 100%;
}
.suatainable-page .init-2 .container .content .list .box .text {
  font-weight: bold;
  font-weight: bold;
  padding: 16px 30px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  color: #fff;
}
.suatainable-page .init-2 .container .content .list .box:hover .text {
  background-color: #000;
}
.suatainable-page .init-3 .container .tips {
  text-align: center;
  font-weight: bold;
  font-weight: bold;
  text-transform: uppercase;
  color: #181818;
}
.suatainable-page .init-3 .container .content .slick {
  margin: 40px -13px 0;
}
.suatainable-page .init-3 .container .content .slick .slick-track {
  margin-left: 0;
}
.suatainable-page .init-3 .container .content .slick li {
  padding: 0 13px;
}
.suatainable-page .init-3 .container .content .slick li .box {
  display: block;
  overflow: hidden;
}
.suatainable-page .init-3 .container .content .slick li .box img {
  width: 100%;
}
.about-page .init-1 .container {
  position: relative;
}
.about-page .init-1 .container .sub_img {
  position: absolute;
  width: 460px;
  bottom: 0;
  right: -200px;
  z-index: -1;
}
.about-page .init-1 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  text-align: center;
}
.about-page .init-1 .container .des {
  margin-top: 26px;
  line-height: 2;
}
.about-page .init-1 .container .imgs{
  margin-top: 85px;
}
.about-page .init-1 .container .imgs .left,
.about-page .init-1 .container .imgs .right{
  max-width: 48%;
}
.about-page .init-1 .container .list_cont {
  margin-top: 30px;
  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;
}
.about-page .init-1 .container .list_cont .list {
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin: 20px 0 0 0;
}
.about-page .init-1 .container .list_cont .list .num {
  font-size: 100px;
  color: var(--color);
  font-weight: bold;
  display: inline-block;
  line-height: 0.8;
}
.about-page .init-1 .container .list_cont .list .text {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 12px;
  line-height: 1.8;
}
.about-page .init-1 .container .list_cont .list2 {
  margin: 20px 20px 0;
}


.about-page .init-2{
  margin: 130px 0 160px;
}
.about-page .init-2 .ui.container{
  width: 1750px;
}

.about-page .init-2 .ui.container .content{
  margin-top: 120px;
  width: 1750px;
}
.about-page .init-2 .ui.container .content ul{
  display: flex;
  justify-content: flex-end;
}
.about-page .init-2 .ui.container .content ul:last-child {
  justify-content: flex-start;
  margin-top: 125px;
  transform: translateX(-35px);
}
.about-page .init-2 .ui.container .content ul:last-child li .box{
  flex-direction: row-reverse;
}
.about-page .init-2 .ui.container .content ul:last-child li .box .left{
  display: flex;
  align-items: flex-end;
}
.about-page .init-2 .ui.container .content ul:last-child li .box::before{
  right: 18px;
  left: unset;
  top: unset;
  bottom: 35px;
}
.about-page .init-2 .ui.container .content ul:last-child li .left .big-dot {
    top: unset;
    bottom:100%;
}
.about-page .init-2 .ui.container .content ul:last-child li:last-child .left .big-dot img{
  display: none;
}
.about-page .init-2 .ui.container .content ul:last-child li .right h4 {
    margin-top: 20px;
    margin-bottom: 0;
}
.about-page .init-2 .ui.container .content ul:last-child li .right {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 35px;
    justify-content: flex-end;
}
.about-page .init-2 .ui.container .content ul:last-child li .right p {
    padding-left: 0;
    text-align: right;
}







.about-page .init-2 .ui.container .content ul li{
  margin-left: 70px;
  position: relative;
}
.about-page .init-2 .ui.container .content ul:last-child li{
  margin-left: 0;
  margin-right: 75px;
}
.about-page .init-2 .ui.container .content ul li:first-child{
  margin-left: 0;
}
.about-page .init-2 .ui.container .content ul li .box{
  width: 490px;
  height: 345px;
  display: flex;
  position: relative;
}
.about-page .init-2 .ui.container .content ul:last-child li:last-child {
    margin-left: 0;
    margin-right: 0;
}
.about-page .init-2 .ui.container .content ul li .box::before{
  position: absolute;
  left: 18px;
  top: 35px;
  height: calc(100% - 35px);
  width: 1px;
  background-color: #000;
  content: "";
  display: block;
}
.about-page .init-2 .ui.container .content ul li .left{
  position: relative;
}
.about-page .init-2 .ui.container .content ul li .left .dot{
  width: 35px;
  height: 35px;
  border-radius:50%; 
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color);
  position: relative;
}
.about-page .init-2 .ui.container .content ul li .left .dot:after{
  width: 48px;
  height: 48px;
  border-radius:50%; 
  background-color:#e9f2ff;
  z-index: -1;
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  content: "";
  display: block;
}
.about-page .init-2 .ui.container .content ul li .left .dot::before{
  width: 15px;
  height: 15px;
  border-radius:50%; 
  background-color: white;
  content: "";
  display: block;
}

.about-page .init-2 .ui.container .content ul li .left .big-dot{
    width: 122px;
    height: 122px;
    border-radius: 50%;
    background-color: #c0dbff;
    position: absolute;
    top:100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-page .init-2 .ui.container .content ul li .left .big-dot img{
   position: absolute;
    top:50%;
    left: 150px;
    transform: translateY(-50%);
}
.about-page .init-2 .ui.container .content ul li .left .big-dot span:first-child{
  font-size: 30px;
  font-weight: bold;
  color:white;
  position: relative;
  z-index: 5;
  display: block;
}
.about-page .init-2 .ui.container .content ul li .left .big-dot::before{
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background-color: var(--color);
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    content: "";
    display: block;
    z-index: 4;
}
.about-page .init-2 .ui.container .content ul li .left .big-dot::after{
    width: 146px;
    height: 146px;
    border-radius: 50%;
    background-color: #f0f7ff;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    content: "";
    display: block;
    z-index: -1;
}
.about-page .init-2 .ui.container .content ul li .left .big-dot span:nth-child(2){
    width: 122px;
    height: 122px;
    border-radius: 50%;
    background-color: #c0dbff;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    content: "";
    display: block;
    z-index: 0;
}
.about-page .init-2 .ui.container .content ul li .right{
  width: calc(100% - 50px);
  padding-left: 35px;
}

.about-page .init-2 .ui.container .content ul li .right h4{
  color:#cfcfcf;
  line-height: 0.8;
  margin-bottom: 20px;
}
.about-page .init-2 .ui.container .content ul li .right p{
  padding-left: 20px;
  line-height: 1.6;
}










.about-page .init-3 {
  padding-top: 40px;
}
.about-page .init-3 .container .list {
  margin-top: 60px;
}
.about-page .init-3 .container .list .left {
  vertical-align: middle;
  position: relative;
}
.about-page .init-3 .container .list .left ul li{
  height: 575px;
}
.about-page .init-3 .container .list .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .init-3 .container .list .left .slick-dots{
  position: absolute;
  right:35px;
  bottom:20px;
  display: flex;
}
.about-page .init-3 .container .list .left .slick-dots li{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  margin-left: 8px;
}
.about-page .init-3 .container .list .left .slick-dots li.slick-active{
  background-color: var(--color);
}
.about-page .init-3 .container .list .left .slick-dots li button{
  display: none;
}
.about-page .init-3 .container .list .right {
  background-color: var(--color);
  color:white;
  height: 575px;
  padding: 60px;
}
.about-page .init-3 .container .list .right .i-title {
  text-transform: uppercase;
}
.about-page .init-3 .container .list .right .des {
  margin-top: 15px;
}
.about-page .init-4{
  margin-top: 160px;
}
.about-page .init-4 ul {
  margin: 45px -20px 0;
  position: relative;
}
.about-page .init-4 ul li {
  padding: 0 20px;
}
.about-page .init-4 ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  color: transparent;
  border: none;
  background-color: transparent;
}
.about-page .init-4 ul .slick-arrow:hover:before {
  color: var(--color);
}
.about-page .init-4 ul .slick-arrow:before {
  content: "\e6de";
  font-family: "iconfont" !important;
  color: #b2b2b2;
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.about-page .init-4 ul .slick-prev {
  left: -60px;
}
.about-page .init-4 ul .slick-next {
  right: -60px;
}
.about-page .init-4 ul .slick-next:before {
  content: "\e618";
}




.about-page .init-5{
  padding: 160px 0 250px; 
}
.about-page .init-5 ul {
  margin: 45px -18px 0;
  position: relative;
}
.about-page .init-5 ul .slick-dots,
.about-page .team ul .slick-dots {
  width: -webkit-calc(100% - 32px);
  width: -moz-calc(100% - 32px);
  width: calc(100% - 32px);
  height: 3px;
  background-color: #ededed;
  position: absolute;
  bottom: -35px;
  left: 50%;
  margin: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-page .init-5 ul .slick-dots li.slick-active,
.about-page .team ul .slick-dots li.slick-active{
  background-color: var(--color);
}
.about-page .init-5 ul .slick-dots li,
.about-page .team ul .slick-dots li
 {
  width: 100px;
  height: 100%;
  padding: 0;
  background-color: transparent;
  border: 2px solid transparent;
  transition: all 0.5s;
}
.about-page .init-5 ul .slick-dots li button,
.about-page .team ul .slick-dots li button{
  display: none;
}
.about-page .init-5 ul li {
  padding: 0 18px;
}
.about-page .init-5 ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  color: transparent;
  border: none;
  background-color: transparent;
}
.about-page .init-5 ul .slick-arrow:hover:before {
  color: var(--color);
}
.about-page .init-5 ul .slick-arrow:before {
  content: "\e6de";
  font-family: "iconfont" !important;
  color: #b2b2b2;
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.about-page .init-5 ul .slick-prev {
  left: -60px;
}
.about-page .init-5 ul .slick-next {
  right: -60px;
}
.about-page .init-5 ul .slick-next:before {
  content: "\e618";
}


.honor-page {
  padding-bottom: 20px;
}
.honor-page .container .list {
  border-bottom: 1px dashed #999999;
  text-align: center;
  padding: 70px 160px;
}
.honor-page .container .list .title {
  font-weight: bold;
  text-transform: uppercase;
}
.honor-page .container .list .des {
  margin-top: 20px;
}
.honor-page .container .list .content {
  margin: 50px -30px 0;
}
.honor-page .container .list .content .slick {
  position: relative;
}
.honor-page .container .list .content .slick .slick-arrow {
  position: absolute;
  font-size: 46px;
  cursor: pointer;
  width: 16px;
  height: 40px;
  line-height: 40px;
  color: #333333;
  right: -100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.honor-page .container .list .content .slick .slick-arrow:hover {
  color: var(--color);
}
.honor-page .container .list .content .slick .slick-prev {
  left: -100px;
}
.honor-page .container .list .content .slick li {
  padding: 0 30px;
}
.honor-page .container .list .content .slick li .box {
  overflow: hidden;
  display: block;
}
.honor-page .container .list .content .slick li .box img {
  width: 100%;
}
.honor-page .container .list:last-child {
  border-bottom: none;
}
.sidebar-box .sidebar-left {
  padding-right: 40px;
  width: 400px;
  text-transform: capitalize;
  font-weight: bold;
  position: sticky;
  top: 130px;
}
.sidebar-box .sidebar-left .tips {
  color: var(--color);
  line-height: 2;
}
.sidebar-box .sidebar-left ul li {
  margin-top: 10px;
  position: relative;
}
.sidebar-box .sidebar-left ul li i{
  position: absolute;
  top:10px;
  right:0;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.sidebar-box .sidebar-left ul li.active i{
  transform: rotate(180deg);
} 
.sidebar-box .sidebar-left ul li a {
  display: block;
  /*border-bottom: 1px solid #b9b6b1;*/
  padding: 4px 0;
  position: relative;
  line-height: 2;
  width: fit-content;
}
.sidebar-box .sidebar-left ul li::before{
  content: '';
  width: 100%;
  height: 1px;
  background: #b9b6b1;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .5s;
  transform-origin: left;
}
.sidebar-box .sidebar-left ul li:hover::before{
  transform: scaleX(0);
}
.sidebar-box .sidebar-left ul li a:hover,
.sidebar-box .sidebar-left ul li a.active,
.sidebar-box .sidebar-left ul li ul.children > li > a:hover,
.sidebar-box .sidebar-left ul li ul.children > li.active > a,
.sidebar-box .sidebar-left ul li ul.children > li ul.children-three > li > a:hover {
  color: var(--color);
}
.sidebar-box .sidebar-left ul li ul.children{
  padding:10px 0; 
  display: none;
}
.sidebar-box .sidebar-left ul li ul.children li{
  position: relative;
}
.sidebar-box .sidebar-left ul li ul li a{
  font-size: 15px;
}
.sidebar-box .sidebar-left ul li ul.children li a{
  padding-left: 30px;
}
.sidebar-box .sidebar-left ul li ul.children li i{
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 12px;
}
.sidebar-box .sidebar-left ul li ul li::before{
  display: none;
}
.sidebar-box .sidebar-left ul li ul.children li ul.children-three li a{
  padding-left: 30px;
}

.sidebar-box .sidebar-left .contact_info {
  margin-top: 50px;
  position: relative;
}
.sidebar-box .sidebar-left .contact_info img {
  width: 100%;
}
.sidebar-box .sidebar-left .contact_info .more {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  font-weight: bold;
}
.sidebar-box .sidebar-right {
  width: calc(100% - 400px);
}
.product-page .cat_title {
  color: var(--color);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 2;
}
.product-page .cat_des{
  /*max-height: 280px;*/
  overflow-y: auto;
  padding-right: 4px;
}
.product-page .product-list {
  margin: 0 -10px;
}
.product-page .product-list li {
  margin-top: 40px;
  padding: 0 10px;
}
.product-page .product-list li .box .img_c {
  overflow: hidden;
  position: relative;
}
.product-page .product-list li .box .img {
  display: block;
  /*border: 1px solid #dbdbdb;*/
}
.product-page .product-list li .box .img img {
  width: 100%;
}
.product-page .product-list li .box .title {
  font-weight: bold;
  margin-top: 16px;
  display: block;
  line-height: 1.4;
}
.product-page .product-list li .box .des {
  position: absolute;
  bottom: -100%;
  opacity: 1;
  width: 100%;
  left: 0;
  background-color: rgb(2 69 158 / 64%);
  padding: 15px;
  color: #fff;
  transition: 0.5s;
}
.product-page .product-list li .box .des .title_1 {
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
}
.product-page .product-list li .box .des .text {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 14px;
  line-height: 2;
}
.product-page .product-list li .box .des .more {
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: #fff;
  color: var(--color);
  padding: 2px 20px;
}
.product-page .product-list li .box .des .more:hover {
  color: #fff;
}
.product-page .product-list li .box:hover .img_c .des {
  bottom: 0;
}
.m-page {
  margin-top: 50px;
  text-align: center;
}
.m-page a,
.m-page span {
  color: #212121;
  display: inline-block;
  margin: 2px 6px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
}
.m-page a.current,
.m-page span.current {
  color: #fff;
  background-color: var(--color);
}
.m-page a.current::before,
.m-page span.current::before {
  opacity: 0;
}
.m-page a {
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-page a::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #212121;
  bottom: 0;
  left: 11px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-page a:hover,
.m-page a.current {
  color: #fff;
  background-color: var(--color);
}
.m-page a:hover::before,
.m-page a.current::before {
  opacity: 0;
}
.m-page .first::before,
.m-page .last::before,
.m-page .end::before,
.m-page .next::before {
  display: none;
}
.prodet-page .init-1 .container .left {
  padding-right: 100px;
}
.prodet-page .init-1 .container .left .big_img {
  position: relative;
}
.prodet-page .init-1 .container .left .big_img .btn {
  width: 46px;
  height: 46px;
  border: 1px solid #cecece;
  color: #333333;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  font-size: 34px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: -70px;
}
.prodet-page .init-1 .container .left .big_img .btn i {
  margin-left: 4px;
}
.prodet-page .init-1 .container .left .big_img .btn:hover {
  border-color: var(--color);
}
.prodet-page .init-1 .container .left .big_img .prev {
  left: -70px;
}
.prodet-page .init-1 .container .left .big_img .prev i {
  margin-left: -4px;
}
.prodet-page .init-1 .container .left .big_img .slick {
  /*border: 1px solid #cbcbcb;*/
}
.prodet-page .init-1 .container .left .big_img .slick li a {
  display: block;
}
.prodet-page .init-1 .container .left .big_img .slick li a img {
  width: 100%;
}
.prodet-page .init-1 .container .small_img {
  margin-top: 20px;
}
.prodet-page .init-1 .container .small_img .slick {
  margin: 0 -12px;
}
.prodet-page .init-1 .container .small_img .slick li {
  padding: 0 12px;
}
.prodet-page .init-1 .container .small_img .slick li .box {
  cursor: pointer;
  /*border: 1px solid #cbcbcb;*/
  display: block;
}
.prodet-page .init-1 .container .small_img .slick li .box img {
  width: 100%;
}
.prodet-page .init-1 .container .small_img .slick li .box:hover,
.prodet-page .init-1 .container .small_img .slick li .box.active {
  border: var(--color) 1px solid;
}
.prodet-page .init-1 .container .right .title {
  font-weight: bold;
  color: #393939;
  line-height: 2;
  text-transform: capitalize;
  font-size: 28px;
}
.prodet-page .init-1 .container .right .des {
  margin-top: 10px;
  color: #393939;
  line-height: 2;
  max-height:360px;
  padding-right: 4px;
  overflow-y: auto;
}
.prodet-page .init-1 .container .right .des table tr{
  background-color: transparent;
}
.prodet-page .init-1 .container .right .des table{
  width: 100% !important;
  max-width: 560px;
}
.prodet-page .init-1 .container .right .des table tr td{
  border: none;
}
.prodet-page .init-1 .container .right .des img.wscnph{
    max-width: 50px;
    margin: 10px;
    display: inline-block;
}
.prodet-page .init-1 .container .right .img {
  margin-top: 20px;
}
.prodet-page .init-1 .container .right .more {
  display: inline-block;
  font-weight: bold;
  font-weight: bold;
  padding: 10px 20px;
  margin-top: 30px;
}
.prodet-page .init-1 .container .right .more span{
  vertical-align: middle;
}
.prodet-page .init-1 .container .right .more img {
  width: 16px;
  vertical-align: middle;
  margin-left: 30px;
  position: relative;
  z-index: 2;
}
.prodet-page .init-2 {
  margin-top: 50px;
}
.prodet-page .init-2 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid #cbcbcb;
}
.prodet-page .init-2 .container .content {
  margin-top: 20px;
}
.prodet-page .init-2 .container .content table{
  table-layout: fixed;
}
.prodet-page .init-2 .container .content table td, 
.prodet-page .init-2 .container .content table th {
    border: 1px solid rgba(0, 0, 0, .1);
}
.prodet-page .init-2 .container .content table tr:nth-child(even){
  background-color: #f5f5f5;
}
.prodet-page .init-3 {
  margin-top: 50px;
}
.prodet-page .init-3 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.prodet-page .init-3 .container .title_list {
  background-color: #f5f5f5;
  margin-top: 20px;
}
.prodet-page .init-3 .container .title_list .list {
  width: auto;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}
.prodet-page .init-3 .container .title_list .list:hover,
.prodet-page .init-3 .container .title_list .list.active {
  background-color: var(--color);
  color: #fff;
}
.prodet-page .init-3 .container .content_list .list {
  padding-top: 40px;
  display: none;
}
.prodet-page .init-3 .container .content_list .list table tr td{
  min-width: 120px;
}
.prodet-page .init-4 {
  background-color: #f5f5f5;
}
.prodet-page .init-4 .container {
  font-weight: bold;
  text-transform: uppercase;
}
.prodet-page .init-4 .container .content {
  margin: 30px -15px 0;
}
.prodet-page .init-4 .container .content .slick .slick-track {
  margin-left: 0;
}
.prodet-page .init-4 .container .content .slick li {
  padding: 0 15px;
}
.prodet-page .init-4 .container .content .slick li .box .img {
  display: block;
  overflow: hidden;
  background-color: white;
}
.prodet-page .init-4 .container .content .slick li .box .img img {
  width: 100%;
}
.prodet-page .init-4 .container .content .slick li .box .text {
  display: block;
  margin-top: 16px;
  line-height: 2;
}
.prodet-page .init-4 .container .content .slick li .box .text:hover {
  color: var(--color);
}
.prodet-page .init-5 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.prodet-page .init-5 .container form input,
.prodet-page .init-5 .container form textarea {
  margin-top: 30px;
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 12px 60px;
  background-repeat: no-repeat;
  font-size: 16px;
  -o-background-size: 26px auto;
  background-size: 26px auto;
  background-position: 20px 12px;
}
.prodet-page .init-5 .container form .name,
.prodet-page .init-5 .container form .mail {
  width: -webkit-calc(25%);
  width: -moz-calc(25%);
  width: calc(50% - 25px);
}
.prodet-page .init-5 .container form .mail {
  margin-left: 50px;
}
.prodet-page .init-5 .container form .submit {
  width: auto;
  padding: 10px 60px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.product-new-page .init-1 {
  padding: 50px 0 60px 0;
}
.product-new-page .init-1 .container .column {
  vertical-align: middle;
}
.product-new-page .init-1 .container .left .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.product-new-page .init-1 .container .left .tips .r {
  color: var(--color);
}
.product-new-page .init-1 .container .left .des {
  margin-top: 10px;
}
.product-new-page .init-1 .container .right {
  padding: 0 60px;
}
.product-new-page .init-1 .container .right img {
  width: 100%;
}
.product-new-page .init-2 {
  background-color: #f4f4f4;
}
.product-new-page .init-2 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.product-new-page .init-2 .container .content {
  margin-top: 50px;
  position: relative;
}
.product-new-page .init-2 .container .content .btn{
  background: #fff;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color);
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}
.product-new-page .init-2 .container .content .prev{
  left: -100px;
}
.product-new-page .init-2 .container .content .btn img{
  position: relative;
  z-index: 2;
  display: block;
  margin: 16px auto 0;
}
.product-new-page .init-2 .container .content .btn:hover img{
  filter: brightness(2);
}
.product-new-page .init-2 .container .content .slick {
  margin: 0 -15px;
}
/*.product-new-page .init-2 .container .content .slick .slick-track{
  display: flex;
}
.product-new-page .init-2 .container .content .slick .slick-slide{
  height: auto;
}
.product-new-page .init-2 .container .content .slick .slick-slide > div{
  height: 100%;
}
.product-new-page .init-2 .container .content .slick .slick-slide > div li,
.product-new-page .init-2 .container .content .slick .slick-slide > div li .box{
  height: 100%;
}*/
.product-new-page .init-2 .container .content .slick li {
  padding: 0 15px;
}
.product-new-page .init-2 .container .content .slick li .box {
  position: relative;
  background-color: #fff;
  padding: 20px 15px;
  font-weight: bold;
}
.product-new-page .init-2 .container .content .slick li .box .sub_c {
  position: absolute;
  top: 0;
  left: -8px;
  z-index: 2;
}
.product-new-page .init-2 .container .content .slick li .box .sub_c span {
  display: inline-block;
  width: 56px;
  height: 30px;
  background-color: var(--color);
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
.product-new-page .init-2 .container .content .slick li .box .sub_c .sub {
  width: 0;
  height: 0;
  border-top: 8px solid var(--color);
  border-left: 8px solid transparent;
  position: relative;
  z-index: 2;
}
.product-new-page .init-2 .container .content .slick li .box .img {
  display: block;
  overflow: hidden;
}
.product-new-page .init-2 .container .content .slick li .box .img img {
  width: 100%;
}
.product-new-page .init-2 .container .content .slick li .box .line {
  height: 1px;
  background-color: #e7e7e7;
  margin-top: 20px;
}
.product-new-page .init-2 .container .content .slick li .box .text:hover {
  color: var(--color);
  display: block;
}
.product-new-page .init-2 .container .content .slick li .box .more {
  margin-top: 18px;
  display: inline-block;
  background-color: #fff;
  color: #181818;
  border-bottom: 1px solid var(--color);
}
.product-new-page .init-2 .container .content .slick li .box .more img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 40px;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  position: relative;
  z-index: 2;
}
.product-new-page .init-2 .container .content .slick li .box .more:hover {
  padding: 0 10px;
  color: #fff;
}
.product-new-page .init-2 .container .content .slick li .box .more:hover img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
.product-new-page .init-3 .top {
  -o-background-size: cover;
  background-size: cover;
}
.product-new-page .init-3 .top .cont {
  padding: 150px 0;
  max-width: 540px;
  margin-left: auto;
  color: #fff;
}
.product-new-page .init-3 .top .cont .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.product-new-page .init-3 .top .cont .tips .r {
  color: var(--color);
}
.product-new-page .init-3 .top .cont .des {
  margin-top: 10px;
}
.product-new-page .init-3 .bottom {
  padding: 18px 0;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--color);
  color: #fff;
}
.technology-page .init-1 {
  text-align: center;
}
.technology-page .init-1 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.technology-page .init-1 .container .content {
  margin-top: 100px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.technology-page .init-1 .container .content .list {
  position: relative;
  width: 360px;
}
.technology-page .init-1 .container .content .list .title_c {
  position: relative;
  width: 46px;
  height: 46px;
  margin: auto;
}
.technology-page .init-1 .container .content .list .title_c .ling {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color);
  border-radius: 50%;
}
.technology-page .init-1 .container .content .list .title_c .ling:nth-child(2) {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.technology-page .init-1 .container .content .list .title_c .cont {
  position: relative;
  z-index: 2;
  background-color: var(--color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 46px;
  font-weight: bold;
  color: #fff;
}
.technology-page .init-1 .container .content .list .des {
  margin-top: 40px;
}
.technology-page .init-1 .container .content .list2 {
  margin: 0 40px;
}
.technology-page .init-1 .container .content .list2 .title_c::before,
.technology-page .init-1 .container .content .list2 .title_c::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 1px;
  top: 22px;
  left: 90px;
  border-top: 1px dashed #999999;
}
.technology-page .init-1 .container .content .list2 .title_c::before {
  left: -330px;
}
.technology-page .init-2 .container .list .column {
  position: relative;
  z-index: 1;
  vertical-align: middle;
}
.technology-page .init-2 .container .list .left img {
  width: 100%;
}
.technology-page .init-2 .container .list .right {
  padding-left: 60px;
}
.technology-page .init-2 .container .list .right .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.technology-page .init-2 .container .list .right .des {
  margin-top: 10px;
}
.technology-page .init-2 .container .list:nth-child(2n) .left {
  left: 50%;
}
.technology-page .init-2 .container .list:nth-child(2n) .right {
  left: -50%;
  padding-left: 0;
  padding-right: 60px;
}
.application-page .container .tips {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}
.application-page .container .tips .r {
  color: var(--color);
}
.application-page .container .des {
  text-align: center;
  margin-top: 10px;
}
.application-page .container .content ul {
  margin: 0 -20px;
}
.application-page .container .content ul li {
  margin-top: 50px;
  padding: 0 20px;
}
.application-page .container .content ul li .box {
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.application-page .container .content ul li .box .title {
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  padding: 10px 0;
}
.application-page .container .content ul li .box .img {
  display: block;
  overflow: hidden;
}
.application-page .container .content ul li .box .img img {
  width: 100%;
}
.patent-page {
  background-color: #f4f4f4;
}
.patent-page .patent-list {
  margin-top: -30px;
}
.patent-page .patent-list li {
  padding: 40px 30px;
  background-color: #fff;
  margin-top: 40px;
}
.patent-page .patent-list li .left {
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  width: 300px;
  border-right: 1px solid #cccccc;
  padding-right: 40px;
}
.patent-page .patent-list li .left img {
  width: 100%;
}
.patent-page .patent-list li .right {
  vertical-align: middle;
  width: -webkit-calc(-200%);
  width: -moz-calc(-200%);
  width: calc(100% - 300px);
  padding-left: 46px;
}
.patent-page .patent-list li .right .title a {
  font-weight: bold;
  color: var(--color);
  border-bottom: 1px solid var(--color);
  text-transform: uppercase;
}
.patent-page .patent-list li .right .title_2 {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color);
  margin-top: 10px;
}
.patent-page .patent-list li .right .des {
  margin-top: 16px;
}
.agent-page .init-1 .container .left {
  vertical-align: middle;
  padding-right: 80px;
}
.agent-page .init-1 .container .left .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.agent-page .init-1 .container .left .tips .r {
  color: var(--color);
}
.agent-page .init-1 .container .left .des {
  margin-top: 10px;
}
.agent-page .init-1 .container .left .tips_2 {
  margin-top: 30px;
}
.agent-page .init-1 .container .left .mail_c {
  margin-top: 10px;
  background-color: #f4f4f4;
  display: inline-block;
  padding: 6px 30px 6px 10px;
  border-radius: 60px;
}
.agent-page .init-1 .container .left .mail_c div {
  display: inline-block;
  vertical-align: middle;
}
.agent-page .init-1 .container .left .mail_c .img {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  padding-top: 20px;
}
.agent-page .init-1 .container .left .mail_c .img img {
  width: 36px;
}
.agent-page .init-1 .container .left .mail_c .text {
  margin-left: 20px;
  color: #3c3c3c;
}
.agent-page .init-1 .container .right {
  vertical-align: middle;
}
.agent-page .init-1 .container .right img {
  width: 100%;
}
.agent-page .init-2 img {
  width: 100%;
}
.agent-page .init-3 {
  padding-top: 40px;
}
.agent-page .init-3 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.agent-page .init-3 .container .title_c {
  font-weight: bold;
  text-transform: uppercase;
}
.agent-page .init-3 .container .title_c .list {
  display: inline-block;
  margin-right: 60px;
  margin-top: 10px;
}
.agent-page .init-3 .container .title_c .list .r {
  color: var(--color);
}
.agent-page .init-3 .container .des {
  margin-top: 20px;
}
.agent-page .init-4 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.agent-page .init-4 .container form input,
.agent-page .init-4 .container form textarea {
  margin-top: 30px;
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 12px 60px;
  background-repeat: no-repeat;
  font-size: 16px;
  -o-background-size: 26px auto;
  background-size: 26px auto;
  background-position: 20px 12px;
}
.agent-page .init-4 .container form .name,
.agent-page .init-4 .container form .mail {
  width: -webkit-calc(25%);
  width: -moz-calc(25%);
  width: calc(50% - 25px);
}
.agent-page .init-4 .container form .mail {
  margin-left: 50px;
}
.agent-page .init-4 .container form .submit {
  width: auto;
  padding: 10px 60px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.service-page .init-1 .container .left .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.service-page .init-1 .container .left .tips .r {
  color: var(--color);
}
.service-page .init-1 .container .left img {
  display: block;
  margin-top: 40px;
  width: 100%;
}
.service-page .init-1 .container .right {
  padding-left: 80px;
}
.service-page .init-1 .container .right .tips_des {
  color: rgba(0, 0, 0, 0.7);
}
.service-page .init-1 .container .right .content_list {
  padding-top: 30px;
}
.service-page .init-1 .container .right .content_list .list {
  margin-top: 14px;
}
.service-page .init-1 .container .right .content_list .list .title {
  color: var(--color);
  text-transform: uppercase;
  font-weight: bold;
}
.service-page .init-1 .container .right .content_list .list .title span {
  border-bottom: 2px solid var(--color);
}
.service-page .init-1 .container .right .content_list .list .des {
  margin-top: 20px;
  color: #212121;
  line-height: 1.8;
}
.service-page .init-1 .container .right .bottom_c {
  margin-top: 40px;
  position: relative;
}
.service-page .init-1 .container .right .bottom_c .cont {
  color: #fff;
  position: relative;
  right: 44%;
  background-color: var(--color);
  width: 750px;
  padding: 40px 20px;
  text-align: center;
}
.service-page .init-1 .container .right .bottom_c .cont .list {
  width: 234px;
}
.service-page .init-1 .container .right .bottom_c .cont .list .top {
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
}
.service-page .init-1 .container .right .bottom_c .cont .list .top .sub {
  margin-left: -10px;
}
.service-page .init-1 .container .right .bottom_c .cont .list .bottom {
  margin-top: 10px;
}
.service-page .init-2 .container .left {
  vertical-align: middle;
  padding-right: 70px;
}
.service-page .init-2 .container .left .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.service-page .init-2 .container .left .des {
  margin-top: 20px;
}
.service-page .init-2 .container .left .more {
  margin-top: 40px;
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.service-page .init-2 .container .left .more img {
  vertical-align: middle;
  display: inline-block;
  width: 16px;
  margin-left: 26px;
  position: relative;
  z-index: 2;
  margin-top: -4px;
}
.service-page .init-2 .container .right {
  vertical-align: middle;
}
.service-page .init-2 .container .right img {
  width: 100%;
}
.service-page .init-3 .container {
  color: #fff;
  text-align: center;
}
.service-page .init-3 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.service-page .init-3 .container .des {
  margin-top: 10px;
  font-weight: 300;
}
.service-page .init-3 .container .more {
  margin-top: 24px;
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.4;
}
.service-page .init-3 .container .more span {
  vertical-align: middle;
}
.service-page .init-3 .container .more img {
  vertical-align: middle;
  display: inline-block;
  margin-left: 20px;
  position: relative;
  z-index: 2;
}
.service-page .init-4 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.service-page .init-4 .container form input,
.service-page .init-4 .container form textarea {
  margin-top: 30px;
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 12px 60px;
  background-repeat: no-repeat;
  font-size: 16px;
  -o-background-size: 26px auto;
  background-size: 26px auto;
  background-position: 20px 12px;
}
.service-page .init-4 .container form .name,
.service-page .init-4 .container form .mail {
  width: -webkit-calc(25%);
  width: -moz-calc(25%);
  width: calc(50% - 25px);
}
.service-page .init-4 .container form .mail {
  margin-left: 50px;
}
.service-page .init-4 .container form .submit {
  width: auto;
  padding: 10px 60px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.download-page .container .tips {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.download-page .container .tips .r {
  color: var(--color);
}
.download-page .container .content {
  margin-top: 20px;
}
.download-page .container .content ul {
  margin: 0 -25px;
}
.download-page .container .content ul li {
  margin-top: 30px;
  padding: 0 25px;
}
.download-page .container .content ul li .box .img {
  display: block;
  overflow: hidden;
}
.download-page .container .content ul li .box .img img {
  width: 100%;
}
.download-page .container .content ul li .box .text {
  display: block;
  margin-top: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.download-page .pwd_cont{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 18;
  display: none;
}
.download-page .pwd_cont .set_pwd{
  display: none;
}
.download-page .pwd_cont .shadow{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.download-page .pwd_cont .cont{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  transform: translate(-50% , -50%);
  background: #fff;
}
.download-page .pwd_cont .cont .close{
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 34px;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  background: #eee;
  cursor: pointer;
  transition: all .5s;
}
.download-page .pwd_cont .cont .close:hover{
  color: #fff;
  background: var(--color);
}
.download-page .pwd_cont .cont .f_cont{
  padding: 30px 26px;
}
.download-page .pwd_cont .cont .f_cont input{
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 16px;
}
.download-page .pwd_cont .cont .f_cont .send_btn{
  width: auto;
  padding:  10px 40px;
  display: inline-block;
  background: var(--color);
  color: #fff;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}
.download-page .pwd_cont .cont .title{
    font-size: 18px;
    color: #222;
    text-transform: capitalize;
    line-height: 1;
    font-weight: bold;
    padding: 15px 20px;
    background: #f5f5f5;
    -o-box-shadow: 0 0 5px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.1);
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    padding-right: 50px;
}
.device-page .init-1 .container .left {
  vertical-align: middle;
}
.device-page .init-1 .container .left img {
  width: 100%;
}
.device-page .init-1 .container .right {
  vertical-align: middle;
  padding-left: 50px;
}
.device-page .init-1 .container .right .tips {
  text-transform: uppercase;
  font-weight: bold;
}
.device-page .init-1 .container .right .des {
  margin-top: 10px;
}
.device-page .init-2 .container .tips {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.device-page .init-2 .container .tips .r {
  color: var(--color);
}
.device-page .init-2 .container .content ul {
  margin: 0 -15px;
}
.device-page .init-2 .container .content ul li {
  margin-top: 60px;
  padding: 0 15px;
}
.device-page .init-2 .container .content ul li .box .img {
  overflow: hidden;
}
.device-page .init-2 .container .content ul li .box .img img {
  width: 100%;
}
.device-page .init-2 .container .content ul li .box .cont {
  width: -webkit-calc(52%);
  width: -moz-calc(52%);
  width: calc(100% - 48px);
  background-color: #fff;
  padding: 20px 24px;
  position: relative;
  margin: -56px auto 0;
}
.device-page .init-2 .container .content ul li .box .cont .sub {
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color);
}
.device-page .init-2 .container .content ul li .box .cont .text {
  position: relative;
  z-index: 2;
}
.device-page .init-2 .container .content ul li .box:hover .cont .sub {
  width: 100%;
}
.device-page .init-2 .container .content ul li .box:hover .cont .text {
  color: #fff;
}
.device-page .init-3 .container .left {
  vertical-align: middle;
}
.device-page .init-3 .container .left img {
  width: 100%;
}
.device-page .init-3 .container .right {
  vertical-align: middle;
  padding-left: 50px;
}
.device-page .init-3 .container .right .tips {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color);
}
.device-page .init-3 .container .right .line {
  width: 250px;
  height: 1px;
  background-color: var(--color);
}
.device-page .init-3 .container .right .tips_title {
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 20px;
}
.device-page .init-3 .container .right .des {
  margin-top: 20px;
}
.faq-page .container ul li {
  margin: 10px 0 0;
  word-break: break-word;
  font-weight: 300;
}
.faq-page .container ul li .title {
  background: #f8f8f8;
  border: 1px solid #ebebeb;
  line-height: 2;
  margin: 0;
  padding: 15px 30px 15px 25px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}
.faq-page .container ul li .title i {
  color: #bababa;
  float: right;
  position: absolute;
  top: 26px;
  right: 10px;
}
.faq-page .container ul li .cont {
  border: 1px solid #ebebeb;
  border-top: none;
  padding: 20px 25px;
  font-size: 18px;
  line-height: 2;
  display: none;
}
.news-page {
  /*background: #f8f8f8;*/
}
.news-page .container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.news-page .container ul li {
  margin-top: 30px;
  padding: 0 15px;
}
.news-page .container ul li .box {
  height: 100%;
  background-color: #fff;
  padding: 30px;
    box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
}
.news-page .container ul li .box .title {
   font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
  line-height: 2;
}
.news-page .container ul li .box .title:hover {
  color: var(--color);
}
.news-page .container ul li .box .des {
  line-height: 2;
  margin-top: 14px;
  font-size: 18px;
}
.news-page .container ul li .box .time {
  margin-top: 10px;
}
.newdet-page .container .title {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
}
.newdet-page .container .time_c {
  margin-top: 14px;
  text-align: center;
}
.newdet-page .container .time_c .list {
  display: inline-block;
  margin: 0 8px;
}
.newdet-page .container .time_c .list img {
  vertical-align: middle;
  width: 16px;
}
.newdet-page .container .time_c .list span {
  vertical-align: middle;
  margin-left: 2px;
  position: relative;
  top: 1px;
  color: #999;
}
.newdet-page .container .content {
  margin-top: 50px;
}
.m-link {
  margin-top: 50px;
}
.m-link a {
  margin-top: 6px;
  font-size: 18px;
  line-height: 2;
  display: inline-block;
}
.m-link a:hover {
  color: var(--color);
  text-decoration: underline;
}
.contact-page .init-1 .container .left .tips {
  font-weight: bold;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.contact-page .init-1 .container .left .des {
  margin-top: 10px;
}
.contact-page .init-1 .container .left form .list {
  margin-top: 20px;
}
.contact-page .init-1 .container .left form .list .name {
  font-size: 16px;
  line-height: 2;
  color: #5e5e5e;
  display: block;
  margin-bottom: 5px;
}
.contact-page .init-1 .container .left form .list input,
.contact-page .init-1 .container .left form .list textarea {
  width: 100%;
  line-height: 2;
  border: 1px solid #c6cbc8;
  padding: 13px 15px;
  font-size: 16px;
  color: #333;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: #fff;
}
.contact-page .init-1 .container .left form .list input:focus,
.contact-page .init-1 .container .left form .list textarea:focus {
  border: 1px solid var(--color);
}
.contact-page .init-1 .container .left form .submit_c .submit_btn {
  margin-top: 20px;
  cursor: pointer;
  display: inline-block;
  padding: 8px 40px;
  background-color: var(--color);
  font-weight: bold;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
.contact-page .init-1 .container .right {
  padding-left: 80px;
}
.contact-page .init-1 .container .right .tips {
  font-weight: bold;
  text-transform: uppercase;
}
.contact-page .init-1 .container .right .list ul li {
  padding-bottom: 10px;
  margin-top: 30px;
  border-bottom: 1px solid #eee;
}
.contact-page .init-1 .container .right .list ul li .tips_2 {
  font-weight: bold;
  text-transform: uppercase;
}
.contact-page .init-1 .container .right .list ul li .tips_2 i {
  width: 40px;
  color:var(--color);
}
.contact-page .init-1 .container .right .list ul li .cont {
  word-wrap: break-word;
  margin: 10px 0 20px 0;
}
.contact-page .init-1 .container .right .list ul li:last-child {
  border: none;
}
.contact-page .init-1 .container .right .list ul li:last-child .cont {
  margin-bottom: 0;
}
.contact-page .init-2 {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.contact-page .init-2 .container {
  width: 100%;
  padding: 0;
}
.contact-page .init-2 .container .map #mapContainer {
  height: 400px;
}
.video-page .container ul {
  margin: -15px;
}
.video-page .container ul li {
  padding: 15px;
}
.video-page .container ul li video {
  display: block;
  width: 100%;
}

.history-page .top_c .left .tips{
  text-transform: uppercase;
}
.history-page .top_c .left .title{
  font-weight: bold;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 10px 0;
}
.history-page .top_c .left .des{
  margin-top: 20px;
}
.history-page .top_c .left .line{
  width: 150px;
  height: 4px;
  background: var(--color);
}
.history-page .top_c .right{
  padding-left: 50px;
}
.history-page .top_c .right img{
  width: 100%;
}

.history-page .bottom_c .list{
  padding-top: 60px;
  border-top: 1px solid #ddd;
  margin-top: 60px;
}
.history-page .bottom_c .time{
  width: 160px;
  font-weight: bold;
  color: var(--color);
  line-height: 1;
}
.history-page .bottom_c .content{
  width: calc(100% - 160px);
  color: rgba(0, 0, 0, 0.8);
}
.history-page .bottom_c .content .img{
  margin-top: 20px;
  max-width: 600px;
}

@media (max-width: 1750px) {
  .about-page .init-2 .ui.container{
    width: 90%;
    overflow-x: auto;
    padding-bottom: 60px;
  }
}
@media (max-width: 1600px) {
  .about-page .init-3 .container .list .right .des p{
    line-height: 1.6;
  }
}
@media (max-width: 1500px) {
  .font-60 {
    font-size: 50px;
  }
  .font-48 {
    font-size: 38px;
  }
  .font-40 {
    font-size: 30px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
    margin-left: 30px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a {
    font-size: 18px;
  }
  #header > .nav > .menu .menu-box .open_btn {
    font-size: 18px;
    padding: 5px 10px;
  }
  #banner .bottom_c {
    bottom: 30px;
  }
  #banner .slick li .container .cont .title {
    font-size: 50px;
  }
  #index-body .init-3 .container .bottom_c .list .num {
    font-size: 80px;
  }
  .about-page .init-1 .container .list_cont .list .num {
    font-size: 80px;
  }
  .app-page .ui.container .list ul li .right p{
    line-height: 1.6;
  }

}
@media (max-width: 1250px) {
  #header > .nav > .menu .menu-box .logo {
    width: 200px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
    margin-left: 20px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a {
    font-size: 16px;
  }
  #header > .nav > .menu .menu-box .open_btn {
    font-size: 16px;
  }
  #header > .nav > .menu .menu-box .lang_cont {
    margin-left: 10px;
  }
  #header > .nav > .menu .menu-box .lang_cont .img {
    width: 30px;
    height: 20px;
  }
  #header > .nav > .menu .menu-box .lang_cont .text {
    margin-left: 10px;
  }
  #banner .bottom_c {
    display: none;
  }
  #index-body .init-1 .container ul {
    margin: 0 -10px;
  }
  #index-body .init-1 .container ul li {
    padding: 0 10px;
  }
  #index-body .init-3 .container .left {
    width: 100%;
    text-align: center;
  }
  #index-body .init-3 .container .right {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    margin-top: 20px;
    display: none;
  }
  #index-body .index-line {
    margin: auto;
  }
  #index-body .init-4 .container .title_c {
    text-align: center;
  }
  #index-body .init-4 .container .title_c .left {
    width: 100%;
  }
  #index-body .init-4 .container .title_c .right {
    margin-top: 20px;
  }
  #index-body .init-5 .container .title_c {
    text-align: center;
  }
  #index-body .init-5 .container .title_c .left {
    width: 100%;
  }
  #index-body .init-5 .container .title_c .right {
    margin-top: 20px;
  }
  #index-body .init-5 .container .content .slick li .box .img {
    height: 350px;
  }
  #index-body .init-6 .container .content {
    text-align: center;
  }
  #index-body .init-7 .left {
    display: none;
  }
  #index-body .init-7 .container .right {
    width: 100%;
    text-align: center;
  }
  #footer .f-top .container .list_cont3 {
    width: 300px;
  }
  .inner-banner .bottom_c .left {
    display: none;
  }
  .inner-banner .bottom_c .right {
    width: 100%;
    text-align: left;
    margin: 16px 0;
  }
  .sidebar-box .sidebar-left {
    display: none;
  }
  .sidebar-box .sidebar-right {
    width: 100%;
  }
  .technology-page .init-1 .container .content .list {
    width: 310px;
  }
  .technology-page .init-1 .container .content .list2 {
    margin: 0 20px;
  }
  .technology-page .init-1 .container .content .list2 .title_c::before {
    display: none;
  }
  .technology-page .init-1 .container .content .list2 .title_c::after {
    display: none;
  }
  .service-page .init-1 .container .right .bottom_c .cont {
    right: 86%;
  }
  .product-new-page .init-2 .container .content .btn{
    display: none !important;
  }
  .about-page .init-3 .container .list .right {
    padding: 40px 30px;
  }
  .about-page .init-5 {
    padding: 80px 0 100px;
  }
  
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner .slick li .container .cont {
    text-align: center;
  }
  #banner .slick li .container .cont .title {
    width: 100%;
    font-size: 40px;
  }
  #banner .slick li .container .cont .des {
    width: 100%;
  }
  #index-body .init-1 .container ul li {
    margin-top: 20px;
  }
  #index-body .init-2 .container .cont_list .left {
    width: 100%;
  }
  #index-body .init-2 .container .cont_list .right {
    display: none;
  }
  #index-body .init-3 .container .bottom_c .list .num {
    font-size: 60px;
  }
  #index-body .init-4 .container .content_c .slick {
    margin: 0 -10px;
  }
  #index-body .init-4 .container .content_c .slick li {
    padding: 0 10px;
  }
  #index-body .init-5 .container .content .slick {
    margin: 0 -10px;
  }
  #index-body .init-5 .container .content .slick li {
    padding: 0 10px;
    text-align: center;
  }
  #index-body .init-5 .container .content .slick li .box .img {
    height: 280px;
  }
  #index-body .init-6 .container {
    padding: 20px 15px;
  }
  #index-body .init-6 .container .content {
    margin: 20px auto;
    width: 100%;
  }
  #footer .f-top .container .list_cont3 {
    width: 100%;
  }
  .inner-banner {
    margin-top: 40px;
  }
  .inner-banner .cat_cont {
    height: auto;
    padding: 100px 0;
  }
  .inner-banner .cat_cont .container .cat_name {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    text-align: center;
  }
  .suatainable-page .init-1 .container .cont {
    width: 90%;
  }
  .suatainable-page .init-2 .container .title_c .left {
    width: 100%;
    text-align: center;
  }
  .suatainable-page .init-2 .container .title_c .left .line {
    margin: 10px auto;
  }
  .suatainable-page .init-2 .container .title_c .right {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
  .suatainable-page .init-2 .container .content {
    margin: 20px -10px;
  }
  .suatainable-page .init-2 .container .content .list {
    padding: 0 10px;
  }
  .suatainable-page .init-2 .container .content .list .box .text {
    text-align: center;
    font-size: 24px;
  }
  .about-page .init-1 .container .des {
    text-align: center;
  }
  .about-page .init-2 .container .img {
    height: 300px;
  }
  .about-page .init-3 .container .list .column {
    width: 100%;
  }
  .about-page .init-3 .container .list .right {
    height: auto;
  }
  .about-page .init-2 {
    margin: 80px 0 0;
  }
  .about-page .init-4 {
      margin-top: 80px;
  }
  .about-page .init-3 .container .list:nth-child(2n) .left {
    left: 0;
  }
  .about-page .init-3 .container .list:nth-child(2n) .right {
    left: 0;
    padding: 0;
  }
  .honor-page .container .list {
    padding: 70px 20px;
  }
  .honor-page .container .list .content {
    margin: 30px -10px 0;
  }
  .honor-page .container .list .content .slick li {
    padding: 0 10px;
  }
  .honor-page .container .list .content .slick .slick-next {
    right: -14px;
  }
  .honor-page .container .list .content .slick .slick-prev {
    left: -14px;
  }
  .product-page .product-list li {
    text-align: center;
  }
  .prodet-page .init-1 .container .left {
    width: 100%;
    padding: 0 60px;
  }
  .prodet-page .init-1 .container .right {
    width: 100%;
    margin-top: 40px;
  }
  .prodet-page .init-1 .container .right .title {
    text-align: center;
  }
  .prodet-page .init-2 .container .tips {
    text-align: center;
  }
  .prodet-page .init-3 .container .tips {
    text-align: center;
  }
  .prodet-page .init-4 .container .tips {
    text-align: center;
  }
  .prodet-page .init-4 .container .content .slick li .box .text {
    text-align: center;
  }
  .prodet-page .init-5 {
    text-align: center;
  }
  .product-new-page .init-1 .container .column {
    width: 100%;
    text-align: center;
  }
  .product-new-page .init-1 .container .right {
    margin-top: 20px;
  }
  .product-new-page .init-2 .container .content .slick li .box {
    text-align: center;
  }
  .product-new-page .init-3 .top .cont {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .technology-page .init-1 .container .content .list {
    margin: 20px 10px 0;
  }
  .technology-page .init-2 .container .list .left {
    width: 100%;
    padding: 0;
  }
  .technology-page .init-2 .container .list .right {
    width: 100%;
    padding: 0;
    text-align: center;
    margin-top: 20px;
  }
  .technology-page .init-2 .container .list:nth-child(2n) .left {
    left: 0;
  }
  .technology-page .init-2 .container .list:nth-child(2n) .right {
    left: 0;
    padding: 0;
  }
  .agent-page .init-1 .container .left {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .agent-page .init-1 .container .right {
    margin-top: 40px;
    width: 100%;
  }
  .agent-page .init-3 .container .tips {
    text-align: center;
  }
  .agent-page .init-3 .container .title_c {
    text-align: center;
  }
  .agent-page .init-3 .container .title_c .list {
    margin: 10px 0 0 0;
  }
  .agent-page .init-4 .container {
    text-align: center;
  }
  .service-page .init-1 .container .left {
    width: 100%;
    text-align: center;
  }
  .service-page .init-1 .container .right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
    text-align: center;
  }
  .service-page .init-1 .container .right .bottom_c .cont {
    width: 100%;
    left: 0;
  }
  .service-page .init-1 .container .right .bottom_c .cont .list {
    width: 210px;
  }
  .service-page .init-2 .container .left {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .service-page .init-2 .container .right {
    width: 100%;
    margin-top: 20px;
  }
  .service-page .init-4 .container {
    text-align: center;
  }
  .device-page .init-1 .container .left {
    width: 100%;
  }
  .device-page .init-1 .container .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
  }
  .device-page .init-3 .container .left {
    width: 100%;
  }
  .device-page .init-3 .container .right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
    text-align: center;
  }
  .device-page .init-3 .container .right .line {
    margin: auto;
  }
  .news-page .container ul {
    margin: 0 -5px;
  }
  .news-page .container ul li {
    padding: 0 5px;
    margin-top: 10px;
    text-align: center;
  }
  .news-page .container ul li .box {
    padding: 15px;
  }
  .news-page .container ul li .box .time {
    margin-left: 0;
  }
  .contact-page .init-1 .container .left {
    width: 100%;
    text-align: center;
  }
  .contact-page .init-1 .container .left form .list .name {
    text-align: left;
  }
  .contact-page .init-1 .container .left form .submit_c .submit_btn {
    width: 100%;
  }
  .contact-page .init-1 .container .right {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
  }
  .contact-page .init-1 .container .right .tips {
    text-align: center;
  }
  .history-page .top_c .left{
    width: 100%;
    text-align: center;
  }
  .history-page .top_c .left .line{
    display: none;
  }
  .history-page .top_c .right{
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }
  .history-page .bottom_c .time{
    text-align: center;
    width: 100%;
  }
  .history-page .bottom_c .content{
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .history-page .bottom_c .content .img img{
    text-align: center;
    display: block;
    margin: auto;
  }
  .prodet-page .init-2 .container .content table{
    table-layout: unset;
  }
}
@media (max-width: 700px) {
  .phone_hide {
    display: none;
  }
  #banner .slick li .container .cont .des {
    display: none;
  }
  #banner .slick li .container .cont .more_c .play {
    display: none;
  }
  #index-body .init-3 {
    margin-top: 0;
  }
  #index-body .init-3 .container .bottom_c .list .num {
    font-size: 50px;
  }
  #index-body .init-4 .container .content_c .slick li .box .des {
    text-align: center;
  }
  #footer .f-top {
    padding-top: 10px;
  }
  #footer .f-top .container .list_cont {
    margin: 30px auto 0;
    width: 100%;
    display: block;
    padding: 0;
  }
  #footer .f-top .container .list_cont .logo {
    width: 260px;
    margin: auto;
  }
  #footer .f-top .container .list_cont .first {
    text-align: center;
  }
  #footer .f-top .container .list_cont .subline {
    margin: 4px auto 20px;
  }
  #footer .f-top .container .list_cont2 {
    display: none;
  }
  .suatainable-page .init-1 .container {
    width: 96%;
  }
  .about-page .init-1 .container .list_cont .list {
    margin: 20px 0 0;
    text-align: center;
    width: 100%;
  }
  .about-page .init-1 .container .list_cont .list .text {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
  .about-page .init-2 {
    margin-top: 40px;
  }

  .honor-page .container .list .title {
    margin: 0 -20px;
  }
  .honor-page .container .list .des {
    margin: 20px -20px 0;
  }
  .honor-page .container .list .content .slick .slick-arrow {
    font-size: 30px;
  }
  .technology-page .init-1 .container .content {
    margin-top: 10px;
  }
  .technology-page .init-1 .container .content .list {
    width: 100%;
    margin: 40px 0 0;
  }
  .patent-page .patent-list li .left {
    width: 100%;
    padding: 0;
    border: none;
  }
  .patent-page .patent-list li .right {
    padding: 0;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .service-page .init-1 .container .right .bottom_c .cont {
    padding-top: 20px;
  }
  .service-page .init-1 .container .right .bottom_c .cont .list {
    width: 100%;
    margin-top: 20px;
  }
  .download-page .container .content ul {
    margin: 0 -10px;
  }
  .download-page .container .content ul li {
    padding: 0 10px;
  }
}
@media (max-width: 500px) {
  .pt-90 {
    padding-top: 40px;
  }
  .pb-90 {
    padding-bottom: 40px;
  }
  .pt-80 {
    padding-top: 40px;
  }
  .pb-70 {
    padding-bottom: 40px;
  }
  .pt-70 {
    padding-top: 40px;
  }
  .font-60 {
    font-size: 30px;
  }
  .font-48 {
    font-size: 24px;
    line-height: 2;
  }
  .font-40 {
    font-size: 24px;
    line-height: 2;
  }
  .font-36 {
    font-size: 24px;
    line-height: 2;
  }
  .font-30 {
    line-height: 2;
    font-size: 20px;
  }
  .font-24 {
    font-size: 18px;
    line-height: 2;
  }
  .font-20 {
    font-size: 18px;
    line-height: 2;
  }
  #banner .slick {
    height: 280px;
  }
  #banner .slick li .container .cont .title {
    font-size: 24px;
    line-height: 1.8;
  }
  #banner .slick li .container .cont .more_c {
    margin-top: 20px;
  }
  #banner .slick li .container .cont .more_c .more {
    font-size: 18px;
    padding: 6px 20px;
  }
  #banner .slick li .container .cont .more_c .more .img {
    margin-left: 15px;
  }
  #index-body .init-1 .container ul {
    margin: 0;
  }
  #index-body .init-1 .container ul li {
    padding: 0;
  }
  #index-body .init-1 .container ul li .box {
    padding: 30px 15px;
  }
  #index-body .init-3 .container .bottom_c {
    margin-top: 10px;
  }
  #index-body .init-3 .container .bottom_c .list {
    width: 100%;
    text-align: center;
  }
  #index-body .init-3 .container .bottom_c .list .text {
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  #index-body .init-3 .container .bottom_c .list2 {
    margin: 30px 0 0;
  }
  #index-body .init-3 .container .left .more {
    margin-top: 20px;
  }
  #index-body .init-4 .container .content_c {
    margin-top: 20px;
  }
  #index-body .init-4 .container .content_c .slick li .box .img_c .img {
    height: 80vw;
  }
  #index-body .init-4 .container .content_c .slick li .box .img_c .more_c .more {
    padding: 4px 10px;
  }
  #index-body .init-4 .container .title_c .right .btn {
    width: 40px;
    height: 40px;
  }
  #index-body .init-4 .container .title_c .right .btn .img {
    margin-top: 10px;
  }
  #index-body .init-4 .container .content_c .slick li .box .img_c .title{
    height: auto;
  }
  #index-body .init-5 .img_2 {
    height: 370px;
  }
  #index-body .init-5 .container .content .slick li .box .img {
    height: 105vw;
  }
  #index-body .init-5 .container .content .slick li .box .more {
    margin-top: 10px;
  }
  #index-body .init-6 .container .content {
    padding: 20px 10px 70px;
  }
  #index-body .init-6 .container .content .s_page {
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #index-body .init-6 .container .content .s_page .next {
    margin-left: 10px;
  }
  #index-body .init-6 .container .content .slick li .box .time {
    text-align: center;
    margin-top: 20px;
  }
  #index-body .init-7 .container .right form .name {
    width: 100%;
  }
  #index-body .init-7 .container .right form .mail {
    width: 100%;
    margin-left: 0;
  }
  #index-body .init-7 .container .right form input {
    margin-top: 16px;
  }
  #index-body .init-7 .container .right form .submit_btn {
    margin-top: 16px;
  }
  #footer .f-top .container .list_cont .list_2 {
    margin-top: 10px;
  }
  #footer .f-top .container .list_cont .logo {
    width: 220px;
  }
  #footer .f-top .container .list_cont #ewm {
    width: 100px;
    margin-top: 30px;
  }
  #footer .f-bottom {
    margin-top: 30px;
  }
  #pups_from{
    padding: 30px 15px;
  }
  .right_nav_list{
    right: 5px;
  }
  .right_nav_list ul li{
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .right_nav_list ul li .more_cont{
    font-size: 20px;
  }
  .inner-banner .bottom_c .right {
    font-size: 18px;
    line-height: 2;
  }
  .inner-banner .bottom_c .right .img {
    margin-top: 8px;
  }
  .suatainable-page .init-2 .container .title_c .left .line {
    margin: 5px auto;
  }
  .suatainable-page .init-2 .container .title_c .right {
    margin-top: 4px;
  }
  .suatainable-page .init-2 .container .content {
    margin: 0 -10px;
  }
  .suatainable-page .init-2 .container .content .list .box .text {
    font-size: 20px;
    padding: 10px 16px;
  }
  .suatainable-page .init-1 .container .cont {
    padding: 16px;
  }
  .suatainable-page .init-3 .container .content .slick {
    margin-top: 20px;
  }
  .about-page .init-1 .container .list_cont {
    margin-top: 10px;
  }
  .about-page .init-1 .container .list_cont .list .num {
    font-size: 50px;
  }
  .about-page .init-1 .container .list_cont .list .text {
    margin-top: 10px;
  }
  .honor-page .container .list {
    padding: 40px 20px;
  }
  .product-page .product-list {
    margin: 0;
  }
  .product-page .product-list li {
    padding: 0;
  }
  .m-page {
    margin-top: 30px;
  }
  .m-page a {
    width: 26px;
    height: 26px;
    line-height: 26px;
    margin: 5px;
  }
  .m-page a::before {
    left: 8px;
  }
  .m-page span {
    line-height: 28px;
    width: 26px;
    height: 26px;
    margin: 2px;
  }
  .prodet-page .init-1 .container .left {
    padding: 0;
  }
  .prodet-page .init-1 .container .left .big_img .btn {
    width: 26px;
    height: 26px;
    font-size: 20px;
    line-height: 24px;
    z-index: 2;
  }
  .prodet-page .init-1 .container .left .big_img .prev {
    left: -8px;
  }
  .prodet-page .init-1 .container .left .big_img .prev i {
    margin-left: -2px;
  }
  .prodet-page .init-1 .container .left .big_img .next {
    right: -8px;
  }
  .prodet-page .init-1 .container .left .big_img .next i {
    margin-left: 2px;
  }
  .prodet-page .init-1 .container .small_img .slick {
    margin: 0 -5px;
  }
  .prodet-page .init-1 .container .small_img .slick li {
    padding: 0 5px;
  }
  .prodet-page .init-1 .container .right .title {
    line-height: 1.8;
  }
  .prodet-page .init-3 .container .title_list .list {
    width: 50%;
    text-align: center;
    font-size: 16px;
  }
  .prodet-page .init-3 .container .content_list .list {
    padding-top: 20px;
  }
  .prodet-page .init-5 .container form .name {
    width: 100%;
  }
  .prodet-page .init-5 .container form .mail {
    width: 100%;
    margin-left: 0;
  }
  .prodet-page .init-5 .container form input {
    padding: 12px 12px 12px 60px;
    margin-top: 16px;
  }
  .prodet-page .init-5 .container form textarea {
    padding: 12px 12px 12px 60px;
    margin-top: 16px;
  }
  .product-new-page .init-2 .container .content {
    margin-top: 20px;
  }
  .product-new-page .init-2 .container .content .slick li .box .sub_c .sub {
    margin-top: -3px;
  }
  .product-new-page .init-2 .container .content .slick li .box .more img {
    margin-left: 20px;
  }
  .product-new-page .init-3 .top .cont {
    padding: 100px 0;
  }
  .technology-page .init-1 .container .content .list .des {
    margin-top: 20px;
  }
  .application-page .container .content ul {
    margin: 0;
  }
  .application-page .container .content ul li {
    margin-top: 30px;
    padding: 0;
  }
  .patent-page .patent-list li {
    padding: 20px 15px;
  }
  .patent-page .patent-list li .right .des {
    margin-top: 10px;
  }
  .agent-page .init-4 .container form .name {
    width: 100%;
  }
  .agent-page .init-4 .container form .mail {
    width: 100%;
    margin-left: 0;
  }
  .agent-page .init-4 .container form input {
    margin-top: 20px;
    padding: 12px 20px 12px 60px;
  }
  .agent-page .init-4 .container form textarea {
    margin-top: 20px;
    padding: 12px 20px 12px 60px;
  }
  .service-page .init-1 .container .left img {
    margin-top: 20px;
  }
  .service-page .init-1 .container .right .content_list {
    padding-top: 10px;
  }
  .service-page .init-1 .container .right .content_list .list .des {
    margin-top: 10px;
  }
  .service-page .init-1 .container .right .bottom_c .cont .list .top {
    font-size: 50px;
  }
  .service-page .init-4 .container form input {
    margin-top: 20px;
    padding: 12px 20px 12px 60px;
    width: 100%;
  }
  .service-page .init-4 .container form textarea {
    padding: 12px 20px 12px 60px;
    width: 100%;
    margin-top: 20px;
  }
  .service-page .init-4 .container form .name {
    width: 100%;
  }
  .service-page .init-4 .container form .mail {
    width: 100%;
    margin-left: 0;
  }
  .download-page .container .content {
    margin-top: 0;
  }
  .download-page .container .content ul li .box .text {
    margin-top: 10px;
  }
  .device-page .init-2 .container .content ul li {
    margin-top: 30px;
  }
  .device-page .init-2 .container .content ul li .box .cont {
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 16px 10px;
  }
  .device-page .init-2 .container .content ul li .box .cont .sub {
    width: 100%;
  }
  .device-page .init-2 .container .content ul li .box .cont .text {
    color: #fff;
  }
  .news-page .container ul {
    margin: 0;
  }
  .news-page .container ul li {
    padding: 0;
    margin-top: 20px;
  }
  .newdet-page .container .content {
    margin-top: 20px;
  }
  .m-link {
    margin-top: 20px;
  }
  .contact-page .init-1 .container .left form {
    margin-top: 20px;
  }
  .contact-page .init-1 .container .left form .list {
    margin-top: 10px;
  }
  .contact-page .init-1 .container .left form .list input {
    padding: 6px;
  }
  .contact-page .init-1 .container .left form .list textarea {
    padding: 6px;
  }
  .contact-page .init-1 .container .left form .submit_c .submit_btn {
    padding: 4px 20px;
  }
  .contact-page .init-1 .container .right .list ul li {
    margin-top: 16px;
  }
  .contact-page .init-1 .container .right .list ul li .tips_2 i {
    width: 30px;
  }
  .contact-page .init-1 .container .right .list ul li .cont {
    margin: 8px 0;
  }
  .video-page .container ul {
    margin: 0;
  }
  .video-page .container ul li {
    padding: 0;
    margin-top: 20px;
  }
  .video-page .container ul li:first-child {
    margin-top: 0;
  }
  .history-page .bottom_c .list{
    padding-top: 20px;
    margin-top: 40px;
  }
}



.seoPublic .title {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 32px;
}

.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;
    display: flex;
    align-items: center;
}

.seoPublic .Auxil-about .box .left .img img{
  vertical-align: middle;
  width: 100%;
}

.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: 32px;
    line-height: 2;
    text-transform: uppercase;
    margin-bottom: 1em;
    font-weight: bold;
}

.seoPublic .Auxil-about .box .right .text {
    font-size: 18px;
    line-height: 2;
    color: #666;
    max-height: 310px;
    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;
    background-size: cover;
    background-position: center center;
}

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


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

.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: 1em;
    color: #ffffff;
    background-color: var(--color);
    padding: 6px;
    width: 130px;
    text-align: center;
    font-weight: 400;
    display: block;
}

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

.seoPublic .Auxil-news .list ul li .content a.link {
    font-weight: 400;
    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: 18px!important;
    line-height: 2;
    color: #666;
    font-weight: 400;
}
.seoPublic .seoIndustry .text h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 1000px) {
    .seoPublic .title {
        font-size: 24px;
        margin-bottom: 1em;
    }
    .newdet-page .container .title {
      font-size: 20px;
    }
.Auxil-industry {
  display: none;
}
    #cp-Nav {
        display: block;
    }

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

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

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

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

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

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

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

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

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

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

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

    .seoPublic > div {
        padding: 30px 0;
    }
    .seoPublic .Auxil-about .box .right .text {
        max-height: none;
    }
}
    
@media screen and (max-width: 700px) {
  .seoPublic .seoIndustry{
    display: none;
  }
}
.his-bg .ui.container {
  display: flex;
  align-items: center;
}
.his-bg {
  background-repeat: no-repeat;
  /*background-attachment: fixed;*/
}
.his-bg .left-his {
  margin-left: -13%;
  width: 38%;
}
.his-bg .right-his {
  width: 70%;
  margin-left: 5%;
}
.his-bg img {
  max-width: 100%;
}
.his-bg .right-his .about-4 h3 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 50px;
  margin-top: 0px;
}
.his-bg .right-his .about-4 h2 {
  color: #fff;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .his-bg .right-his .about-4 h3{
    font-size: 29px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 700px) {
  .his-bg .ui.container{
    display: block;
  }
  .his-bg .left-his{
    width: 100%;
    margin-left: 0;
    display: none;
  }
  .his-bg .right-his{
    width: 100%;
    margin-left: 0;
    padding: 30px 0;
  }
}

@media screen and (max-width: 500px) {
  .his-bg .right-his .about-4 h2{
    font-size: 20px;
  }
}

.p05 h2 {
    font-size: 46px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
}
.p05 div,
.p05 p {
  font: inherit;
}
.white {
    color: #fff;
}


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

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

}

.p05 {
  font-size: 16px
}

.p05 h2 {
  margin-bottom: 40px
}

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

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

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

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

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

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

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

.p05 .consultation {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  /*max-width: 1404px;*/
}

.p05 .stable {
  overflow: hidden;
  padding: 120px 0;
  background-color: #19181d;
  text-align: center
}

.p05 .stable p {
  margin: 0 auto 15px;
  max-width: 750px;
  color: gray;
  line-height: 2;
}

.p05 .slicker-stable {
  /*max-width: 1700px;*/
  margin: 60px 0 0;
  /*-webkit-transform: translate(25%, 0);
  -ms-transform: translate(25%, 0);
  transform: translate(25%, 0)*/
}
.p05 .slicker-stable{
  margin-right: -10%;
}
.p05 .slicker-stable .slick-list{
  padding-right: 200px !important;
}
.p05 .slicker-stable .slick-slide {
  position: relative;
  margin: 0 20px
}

.p05 .slicker-stable .slick-slide:before {
  content: '\20';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  /*background-color: rgba(25, 24, 29, .5);*/
  -webkit-transition: all 0.24s;
  -o-transition: all 0.24s;
  transition: all 0.24s
}

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

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

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

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

.p05 .support {
  overflow: hidden;
  color: white
}

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

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

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

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

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

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

.p05 .support p {
  margin-top: 15px;
  font-size: 18px;
  line-height: 2;
}

@media (max-width:1200px) {
  .p05 .slicker-stable {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }

  .p05 .slick-dots {
    max-width: unset;
    width: unset
  }
}

@media (max-width:1000px) {

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

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

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

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

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

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

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

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

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

  .p05 .stable {
    padding: 40px 0
  }

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

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

.p05 h2 {
    font-size: 46px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
}
.p05 div,
.p05 p {
  font: inherit;
}
.white {
    color: #fff;
}
.p05 .slick-dots button{display:none}
.p05 .slick-dots>li{margin:0 10px;width:12px;height:12px;background-color:#fff;border-radius:50%;cursor:pointer;-webkit-transition:all 0.24s;-o-transition:all 0.24s;transition:all 0.24s}
.p05 .slick-dots>li.slick-active{background-color:#fff;}

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

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

  .p05 .support .item{
    display: block;
  }

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

@media screen and (max-width: 800px) {
  .p05 .consultation{
    display: block;
  }
  .p05 .samples, .p05 .consultation{
    display: block;
  }
  .p05 .samples .mml-image, .p05 .consultation .mml-image{
    width: 100%;
  }
  .p05 .support .mml-image img{
    width: 100%;
  }
  .p05 .samples .mml-image img, .p05 .consultation .mml-image img{
    width: 100%;
  }
}
@media screen and (max-width: 501px) {
  .p05 .slicker-stable .slick-list{
    padding-right: 100px !important;
  }
}


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

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

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

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

.p06-1-s5 h2 {
    margin-bottom: 30px;
    font-size:40px;
    font-weight: bold;       
    color: #363636;
    line-height: 1.3;
}

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

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

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

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

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

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

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

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

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

    .p06-1-s5 h2{
      font-size: 24px;
    }
    .inner-banner .cat_cont {
      height: 0 !important;
      padding: 0 !important;
    }
}

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

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

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

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

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

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

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

@media (max-width:540px) {
    .p06-1-s2 .tab li {
        width: 100%
    }
}
.service2-page .service-1 {
    padding: 0 0 130px;
}
.service2-page .service-1 h2{
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: bold;
}
.service2-page .service-1 ul {
    margin: -20px;
}
.service2-page .service-1 ul li {
    padding: 20px;
}
.service2-page .service-1 ul li .box {
    background: white;
    -webkit-box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
    text-align: center;
    padding: 75px 55px;
        border-radius: 20px;
}
.service2-page .service-1 ul li .box .icon {
    height: 60px;
}
.service2-page .service-1 ul li .box .icon img {
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}
.service2-page .service-1 ul li .box h4 {
    font-size: 25px;
    font-weight: bold;
    margin: 20px 0 26px;
}
.service2-page .service-1 ul li .box .text {
    font-size: 18px;
    line-height: 30px;
    min-height: 80px;
}
.service2-page .service-1 ul li .box:hover .icon img {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.service2-page .service-1 .bottom{
  margin-top: 85px;
}
.service2-page .service-1 .bottom .box{
  -webkit-box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  height: 440px;
  background-color: white;
}
.service2-page .service-1 .bottom .left{
  width: 50%;
  height: 100%;
}
.service2-page .service-1 .bottom .left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service2-page .service-1 .bottom .right h3{
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}
.service2-page .service-1 .bottom .right {
  padding-left: 6%;
  width: 50%;
}
.service2-page .service-1 .bottom .right .list{
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.service2-page .service-1 .bottom .right .list:nth-child(3){
  align-items: flex-start;
}
.service2-page .service-1 .bottom .right .list:nth-child(3)::before{
  transform: translateY(10px);
}
.service2-page .service-1 .bottom .right .list:last-child{
  margin-bottom: 0;
}
.service2-page .service-1 .bottom .right .list::before{
  content:"";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color);
  margin-right: 20px;
}

.service2-page .service-2 {
    padding: 100px 0 50px;
}
.service2-page .service-2 .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.service2-page .service-2 .top .text {
    width: 60%;
    padding-right: 60px;
}
.service2-page .service-2 .top .text h3 {
    font-size: 43px;
    font-weight: bold;
    /*font-style: italic;*/
    margin-bottom: 25px;
}
.service2-page .service-2 .top .text h5{
    font-size: 25px;
    line-height: 40px;
}
.service2-page .service-2 .top .text .content {
    font-size: 17px;
    line-height: 30px;
    margin-top: 30px;
}
.service2-page .service-2 .top .text .content p:not(:last-child) {
    margin-bottom: 50px;
}
.service2-page .service-2 .top .img{
    width: 40%;
}
.service2-page .service-2 .product {
    margin: 50px 0;
}
.service2-page .service-2 .product ul{
    margin: -15px;
}
.service2-page .service-2 .product ul li{
    padding: 15px;
}
.service2-page .service-2 .product ul li a.img{
  display: block;
  height: 350px;
}
.service2-page .service-2 .product ul li a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service2-page .service-2 .bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.service2-page .service-2 .bottom .text {
    width: 60%;
    padding-left: 80px;
}
.service2-page .service-2 .bottom .text .content {
    font-size: 18px;
    line-height: 30px;
    margin-top: 30px;
}
.service2-page .service-2 .bottom .text .content p:not(:last-child) {
    margin-bottom: 60px;
}
.service2-page .service-2 .bottom .text .content ul li{
    margin-bottom: 20px;
    display: flex;
}
.service2-page .service-2 .bottom .text .content ul li h5{
    font-size: 26px;
    font-weight: bold;
    display: inline-block;
}
.service2-page .service-2 .bottom .text .content ul li p{
    font-size: 18px;
    margin-top: 6px;
    display: inline-block;
    padding-left: 10px;
}
.service2-page .honor ul{
    margin: -15px;
}
.service2-page .honor ul li{
    padding: 15px;
}
.inner-family{
  font-weight: bold;
}
.i-service-title{
  font-size: 36px;
  font-weight: bold;
}
.i-service-title span{
  color:var(--color);
}

.service2-page .service-3 ul{
  margin:85px -25px 0; 
}
.service2-page .service-3 ul li{
  padding:0 25px; 
}
.service2-page .service-3 ul li .img{
  width: 190px;
  height: 190px;
  border-radius:50%;
  background-color: #f2f7fc; 
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.service2-page .service-3 ul li .img::before{
  content:"";
  width: 80%;
  height: 80%;
  border-radius:50%;
  background-color: #ffffff; 
      box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
}
.service2-page .service-3 ul li .img img{
  position: relative;
  z-index: 2;
}
.service2-page .service-3 ul li h4{
  margin: 35px 0 20px;
}
.service2-page .service-3 ul li p{
  line-height: 1.6;
}

.service2-page .service-4 {
    padding-bottom: 100px;
}
.service2-page .service-4 ul{
  margin-top: 40px;
}
.service2-page .service-4 ul li{
  margin-bottom: 25px;
}
.service2-page .service-4 ul li .title{
  padding: 0 30px 0 50px;
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  background-color: white;
  cursor: pointer;
  transition: all 0.5s;
}
.service2-page .service-4 ul li.active .title{
  background-color: var(--color);
  color:white;
  padding: 0 30px 0 25px;
}

.service2-page .service-4 ul li h4{
  font-size: 20px;
  font-weight: bold;
  display: flex;
  max-width: 95%;
}
.service2-page .service-4 ul li h4::before{
  width: 0;
  height: 38px;
  display: block;
  content:"";
  background: url('../images/faq-icon.png')no-repeat;
  margin-right: 0;
  transition: all 0.5s;
}
.service2-page .service-4 ul li.active h4::before{
  margin-right: 20px;
  width: 38px;
}
.service2-page .service-4 ul li i{
  width: 25px;
  height: 3px;
  background-color: var(--color);
  display: block;
  position: relative;
  transition: all 0.5s;
}
.service2-page .service-4 ul li i::before{
  width: 100%;
  height: 100%;
  background-color: var(--color);
  display: block;
  content:"";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.5s;
}
.service2-page .service-4 ul li.active i::before,
.service2-page .service-4 ul li.active i{
  background-color: white;
}
.service2-page .service-4 ul li.active i::before{
  transform: translate(-50%, -50%) rotate(0deg);
}
.service2-page .service-4 ul li p{
  font-size: 18px;
  padding: 20px 50px;
  background-color: white;
}

.service2-page .about{
    padding: 60px 0;
}
.service2-page .about .right{
    padding-left: 50px;
}
.service2-page .about .right .content{
    font-size: 18px;
    line-height: 30px;
}
@media screen and (max-width: 1200px){
  .service2-page .service-3 ul li {
    width: 50% !important;
    margin: 20px 0;
  }
  .service2-page .service-1 ul li .box {
    padding: 75px 30px;
  }
  .service2-page .service-1 ul li .box .text {
    line-height: 1.4;
  }
  .service2-page .service-2 .top .text {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px){
  .service2-page .service-1,.service2-page .service-2 {
    padding: 60px 0;
  }
  .service2-page .service-1 h2,
  .service2-page .service-2 .top .text h3,
  .service2-page .service-2 .bottom .text h3{
    font-size: 32px !important;
  }
  .service2-page .service-1 ul {
    margin: -10px;
    display: flex;
    flex-wrap: wrap;
  }
  .service2-page .service-1 ul li {
    width: 50% !important;
    padding: 10px;
  }
  .service2-page .service-1 ul li .box {
    padding: 15px;
    height: 100%;
  }
  .service2-page .service-1 ul li .box h4,
  .service2-page .service-2 .top .text h5{
    font-size: 20px;
  }
  .service2-page .service-1 ul li .box .text,.service2-page .service-2 .top .text .content,
  .service2-page .service-2 .bottom .text .content,.font-18 {
    font-size: 16px;
  }
  .service2-page .service-2 .top .text {
    width: 100%;
    padding-right: 0;
  }
  .service2-page .service-2 .top .img {
    width: 100%;
    margin-top: 20px;
  }
  .service2-page .service-2 .top {
    display: block;
    margin-bottom: 40px;
  }
  .service2-page .service-2 .product {
    margin: 20px 0;
  }
  .service2-page .service-2 .bottom .text {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .service2-page .service-2 .bottom .img {
    width: 100%;
  }
  .service2-page .service-2 .bottom {
    display: block;
  }
  .service2-page .service-2 .bottom .text .content ul li {
    display: block;
  }
  .service2-page .service-2 .bottom .text .content p:not(:last-child) {
    margin-bottom: 0;
  }
  .service2-page .service-2 .bottom .text .content p {
    width: 100%;
    padding-left: 0 !important;
  }
  .service2-page .service-1 .bottom .box {
    height: auto;
    background-color: white;
    flex-direction: column;
  }
  .service2-page .service-1 .bottom .box .left{
    width: 100%;
  }
  .service2-page .service-1 .bottom .box .right{
    width: 100%;
    padding: 60px 5%;
  }
  .service2-page .service-3 ul li .img {
    width: 120px;
    height: 120px;
  }
  .service2-page .service-3 ul li .img img{
    width: 60px;
  }
}

@media screen and (max-width: 700px){
  .service2-page .service-1,
  .service2-page .service-2{
    padding: 40px 0;
  }
  .service2-page .service-1 h2,
  .service2-page .service-2 .top .text h3,
  .service2-page .service-2 .bottom .text h3{
    font-size: 24px !important;
  }
  #index-body .init-3 .list ul li .flex .text {
    max-width: none;
  }
  #index-body .init-3 .list ul li .flex span.h6 {
    width: 2em;
    text-align: right;
    justify-content: right;
  }
  .service2-page .service-1 ul li {
    width: 100% !important;
  }
  .service2-page .service-1 ul li .box .text {
    min-height: unset;
  }
  .service2-page .service-1 ul li .box h4 {
    margin: 10px 0;
  }
  table {
    white-space: nowrap;
  }
  .service2-page .service-1 .bottom .right h3,
  .i-service-title {
    font-size: 28px;
  }
  .service2-page .service-3 ul li h4 {
    font-size: 20px;
  }
  .service2-page .service-3 ul li {
    width: 100% !important;
  }
  .service2-page .service-4 ul li h4::before{
    display: none;
  }
  .service2-page .service-1 .bottom .right .list h4{
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 500px){
  .service2-page .service-4 ul li .title {
    padding: 15px 30px;
    height: auto;
  }
  .service2-page .service-4 ul li h4 {
    max-width: 85%;
  }
  .service2-page .service-4 ul li.active .title {
     padding: 15px 30px;
  }
}



/*equipment-page*/

.i-title {
  font-size: 36px;
  font-weight: bold;
}
.i-title span {
  color: var(--color);
}
.equipment-page {
  margin-top: 120px;
  padding-bottom: 200px;
}
.equipment-page .equipment-1 ul {
  margin: 45px -20px 0;
}
.equipment-page .equipment-1 ul li {
  padding: 0 20px;
  width: 33.33333333%;
  margin-bottom: 35px;
}
.equipment-page .equipment-1 ul li .box {
  height: 420px;
  padding: 30px 60px 0;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
  background-color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-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;
      box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
}
.equipment-page .equipment-1 ul li .box .tag {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.equipment-page .equipment-1 ul li .box .tag span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 72px;
  font-weight: bold;
}
.equipment-page .equipment-1 ul li .box h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0 25px;
}
.equipment-page .equipment-1 ul li .box p {
  text-align: center;
  font-size: 18px;
}
.equipment-page .equipment-2 {
  padding: 80px 0 180px;
}
.equipment-page .equipment-2 .top {
  margin: 85px 0 165px;
}
.equipment-page .equipment-2 .top .left {
  width: 50%;
  position: relative;
}
.equipment-page .equipment-2 .top .left:before {
  content: "";
  width: 100%;
  height: 150px;
  border: 1px solid black;
  border-left: none;
  position: absolute;
  display: block;
  top: 50%;
  right: -40px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.equipment-page .equipment-2 .top .left .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.equipment-page .equipment-2 .top .left .box:first-child {
  margin-bottom: 65px;
}
.equipment-page .equipment-2 .top .left .box .list:nth-child(1) {
  width: 360px;
}
.equipment-page .equipment-2 .center {
  position: absolute;
  right: 15px;
  bottom: 165px;
}
.equipment-page .equipment-2 .center img{
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50% rotate(90deg));
  transform: translateX(-50%) rotate(90deg);
}
.equipment-page .equipment-2 .center img:first-child{
  top: -55px;
}
.equipment-page .equipment-2 .center img:last-child{
  bottom: -55px;
}
.equipment-page .equipment-2 .center:before {
    content: "";
    width: 1px;
    height: 240px;
    position: absolute;
    display: block;
    border-left: 1px solid black;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: -1;
}
.equipment-page .equipment-2 .center .list{
  width: 200px;
  height: 90px;
  text-align: center;
  line-height: 90px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
      box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background-color: white;
  font-size: 18px;
}
.equipment-page .equipment-2 .top .left .list {
  width: 280px;
  height: 90px;
  text-align: center;
  line-height: 90px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
      box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background-color: white;
  font-size: 18px;

}
.equipment-page .equipment-2 .top .right {
  width: 45%;
  position: relative;
}
.equipment-page .equipment-2 .top .right .center {
  position: absolute;
  top: 50%;
  left: -55px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.equipment-page .equipment-2 .top .right:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  display: block;
  border-top: 1px solid black;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.equipment-page .equipment-2 .top .right .list {
  width: 25%;
  height: 90px;
  text-align: center;
  line-height: 90px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
      box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background-color: white;
  font-size: 18px;
}
.equipment-page .equipment-2 .bottom {
  position: relative;
}
.equipment-page .equipment-2 .bottom:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #000;
  z-index: -1;
}
.equipment-page .equipment-2 .bottom .list {
  width: 240px;
  height: 90px;
  text-align: center;
  line-height: 90px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
  border-radius: 10px;
  background-color: white;
  font-size: 18px;
  box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
}
.equipment-page .equipment-3 ul {
  margin: 45px -16px 0;
  position: relative;
}
.equipment-page .equipment-3 ul .slick-dots {
  width: -webkit-calc(100% - 32px);
  width: -moz-calc(100% - 32px);
  width: calc(100% - 32px);
  height: 3px;
  background-color: #ededed;
  position: absolute;
  bottom: -35px;
  left: 50%;
  margin: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.equipment-page .equipment-3 ul .slick-dots li.slick-active {
  background-color: var(--color);
}
.equipment-page .equipment-3 ul .slick-dots li {
  width: 100px;
  height: 100%;
  padding: 0;
  background-color: transparent;
  border: 2px solid transparent;
}
.equipment-page .equipment-3 ul .slick-dots li button {
  display: none;
}
.equipment-page .equipment-3 ul li {
  padding: 0 16px;
}
.equipment-page .equipment-3 ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  color: transparent;
  border: none;
  background-color: transparent;
}
.equipment-page .equipment-3 ul .slick-arrow:hover:before {
  color: var(--color);
}
.equipment-page .equipment-3 ul .slick-arrow:before {
  content: "\e6de";
  font-family: "iconfont" !important;
  color: #b2b2b2;
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.equipment-page .equipment-3 ul .slick-prev {
  left: -60px;
}
.equipment-page .equipment-3 ul .slick-next {
  right: -60px;
}
.equipment-page .equipment-3 ul .slick-next:before {
  content: "\e618";
}


/*application-page*/

.app-page {
  margin-top: 100px;
  margin-bottom: 100px;
}
.app-page .ui.container .list {
  margin-bottom: 55px;
}
.app-page .ui.container .list:last-child {
  margin-bottom: 0;
}
.app-page .ui.container .list:nth-child(even) ul li {
  -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;
}
.app-page .ui.container .list:nth-child(even) ul li .right {
  padding-left: 0;
  padding-right: 85px;
  text-align: right;
}
.app-page .ui.container .list:nth-child(even) ul li .right h3 {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -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;
}
.app-page .ui.container .list:nth-child(even) ul li .right h3::before {
  margin-right: 0;
  margin-left: 15px;
}
.app-page .ui.container .list:nth-child(even) ul li .right .inner-more{
  margin-left: auto;
}
.app-page .ui.container .list ul li .left {
  width: 50%;
}
.app-page .ui.container .list ul li .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
      border-radius: 35px;
}
.app-page .ui.container .list ul li .right {
  width: 50%;
  padding-left: 85px;
}
.app-page .ui.container .list ul li .right h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 36px;
}
.app-page .ui.container .list ul li .right h3::before {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color);
  display: block;
  margin-right: 15px;
}
.inner-more {
  width: 200px;
  height: 60px;
  background-color: var(--color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.inner-more::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  right: 100%;
  top: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inner-more:hover::before {
  right: 0;
}
.inner-more span {
  position: relative;
  z-index: 2;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
}




@media (max-width: 1600px) {
  .equipment-page .equipment-2 .container .cont{
    width: 100%;
    overflow-x: auto;
    padding-bottom: 60px;
  }
  .equipment-page .equipment-2 .content{
    width: 1500px;
    padding:0 5px;
  }
  .equipment-page .equipment-2 {
    padding: 80px 0 80px;
  }
  .equipment-page {
    margin-top: 80px;
    padding-bottom: 140px;
  }
  .app-page{
    margin-top: 100px;
  }
}
@media (max-width: 1400px) {

}
@media (max-width: 1200px) {
  .equipment-page .equipment-1 ul li .box {
    padding: 30px 20px 0;
  }
  .app-page .ui.container .list ul li .right {
    width: 100%;
    padding-left: 0;
    margin-top: 60px;
  }
  .app-page .ui.container .list ul li .left {
    width: 100%;
  }
  .app-page .ui.container .list ul li{
    flex-wrap: wrap;
  }
  .inner-banner{
    margin-top: 120px;
  }
}
@media (max-width: 1000px) {

  .equipment-page .equipment-1 ul li {
    width:50%;
  }
}
@media (max-width: 700px) {
  .equipment-page .equipment-1 ul li {
    width:100%;
  }
}















.inner-title p {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 10px;
}
.inner-title p span {
  color: #02459e;
  display: contents;
}
.inner-title h3 {
  font-weight: bold;
}
.inner-title h3 span {
  color: #02459e;
}
.about-page .about-1 {
  background: url('../images/about-1-bg2.jpg') no-repeat;
  background-size: cover;
  padding: 90px 0 185px;
}
.about-page .about-1 .inner-title p{
  display: flex;
  align-items: center;
}
.about-page .about-1 .inner-title p::before{
  content:"";
  width:12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color);
  margin-right: 15px;
  display: block;
}
.about-page .about-1 .inner-title h3{
  line-height: 1.2;
}
.about-page .about-1 .top img{
  border-radius: 20px;
}
.about-page .about-1 .con {
  max-width: 920px;
  margin-top: 15px;
  line-height: 2;
}
.about-page .about-1 .bottom {
  margin-top: 85px;
}
.about-page .about-1 .bottom .left {
  width: 51.3%;
  padding-right: 30px;
}
.about-page .about-1 .bottom .left 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: -15px;
}
.about-page .about-1 .bottom .left ul li {
  width: 50%;
  padding: 15px;
}
.about-page .about-1 .bottom .left ul li .box {
  height: 260px;
  width: 100%;
  background-color: white;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-page .about-1 .bottom .left ul li .box h4 {
  margin: 20px 0 10px;
}
.about-page .about-1 .bottom .left ul li .box h4 em {
  font-size: 60px;
  font-weight: bold;
}
.about-page .about-1 .bottom .left ul li .box h4 span {
  font-size: 30px;
}
.about-page .about-1 .bottom .left ul li .box p {
  font-size: 18px;
  font-weight: 300;
}
.about-page .about-1 .bottom .right {
  width: 48.7%;
  border-radius: 20px;
  overflow: hidden;
}
.about-page .about-1 .bottom .right img{
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.about-page .about-2 {
  padding: 135px 0 110px;
  background: url('../images/about-2-bg.jpg') no-repeat;
  position: relative;
  overflow: hidden;
}
.about-page .about-2 .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(0, 30%);
  -moz-transform: translate(0, 30%);
  -ms-transform: translate(0, 30%);
  transform: translate(0, 30%);
}
.about-page .about-2 .top .inner-title {
  color: white;
}
.about-page .about-2 .top .inner-title h3 {
  text-transform: capitalize;
  line-height: 1.3;
}
.about-page .about-2 .bottom {
  margin-top: 60px;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 35px;
  background-color: white;
  padding: 150px 85px;
  position: relative;
}
.about-page .about-2 .bottom::before {
  content: "";
  width: 1px;
  height: -webkit-calc(100% - 230px);
  height: -moz-calc(100% - 230px);
  height: calc(100% - 230px);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.2);
}
.about-page .about-2 .bottom ul .slick-slide:nth-child(even) li .box {
  margin-left: 0;
  margin-right: auto;
  text-align: right;
}
.about-page .about-2 .bottom ul .slick-slide:nth-child(even) li .box h3 {
  margin-left: auto;
}
.about-page .about-2 .bottom ul .slick-slide:nth-child(even) li .box h3::before {
  right: unset;
  left: 130%;
}
.about-page .about-2 .bottom ul .slick-slide.slick-current li .box .text h3 {
  color: #2573be;
}
.about-page .about-2 .bottom ul .slick-slide.slick-current li .box .text p {
  color: #000000;
}
.about-page .about-2 .bottom ul .slick-slide.slick-current li .dot {
  background-color: rgba(37, 115, 190, 0.2);
}
.about-page .about-2 .bottom ul .slick-slide.slick-current li .dot::after {
  opacity: 1;
}
.about-page .about-2 .bottom ul .slick-slide.slick-current li .dot::before {
  width: 22px;
  height: 22px;
}
.about-page .about-2 .bottom ul{
  margin: -30px 0;
}
.about-page .about-2 .bottom ul li {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  flex-wrap: wrap;
}
.about-page .about-2 .bottom ul .slick-slide:nth-child(even) li {
  flex-direction: row-reverse;
}
.about-page .about-2 .bottom ul li .img{
  max-width: 475px;
}
.about-page .about-2 .bottom ul li .dot {
  position: absolute;
  left: 50%;
  top: 40px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  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;
}
.about-page .about-2 .bottom ul li .dot::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #716e6e;
  background-color: white;
  position: relative;
  z-index: 5;
}
.about-page .about-2 .bottom ul li .dot::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #6299e0;
  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;
}
.about-page .about-2 .bottom ul li .box {
  max-width: 475px;
  margin-left: auto;
  height: 260px;
}
.about-page .about-2 .bottom ul li .box .text h3 {
  color: #2573be;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  font-size: 52px;
}
.about-page .about-2 .bottom ul .slick-slide:nth-child(odd) li .dot span{
  right: unset;
  left: 130%;
}
.about-page .about-2 .bottom ul li .dot span {
  display: block;
  width: 105px;
  height: 1px;
  background-color: #b6b6b6;
  position: absolute;
  right: 130%;
  top:50%;
  transform: translateY(-50%);
}
.about-page .about-2 .bottom ul li .box .text p {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  font-weight: 300;
}
.about-page .about-3 {
  padding: 205px 0 135px;
  background-color: #d6e4f5;
}
.about-page .about-3 .left {
  border-radius: 35px;
  overflow: hidden;
}
.about-page .about-3 .left img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
.about-page .about-3 .right {
  border-radius: 35px;
  overflow: hidden;
  background-color: white;
  padding: 110px 80px 0;
}
.about-page .about-3 .right h4 {
  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;
}
.about-page .about-3 .right h4::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #000;
  margin-right: 15px;
}
.about-page .about-4 {
  padding: 155px 0 185px;
  background: url('../images/about-4-bg.png') no-repeat;
  background-position: 0 150%;
}
.about-page .about-4 .top .btn span {
  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;
  background-color: #02459e;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /*opacity: 0.6;*/
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
.about-page .about-4 .top .btn span:hover {
  opacity: 1;
  background-color: #000;
}
.about-page .about-4 .top .btn span i {
  font-size: 30px;
  color: white;
}
.about-page .about-4 .bottom {
  width: 1715px;
  margin-left: auto;
}
.about-page .about-4 .bottom ul {
  margin: 80px -115px 0 0;
}
.about-page .about-4 .bottom ul .slick-current + .slick-slide + .slick-slide + .slick-slide li .img {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  -webkit-mask-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  mask-image: -webkit-gradient(linear, right top, left top, color-stop(20%, rgba(0, 0, 0, 0)), color-stop(60%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.6)));
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.6) 100%);
}
.about-page .about-4 .bottom ul li {
  padding: 0 15px;
  height: 550px;
}
.about-page .about-4 .bottom ul li .img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 42px;
  overflow: hidden;
  height: 100%;
}
.about-page .about-4 .bottom ul li .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .about-5 {
  padding: 180px 0 140px;
  background-color: #d8e5f7;
}
.about-page .about-5 .left {
  width: 36%;
  padding-right: 50px;
}
.about-page .about-5 .left .btn{
  width: 180px;
  height: 65px;
  border-radius: 35px;
  background-color: white;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.about-page .about-5 .left .btn:hover{
  background-color: var(--color);
  color: white;
}
.about-page .about-5 .right {
  width: 64%;
}
.about-page .about-5 .right .swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  transition: 300ms;
  height: 515px;
}
.about-page .about-5 .right .swiper-slide .img {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.about-page .about-5 .right .swiper-slide-active .img,
.about-page .about-5 .right .swiper-slide-duplicate-active .img {
  -webkit-transform: scale(1.32);
  -moz-transform: scale(1.32);
  -ms-transform: scale(1.32);
  transform: scale(1.32);
  position: relative;
  z-index: 10;
}
.about-page .about-6 {
  margin: 135px 0 250px;
  position: relative;
}
.about-page .about-6 .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(0, 80%);
  -moz-transform: translate(0, 80%);
  -ms-transform: translate(0, 80%);
  transform: translate(0, 80%);
}
.about-page .about-6 .bottom {
  margin-top: 75px;
}
.about-page .about-6 .bottom ul{
  position: relative;
}


.about-page .about-6 .bottom ul button {
  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;
  background-color: white;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  color: transparent;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border: none;
  z-index: 10;
}
.about-page .about-6 .bottom ul button.slick-prev{
  left: 28%;
}
.about-page .about-6 .bottom ul button.slick-next{
  right: 28%;
}
.about-page .about-6 .bottom ul button:hover {
  background-color: #92b6e2;
}
.about-page .about-6 .bottom ul button:hover::before{
  color: white;
} 
.about-page .about-6 .bottom ul button::before {
  font-size: 30px;
   position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  color:black;
  content:"";
  font-family: 'iconfont' !important;
  transition: all 0.5s;
}
.about-page .about-6 .bottom ul button.slick-prev::before {
  content:"\e76e";
}
.about-page .about-6 .bottom ul button.slick-next::before {
  content:"\e76f";
}
.about-page .about-6 .bottom ul li {
  padding: 0 30px;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about-page .about-6 .bottom ul li .img{
  opacity: 0.4;
  border-radius: 35px;
  overflow: hidden;
  transition: all 0.5s;
}
.about-page .about-6 .bottom ul .slick-current li .img{
  opacity: 1;
}
.text-uppercase{
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .about-page .about-4 {
    padding: 155px 0;
  }
  .about-page .about-6 {
    margin: 135px 0;
  }
  .about-page .about-2 .bottom ul li .dot {
    top: 25px;
  }
  .about-page .about-2 .bottom ul li .dot span {
    width: 65px;
  }
  .about-page .about-1 .con {
    line-height: 1.6;
  }
}
@media (max-width: 1400px) {
  .about-page .about-2 .bottom ul li .box,
  .about-page .about-2 .bottom ul li .img {
    max-width: 37%;
  }
  .about-page .about-3 .right {
    padding: 60px 80px;
  }
  .about-page .about-4 .bottom ul .slick-current + .slick-slide + .slick-slide li .img {
    -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
    -webkit-mask-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    mask-image: -webkit-gradient(linear, right top, left top, color-stop(20%, rgba(0, 0, 0, 0)), color-stop(60%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.6)));
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.6) 100%);
  }
  .about-page .about-1 .con {
    max-height: 240px;
    overflow-y: auto;
    padding-right: 15px;
  }
}
@media (max-width: 1200px) {
  .about-page .about-1 .con {
    max-width: 100%;
    margin-top: 25px;
  }
  .about-page .about-1 {
    padding: 90px 0;
  }
  .about-page .about-2 .bottom {
    padding: 85px;
  }
  .about-page .about-3 .right .inner-title h3 br{
    display: none
  }
  .about-page .about-4 {
    padding: 85px 0;
  }
  .about-page .about-5 {
    padding: 90px 0;
  }
  .about-page .about-5 .right .swiper-slide {
    height: 340px;
  }
  .about-page .about-6 {
    margin: 85px 0;
  }
  .about-page .about-2 .bottom ul li .box {
    max-width: 35%;
  }
  .about-page .about-2 .bottom ul li .box .text p {
    line-height: 1.6;
  }
  .about-page .about-2 .bottom ul li .box h3{
    font-size: 54px;
  }
  .about-page .about-1 .con {
    max-height: 130px;
  }
  .about-page .about-1 .bottom .left ul li .box h4 em {
    font-size: 40px;
  }
}
@media (max-width: 1000px) {
  .about-page .about-1 .top .text{
    width: 100%;
    margin-top: 45px;
    padding-left: 0;
  }
  .about-page .about-1 .con {
    max-height: unset;
    overflow-y: unset;
    padding-right: 0;
  }
  .about-page .about-1 .top .img{
    width: 100%;
  }
  .about-page .about-1 .bottom .left{
    width: 100%;
    margin-bottom: 60px;
    padding-right: 0;
  }
  .about-page .about-1 .bottom .right{
    width: 100%;
  }
  .about-page .about-2 .bottom ul li .dot {
    left: 0;
    top: 35px;
    transform: unset;
  }
  .about-page .about-2 .bottom {
    padding: 85px 30px;
  }
  .about-page .about-2 .bottom ul li .box {
    max-width: 90%;
    margin-left: 150px;
    height: 260px;
  }
  .about-page .about-2 .bottom ul .slick-slide:nth-child(even) li .box {
    margin-left: 150px;
    margin-right: 0;
    text-align: left;
  }
  .about-page .about-2 .bottom ul .slick-slide:nth-child(even) li .box h3 {
    margin-left: 0;
  }
  .about-page .about-2 .bottom::before {
    top: 140px;
    left: 56px;
    transform: unset;
  }
  .about-page .about-3 .left{
    width: 100%;
  }
  .about-page .about-3 .right{
    width: 100%;
  }
  .about-page .about-4 .bottom ul .slick-current + .slick-slide li .img {
    -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
    -webkit-mask-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    mask-image: -webkit-gradient(linear, right top, left top, color-stop(20%, rgba(0, 0, 0, 0)), color-stop(60%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.6)));
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.6) 100%);
  }
  .about-page .about-5 .left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
  }
  .about-page .about-5 .right {
    width: 100%;
  }
  .about-page .about-2 .bottom ul li .dot span {
    right: 0;
    left: 130%;
  }
  .about-page .about-2 .bottom ul li .img{
    max-width: 90%;
    margin-left: 150px;
    margin-bottom: 30px;
    display: none;
  }
  .about-page .about-2 .bottom ul {
    margin: 0;
  }
  .about-page .about-2 .bottom ul li{
    padding: 0;
  }

}
@media (max-width: 700px) {
  .about-page .about-1 .bottom .left ul li .box h4 em {
    font-size: 40px;
  }
  .about-page .about-1 .bottom {
    margin-top: 70px;
  }
  .about-page .about-3 {
    padding: 85px 0;
  }
  .about-page .about-3 .right {
    padding: 60px 35px;
  }
  .font-72 {
    font-size: 50px;
  }
  .about-page .about-4 .top .btn{
    display: none;
  }
  .about-page .about-2 .bottom ul li .box {
    max-width: 100%;
  }
  .about-page .about-2 .bottom ul li .box {
    height: 400px;
  }
}
@media (max-width: 500px) {
  .about-page .about-1 .bottom .left ul li {
    width: 100%;
  }
  .about-page .about-1 .bottom .left ul li .box h4 em {
    font-size: 60px;
  }
  .about-page .about-2 .bottom ul li .dot,
  .about-page .about-2 .bottom::before{
    display: none;
  }
  .about-page .about-2 .bottom ul{
    margin: -30px 0;
  }
  .about-page .about-2 .bottom ul li{
    padding: 30px 0;
  }
  .about-page .about-2 .bottom ul li .box {
    height: 360px;
  }
  .about-page .about-2 .bottom ul .slick-slide:nth-child(even) li .box {
    margin-left: 0;
  }
  .about-page .about-2 .bottom ul .slick-slide li .box {
    margin-left: 0;
  }
  .about-page .about-2 .bottom {
    padding: 40px 30px;
  }
  .about-page .about-3 .right .con{
    padding-left: 0;
    margin-top: 10px;
  }
  .about-page .about-3 .right .con p{
    padding-left: 0;
  }
  .about-page .about-4 .bottom {
    margin-left: 0;
  }
  .about-page .about-5 .right .swiper-slide {
    height: auto;
  }
  .about-page .about-5 .right .swiper-slide-active .img, .about-page .about-5 .right .swiper-slide-duplicate-active .img {
    transform: unset;
  }
}