@font-face {
  font-family: 'Arial';
  src: url('../fonts/Arial.eot');
  src: url('../fonts/Arial.eot?#iefix') format('embedded-opentype'), 
  url('../fonts/Arial.woff2') format('woff2'), 
  url('../fonts/Arial.woff') format('woff'), 
  url('../fonts/Arial.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Arial";
  max-width: 1920px;
  --color: #0097f0;
  --green: #abce1a;
  font-weight: normal;
  margin: 0 auto;
}
:root {
  --containerWidth: 1500px;
}
.container {
  width: 1530px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.search-box {
    line-height: normal;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}
.search-box form {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 60%;
    margin-left: -30%;
}
.search-box form input {
    background: none;
    outline: none;
    border: none;
}
.search-box form input[type="text"] {
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    font-size: 26px;
    color: #000;
    padding: 10px 0;
}
.search-box form input[type="submit"] {
    width: 22px;
    height: 22px;
    background: url(../images/tc-zoom.png) no-repeat;
    position: absolute;
    right: 15px;
    top: 20px;
}
.search-box form input[type="submit"]:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.search-box .close {
    width: 30px;
    height: 30px;
    background: url(../images/close.png) no-repeat;
    position: absolute;
    right: 25px;
    top: 15px;
    cursor: pointer;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  transition: all 0.5s;
}
#header.active{
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#header .nav {
  height: 105px;
  width: 100%;
  padding-left: 55px;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 16px;
  color: black;
  margin-right: 50px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
  font-weight: 600;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  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 {
  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: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#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: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#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 ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#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:hover > ul {
  display: block;
}
#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 .right {
  margin-left: 95px;
}
#header .nav .ui.menu .right > div {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#header .nav .ui.menu .right .h-search {
  cursor: pointer;
  padding-right: 20px;
  border-right: 1px solid black;
}
#header .nav .ui.menu .right .h-inquiry {
  width: 255px;
  height: 105px;
  background-color: #1f396d;
  color: white;
  cursor: pointer;
}
.language-box {
  margin-left: 20px;
  margin-right: 30px;
}
.language-box .zhuyu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box .zhuyu span {
  font-size: 24px;
  margin: 0 8px;
}
.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;
  left: 0;
  z-index: 100;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
.more {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 38px;
  padding-right: 10px;
  height: 70px;
  background-color: var(--color);
  border-radius: 35px;
  overflow: hidden;
  position: relative;
}
.more::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  border-radius: 35px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.more:hover::before {
  right: 0;
}
.more span {
  font-size: 18px;
  color: white;
  position: relative;
  z-index: 5;
  margin-right: 20px;
  text-transform: uppercase;
}
.more i {
  width: 55px;
  height: 55px;
  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;
  color: var(--color);
  border-radius: 50%;
  font-size: 30px;
  position: relative;
  z-index: 5;
}
.h-title {
  position: relative;
  padding-top: 90px;
}
.h-title::before {
  content: attr(data-text);
  font-weight: bold;
  font-size: 328px;
  position: absolute;
  top: 0;
  left: -40px;
  line-height: 0.8;
  color: #f7f8f9;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#f7f8f9), color-stop(40%, #f7f8f9), color-stop(70%, rgba(247, 248, 249, 0.5)), to(rgba(247, 248, 249, 0)));
  -webkit-mask-image: -webkit-linear-gradient(top, #f7f8f9 0%, #f7f8f9 40%, rgba(247, 248, 249, 0.5) 70%, rgba(247, 248, 249, 0) 100%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(#f7f8f9), color-stop(40%, #f7f8f9), color-stop(70%, rgba(247, 248, 249, 0.5)), to(rgba(247, 248, 249, 0)));
  mask-image: linear-gradient(to bottom, #f7f8f9 0%, #f7f8f9 40%, rgba(247, 248, 249, 0.5) 70%, rgba(247, 248, 249, 0) 100%);
  text-transform: uppercase;
}
.h-title p {
  font-size: 18px;
  margin-bottom: 5px;
  padding-left: 30px;
  position: relative;
  z-index: 5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.h-title p::before {
  content: "";
  width: 24px;
  height: 29px;
  background: url("../images/logo-icon.png") no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.h-title h3 {
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  z-index: 5;
}
@-webkit-keyframes scale_play {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
}
@-moz-keyframes scale_play {
  0% {
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
}
@keyframes scale_play {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
}
#banner {
  margin-top: 105px;
  position: relative;
  z-index: 1;
}
#banner ul li {
  position: relative;
}
#banner ul li .content {
  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%);
}
#banner ul li .content .box {
  width: 50%;
  text-align: right;
  color: white;
  margin-left: auto;
}
#banner ul li .content .box h2 {
  font-weight: 600;
}
#banner ul li .content .box h2 em {
  color: var(--green);
}
#banner ul li .content .box h3 {
  font-weight: 300;
  font-style: italic;
}
#banner ul li .content .box p {
  margin: 25px 0 70px;
}
#banner ul li .content .box .more {
  margin-left: auto;
}
#banner .slickDots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  height: 90px;
  background-color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 40px;
}
#banner .slickDots ul li {
  background-color: #d1d1d1;
  border-color: #d1d1d1;
  margin: 0 20px;
}
#banner .slickDots ul li.slick-active {
  background-color: transparent;
  border-color: black;
}
#index-body .homepage-1 {
  padding: 155px 0;
}
#index-body .homepage-1 .bottom {
  margin-top: 120px;
}
#index-body .homepage-1 .bottom ul {
  margin: -15px;
}
#index-body .homepage-1 .bottom ul li {
  padding: 15px;
}
#index-body .homepage-1 .bottom ul li:hover .box .img h4 {
  opacity: 0;
}
#index-body .homepage-1 .bottom ul li:hover .box .text {
  top: 0;
}
#index-body .homepage-1 .bottom ul li .box {
  overflow: hidden;
}
#index-body .homepage-1 .bottom ul li .box .img h4 {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  color: white;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  width: 100%;
  padding: 0 30px;
  text-align: center;
}
#index-body .homepage-1 .bottom ul li .box .text {
  color: white;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 151, 240, 0.6);
  padding: 60px 20px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .homepage-1 .bottom ul li .box .text h4 {
  font-weight: 600;
}
#index-body .homepage-1 .bottom ul li .box .text p {
  font-weight: 300;
}
#index-body .homepage-1 .bottom ul li .box .text .btn {
  font-size: 30px;
}

.our-about {
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.our-about::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 84%;
  left: 0;
  top: 16%;
  background-color: #f4f6fa;
}
.our-about .play {
  position: relative;
  width: 68px;
  border-radius: 50%;
  cursor: pointer;
}
.our-about .play::before,
.our-about .play::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(11, 24, 62, 0.35);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.our-about .play::after {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.our-about .desc {
  color: #0b183e;
  font-weight: 500;
  font-style: italic;
}
.our-about .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.our-about .left {
  width: 45%;
  padding-right: 4%;
}
.our-about .left .img {
  height: 100%;
  margin-left: -webkit-calc(-50vw + var(--containerWidth) / 2);
  margin-left: -moz-calc(-50vw + var(--containerWidth) / 2);
  margin-left: calc(-50vw + var(--containerWidth) / 2);
  overflow: hidden;
  border-radius: 0 30px 0 0;
  position: relative;
}
.our-about .left .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.our-about .left .img::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  bottom: 100%;
  font-size: 320px;
  letter-spacing: .2em;
  line-height: .7;
  font-weight: 600;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  color: #FFFFFF;
  opacity: .15;
}
.our-about .right {
  width: 55%;
  margin-top: 80px;
}
.our-about .info {
  background-color: var(--color);
  margin-left: -40%;
  border-radius: 30px 0 0 30px;
  position: relative;
}
.our-about .info::before {
  content: "";
  position: absolute;
  left: 100%;
  right: -webkit-calc(-50vw + var(--containerWidth) / 2);
  right: -moz-calc(-50vw + var(--containerWidth) / 2);
  right: calc(-50vw + var(--containerWidth) / 2);
  top: 0;
  bottom: 0;
  background-color: var(--color);
}
.our-about .info 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-right: -30px;
}
.our-about .info li {
  text-align: center;
  padding: 30px;
  position: relative;
  width: 25%;
}
.our-about .info li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 35%;
  height: 25%;
  border-left: 1px solid #FFFFFF;
  opacity: .15;
}
.our-about .info li .icon {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-about .info li p {
  color: #FFFFFF;
}
.our-about .info li:hover .icon {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.our-about .list ul {
  margin-right: -45px;
}
.our-about .list li {
  padding-right: 45px;
}
#index-body .homepage-2 {
  padding-bottom: 465px;
  background: url("../images/about-bg.jpg") no-repeat bottom;
  position: relative;
}
#index-body .homepage-2 .play {
  width: 155px;
  height: 155px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 175px;
}
#index-body .homepage-2 .play img {
  position: relative;
  z-index: 5;
}
#index-body .homepage-2 .play::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 151, 240, 0.2);
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: scale_play 2s infinite linear;
  -moz-animation: scale_play 2s infinite linear;
  animation: scale_play 2s infinite linear;
}
#index-body .homepage-2 .play::after {
  content: "";
  width: 115px;
  height: 115px;
  display: block;
  background-color: rgba(0, 151, 240, 0.4);
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-animation: scale_play 2s infinite linear;
  -moz-animation: scale_play 2s infinite linear;
  animation: scale_play 2s infinite linear;
}
#index-body .homepage-2 .left {
  width: 55%;
}
#index-body .homepage-2 .right {
  width: 45%;
}
#index-body .homepage-2 .right ul {
  margin: -45px -50px;
}
#index-body .homepage-2 .right ul li {
  padding: 45px 50px;
}
#index-body .homepage-2 .right ul li .box {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  padding-top: 25px;
  padding-left: 15px;
}
#index-body .homepage-2 .right ul li .box h4 em {
  font-weight: 700;
  font-size: 48px;
  line-height: 0.8;
}
#index-body .homepage-2 .right ul li .box h4 span {
  font-size: 14px;
  opacity: 0.6;
  margin-left: 5px;
}
#index-body .homepage-2 .right ul li .box p {
  font-size: 14px;
  opacity: 0.6;
  margin-top: 15px;
}
#index-body .homepage-3 {
  padding: 120px 0;
}
#index-body .homepage-3 .top .h-title::before {
  font-size: 188px;
}
#index-body .homepage-3 .center {
  margin: 80px 0 95px ;
}
#index-body .homepage-3 .center ul {
  margin: 0;
}
#index-body .homepage-3 .center ul .slick-current li .box h5 {
  color: var(--color);
}
#index-body .homepage-3 .center ul .slick-current li::before {
  opacity: 1;
}
#index-body .homepage-3 .center ul li {
  padding: 60px 20px 0;
  position: relative;
  cursor: pointer;
}
#index-body .homepage-3 .center ul li::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--color);
  position: absolute;
  left: 0;
  top: 1px;
  opacity: 0;
  z-index: 5;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .homepage-3 .center ul li::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #efefef;
  position: absolute;
  left: 0;
  top: 2px;
}
#index-body .homepage-3 .center ul li .box .num {
  color: var(--color);
  font-weight: 700;
}
#index-body .homepage-3 .center ul li .box h5 {
  width: -webkit-calc(100% - 55px);
  width: -moz-calc(100% - 55px);
  width: calc(100% - 55px);
  line-height: 1.2;
  font-weight: 700;
}
#index-body .homepage-3 .bottom {
  position: relative;
}
#index-body .homepage-3 .bottom .arrow {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .homepage-3 .bottom .arrow span {
  width: 70px;
  height: 70px;
  background-color: #e7e7f1;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#index-body .homepage-3 .bottom .arrow span:hover {
  background-color: var(--color);
}
#index-body .homepage-3 .bottom .arrow span:hover i {
  color: white;
}
#index-body .homepage-3 .bottom .arrow span i {
  font-size: 24px;
  color: #939393;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .homepage-3 .bottom ul li .box {
  color: white;
}
#index-body .homepage-3 .bottom ul li .box .left {
  background: -webkit-gradient(linear, left top, left bottom, from(#24a6f2), to(#6ec8e5));
  background: -webkit-linear-gradient(top, #24a6f2 0%, #6ec8e5 100%);
  background: -moz-linear-gradient(top, #24a6f2 0%, #6ec8e5 100%);
  background: linear-gradient(to bottom, #24a6f2 0%, #6ec8e5 100%);
  padding: 55px 60px;
}
#index-body .homepage-3 .bottom ul li .box .left h4 {
  font-weight: 700;
  max-width: 85%;
  line-height: 1;
}
#index-body .homepage-3 .bottom ul li .box .left .text {
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
#index-body .homepage-3 .bottom ul li .box .left .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
#index-body .homepage-3 .bottom ul li .box .left .btn:hover {
  color: var(--color);
}
#index-body .homepage-3 .bottom ul li .box .left .btn:hover i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#index-body .homepage-3 .bottom ul li .box .left .btn span {
  font-size: 18px;
  font-weight: 300;
}
#index-body .homepage-3 .bottom ul li .box .left .btn i {
  font-size: 24px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .homepage-3 .bottom ul li .box .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .homepage-4 {
  padding: 125px 0 175px;
}
#index-body .homepage-4 .h-title p {
  display: inline-block;
}
#index-body .homepage-4 .h-title::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#index-body .homepage-4 ul li .box {
  padding: 40px 25px;
  height: 380px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .homepage-4 ul li .box:hover {
  border-color: var(--color);
}
#index-body .homepage-4 ul li .box:hover .btn {
  opacity: 1;
}
#index-body .homepage-4 ul li .box .date {
  color: var(--color);
}
#index-body .homepage-4 ul li .box h4 {
  font-weight: 700;
}
#index-body .homepage-4 ul li .box .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 25px;
  opacity: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .homepage-4 ul li .box .btn span {
  font-size: 18px;
  font-weight: 300;
  color: var(--color);
}
#index-body .homepage-4 ul li .box .btn i {
  font-size: 24px;
  color: var(--color);
}

.gxs-5 {
  position: relative;
  padding-bottom: 145px;
  background: #fff;
}
.gxs-5 a.more{
  margin: 0 auto;
}
.gxs-5 img.lt {
  position: absolute;
  top: 0;
  left: 0;
}
.gxs-5 img.rb {
  position: absolute;
  top: 0;
  right: 0;
}
.gxs-5 .ui.container {
  max-width: 1570px;
  text-align: center;
}
.gxs-5 .ui.container .top {
  position: relative;
}
.gxs-5 .ui.container .top .h-title p {
  display: inline-block;
}
.gxs-5 .ui.container .top .h-title::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.gxs-5 .ui.container .top .title {
  text-transform: uppercase;
  font-weight: 800;
}
.gxs-5 .ui.container a.more4 {
  height: 52px;
  line-height: 52px;
  padding: 0 20px;
  border-radius: 20px 0 0 0;
  border: 2px solid #eee;
  color: var(--base-color2);
  font-size: 16px;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  margin: 0 auto;
}
.gxs-5 .ui.container a.more4 em {
  margin-right: 10px;
}
.gxs-5 .ui.container a.more4 img {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-5 .ui.container a.more4:hover {
  background: var(--base-color);
  color: #fff;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-5 .ui.container a.more4:hover img {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.gxs-5 .ui.container .main {
  margin-top: 100px;
  overflow: hidden;
  margin-bottom: 75px;
}
.gxs-5 .ui.container .main ul.newslist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gxs-5 .ui.container .main ul.newslist li {
  width: 25%!important;
}
.gxs-5 .ui.container .main ul.newslist li.swiper-slide-active {
  width: 50%!important;
}
.gxs-5 .ui.container .main ul.newslist li.swiper-slide-active .imgbox .text {
  border-radius: 30px 0 0 0 ;
  overflow: hidden;
}
.gxs-5 .ui.container .main ul.newslist li.swiper-slide-active .imgbox .text:before {
  opacity: 0.8;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-5 .ui.container .main ul.newslist li .item {
  display: block;
}
.gxs-5 .ui.container .main ul.newslist li .item .imgbox {
  height: 450px;
  width: 100%;
  position: relative;
  display: block;
  background-size: cover!important;
}
.gxs-5 .ui.container .main ul.newslist li .item .imgbox .text {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  max-width: 405px;
  padding: 20px 20px 50px 20px;
  border-radius: 20px 0 0 0;
  display: inline-block;
  text-align: left;
}
.gxs-5 .ui.container .main ul.newslist li .item .imgbox .text:hover:before {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #e5f4fb;
}
.gxs-5 .ui.container .main ul.newslist li .item .imgbox .text:hover .time {
  color: #000;
}
.gxs-5 .ui.container .main ul.newslist li .item .imgbox .text:hover .nname {
  color: #000;
}
.gxs-5 .ui.container .main ul.newslist li .item .imgbox .text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/news-text-bj.jpg) left center no-repeat;
  z-index: -1;
  background-size: cover;
  top: 0;
  left: 0;
}
.gxs-5 .ui.container .main ul.newslist li .item .imgbox .text .time {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.gxs-5 .ui.container .main ul.newslist li .item .imgbox .text .time .day {
  font-size: 30px;
  font-weight: bold;
}
.gxs-5 .ui.container .main ul.newslist li .item .imgbox .text .nname {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  margin-top: 15px;
  height: 64px;
  overflow: hidden;
}
#footer {
  background: #1f396d;
}
#footer .form {
  background: url("../images/form-bg.jpg") no-repeat;
  background-size: cover;
  padding: 100px 0;
}
#footer .form .h-title h3 {
  color: white;
}
#footer .form ul {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#footer .form ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .form ul li:first-child {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#footer .form ul li:nth-child(n + 2) {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#footer .form ul li span {
  font-size: 18px;
  color: white;
  max-width: 580px;
  display: inline-block;
  margin-left: 10px;
  font-weight: 300;
}
#footer .form form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .form form input[type="text"] {
  width: 16.5%;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0 20px;
  color: white;
  background: transparent;
  font-weight: 300;
  font-size: 16px;
}
#footer .form form input[name="content"] {
  width: 24%;
}
#footer .form form input[type="submit"] {
  width: 15.5%;
  height: 55px;
  background: var(--color);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border: none;
  text-transform: uppercase;
  transition: all 0.5s;
}
#footer .form form input[type="submit"]:hover{
  background-color: var(--green);
}
#footer .form form input::-webkit-input-placeholder {
  color: white;
}
#footer .f-content {
  padding: 125px 0;
}
#footer .f-content ul li.logo {
  max-width: 300px;
  color: white;
}
#footer .f-content ul li.logo p {
  font-weight: 300;
}
#footer .f-content ul li.logo .share a {
  width: 35px;
  height: 35px;
  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;
  border-radius: 50%;
  margin-right: 15px;
}
#footer .f-content ul li.logo .share a:first-child {
  background-color: #3b5999;
}
#footer .f-content ul li.logo .share a:nth-child(2) {
  background-color: #00aced;
}
#footer .f-content ul li.logo .share a:nth-child(3) {
  background-color: #cb2027;
}
#footer .f-content ul li.logo .share a:nth-child(4) {
  background-color: #cc2366;
  margin-right: 0;
}
#footer .f-content ul li.logo .share a i {
  font-size: 20px;
}
#footer .f-content ul li h4 {
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin-bottom: 40px;
  text-transform: uppercase;
}
#footer .f-content ul li span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  color: white;
  font-weight: 300;
  margin-bottom: 25px;
  border-bottom: 1px solid transparent;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  line-height: 1;
}
#footer .f-content ul li span:hover {
  border-color: white;
}
#footer .f-content ul li span:last-child {
  margin-bottom: 0;
}
#footer .f-content ul li #ewm img,
#footer .f-content ul li #ewm canvas {
  width: 215px;
  height: auto;
  border: 12px solid white;
}
#footer .f-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .f-bottom span {
  font-size: 14px;
  color: white;
  font-weight: 300;
}
#footer .f-bottom span a {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#footer .f-bottom span a:hover {
  color: var(--color);
}
#footer .f-bottom img {
  width: 240px;
  height: auto;
  padding-top: 2px;
}
@media screen and (max-width: 1800px) {
  #header .nav {
    padding-left: 30px;
  }
  #header .nav .logo {
    max-width: 160px;
  }
  #header .nav .ui.menu .right {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1700px) {
  :root {
    --containerWidth: 1370px;
  }
}
@media screen and (max-width: 1600px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 20px;
  }
  #index-body .homepage-1 .top .text {
    max-width: 45%;
  }
  #index-body .homepage-3 .center ul li .box h5 {
    line-height: unset;
  }
  #index-body .homepage-4 {
    padding: 0 0 100px;
  }
}
@media screen and (max-width: 1450px) {
  #index-body .homepage-4 ul li .box {
    height: 280px;
  }
  #footer .form form input[type="text"] {
    width: 19%;
  }
  #header .nav .ui.menu .right .h-inquiry {
    display: none;
  }
  .language-box {
    margin-right: 15px;
  }
  #header .nav {
    padding-left: 15px;
  }
    .our-about .info ul {
    margin-right: -15px;
  }
  .our-about .info li {
    padding: 30px 15px;
  }
  :root {
    --containerWidth: 1170px;
  }
}
@media screen and (max-width: 1250px) {
  #banner .slickDots {
    width: 25%;
  }
  #banner ul li .content .box p {
    margin: 25px 0;
  }
  #banner {
    margin-top: 40px;
  }
  .more {
    height: 50px;
  }
  .more i {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .h-title::before {
    font-size: 180px;
  }
  #index-body .homepage-1 {
    padding: 95px 0;
  }
  .h-title h3 {
    font-size: 36px;
    line-height: 1.1;
  }
  #index-body .homepage-1 .bottom ul li .box .img h4 {
    width: 100%;
    text-align: center;
    padding: 0 30px;
  }
  #index-body .homepage-2 .right ul li {
    padding: 35px;
  }
  #index-body .homepage-3 {
    padding: 90px 0;
  }
  .our-about .list ul {
    margin-right: -25px;
  }
  .our-about .list li {
    padding-right: 25px;
  }
  .our-about .left .img::after {
    font-size: 250px;
  }
  .our-about .right {
    margin-top: 0;
  }
  #footer .form form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .form form input[type="text"] {
    width: 49.5%;
    margin-bottom: 20px;
  }
  #footer .f-content ul li #ewm img,
  #footer .f-content ul li #ewm canvas {
    width: 120px;
  }
  #footer .f-content {
    padding: 65px 0;
  }
  :root {
    --containerWidth: 970px;
  }
}
@media screen and (max-width: 1000px) {
  #footer .f-content ul li.link {
    display: none;
  }
    .gxs-5 .ui.container .main ul.newslist li {
    width: 100%!important;
  }
  .gxs-5 .ui.container .main ul.newslist li.swiper-slide-active {
    width: 100%!important;
  }
  .our-about .left {
    display: none;
  }
  .our-about .right {
    width: 100%;
  }
  .our-about .play {
    width: 90px;
  }
  .our-about .info {
    margin-left: 0;
  }
  .our-about .info li {
    width: 50%;
    padding: 15px;
  }
  #footer .form ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  #footer .form ul li:last-child {
    margin-bottom: 0;
  }
  #footer .form ul li span {
    max-width: unset;
  }
  #index-body .homepage-3 .bottom .arrow {
    display: none;
  }
  #index-body .homepage-3 .bottom ul li .box .left {
    width: 100%;
  }
  #index-body .homepage-3 .bottom ul li .box .right {
    width: 100%;
  }
  .h-title h3 {
    font-size: 26px;
  }
  .h-title::before,
  #index-body .homepage-3 .top .h-title::before {
    font-size: 80px;
    left: 0;
  }
  .h-title {
    padding-top: 30px;
  }
  #index-body .homepage-2 .left {
    width: 100%;
  }
  #index-body .homepage-2 .right {
    width: 100%;
    margin-top: 60px;
  }
  #index-body .homepage-2 .right ul li {
    width: 50%;
  }
  #banner ul li .content .box p,
  #banner ul li .content .box .more {
    display: none;
  }
  #banner .slickDots {
    display: none;
  }
  #footer .f-bottom {
    -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;
  }
  #footer .form form input[type="submit"] {
    width: 100%;
  }
  :root {
    --containerWidth: 670px;
  }
}
@media screen and (max-width: 700px) {
  #index-body .homepage-1 .top .text {
    max-width: 100%;
    margin-top: 30px;
    padding-left: 0;
    width: 100%;
  }
    :root {
    --containerWidth: 470px;
  }
    .our-about .info li p {
    font-size: 14px;
  }
  .our-about .list ul {
    margin-right: -15px;
  }
  .our-about .list li {
    padding-right: 15px;
  }
  #index-body .homepage-3 {
    display: none;
  }
  #index-body .homepage-4 {
    padding: 80px 0;
  }
  #index-body .homepage-1 .bottom ul li .box .img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #index-body .homepage-1 .bottom ul li .box .img h4,
  #index-body .homepage-1 .bottom ul li .box .text h4 {
    font-size: 24px;
  }
  #banner ul li .content .box {
    width: 100%;
  }
  #footer .form form input[type="text"] {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
    :root {
    --containerWidth: calc(100% - 30px);
  }
    .gxs-5 {
    padding: 0 0 80px;
  }
    .our-about .play {
    float: none;
    margin-bottom: 40px;
  }
  .our-about::before {
    height: 90%;
    top: 10%;
  }
  #footer .f-content ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .f-content ul li.logo {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  #footer .f-bottom span {
    text-align: center;
  }
  #index-body .homepage-2 {
    padding-bottom: 300px;
  }
  #index-body .homepage-2 .play {
    bottom: 70px;
  }
  #index-body .homepage-2 .right ul li {
    width: 100%;
  }
  #index-body .homepage-1 .bottom ul li .box .img h4,
  #index-body .homepage-1 .bottom ul li .box .text h4 {
    font-size: 20px;
  }
  #index-body .homepage-1 .bottom {
    margin-top: 60px;
  }
  .h-title h3 {
    font-size: 24px;
    line-height: 1.4;
  }
}
.h-sidebar {
  position: fixed;
  right: 30px;
  bottom: 105px;
  z-index: 200;

}
.h-sidebar ul li {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
}
.h-sidebar ul li .img{
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background-color: white;
  padding: 10px;
  right: 120%;
  position: absolute;
  top:50%;
  transform: translateY(-50%) rotateY(-90deg);
  transition: opacity 0.5s; 
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.h-sidebar ul li:hover .img{
  opacity: 1;
  transform: translateY(-50%) rotateY(0deg);
}
.h-sidebar ul li .text{
  right: 120%;
  position: absolute;
  top:50%;
  transform: translateY(-50%) rotateY(-90deg);
  padding: 0 20px;
  height: 35px;
  font-size: 18px;
  color: white;
  background-color: var(--color);
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: opacity 0.5s; 
  opacity: 0;
  z-index: -1;
}
.h-sidebar ul li:hover .text{
  opacity: 1;
  transform: translateY(-50%) rotateY(0deg);
}
.h-sidebar ul li:hover{
  background-color: var(--green);
}
.h-sidebar ul li:last-child {
  margin-bottom: 0;
}
.h-sidebar ul li i {
  color: white;
  font-size: 30px;
}











/*----------------inner-page-----------*/

.inner-page .h3.title {
  position: relative;
  line-height: 1.4;
  z-index: 3;
  display: inline-block;
  
  font-size: 36px;
  color: var(--color);
}

.inner-page {
  background: #FBFBFB;
}
.inner-page p {
  font-size: 18px;
  line-height: 1.8;
}
.inner-banner {
  position: relative;
  z-index: 111;
  margin-top: 105px;
}


.inner-banner .top {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
  z-index: 110
}
.inner-banner .top h3 {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    width: 40%;
    margin: 16px auto;
    font-weight: bold;
    line-height: 1.8;
}
.inner-banner.acs1 .top h3 {
text-shadow: 12px 11px 7px #1f396d;
}
.inner-banner .top p {
  display: none
}
.inner-banner.acs1 .top p {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;

  border: 1px solid #fff;
    padding: 8px;
    border-radius: 20px;
}
.mbx {
  padding: 20px 0;
  font-weight: 600;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 30px;
  background: #fbfbfb;
}
.mbx span {
  color: #000;
}

.about-11 .top .left {
  width: 22%;
}
.about-11 .top .left h3 {
  font-weight: 600;
  font-weight: 400;
  font-size: 31px;
  color: #000000;
  line-height: 1.4;
}
.about-11 .top .left .con {
  margin-top: 58px;
}
.about-11 .top .left .con ul li {
  margin-bottom: 10px;
  position: relative;
}

.about-11 .top .left .con ul li a {
  display: flex;
  padding: 22px 21px 22px 40px;
  background: #F5F5F5;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.about-11 .top .left .con ul li a p {
  font-weight: 600;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  line-height: 32px;
  transition: 0.3s;
}
.about-11 .top .left .con ul li i {
  position: absolute;
  right: 21px;
  top: 30px;
  display: inline-block;
  width: 12px;
  height: 22px;
  background: url(../images/about11.png) no-repeat center;
  transition: 0.3s;
  cursor: pointer;
}
.about-11 .top .left .con ul li a:hover,
.about-11 .top .left .con ul li a.active {
  background: var(--color);
}
.about-11 .top .left .con ul li a:hover p,
.about-11 .top .left .con ul li a.active p {
  color: #fff;
}
.about-11 .top .left .con ul li a:hover~i,
.about-11 .top .left .con ul li a.active~i {
  background: url(../images/about12.png) no-repeat center;
}
.about-11 .top .right {
  width: 78%;
  padding-left: 32px;
 position: relative;

}

.manu-page .about-11 .top .right {
 
  padding-left: 94px;
  overflow: visible
}
.about-11 .top .right .img {
  border-radius: 30px;
  overflow: hidden;
}
.about-11 .top .right .img img {
  border-radius: 30px;
}
.num1 {
  position: relative;
  /*left: -100px;
  top: -177px;*/
  margin-top: -177px;
  margin-left: -10px;
  background: #FBFBFB;
  box-shadow: 23px 23px 76px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
width: 100%;
z-index: 111;
  max-width: 1140px;
}

.num1 span {
  font-weight: 600;
    font-weight: 600;
    margin-right: 20px;
    font-size: 42px;
    color: var(--color);
    line-height: 1.4;
}
.num1 .play {
  position: absolute;
  right: -95px;
  top: 9px;
  width: 127px;
  height: 118px;
  background: url(../images/about13.png) no-repeat center var(--color);
  border-radius: 30px 0px 30px 0px;
  cursor: pointer;
}
.num1 ul {
  display: flex;
  justify-content: space-between;
  padding: 35px 37px;
  padding-right: 58px;
  
}
.num1 ul li h2 em {
  font-weight: 600;
  
  font-size: 48px;
  color: var(--color);
  line-height: 1.4;
}
.num1 ul li h2 sub {
  font-weight: 600;
  font-weight: 400;
  font-size: 24px;
  color: var(--color);
  line-height: 40px;
  margin-left: 14px;
}
.num1 ul li p {
  font-weight: 600;
  font-weight: 400;
  font-size: 16px;
  color: var(--color);
  line-height: 30px;
  margin-top: 13px;
}
.about-11 .top .right .tit2 {
  font-weight: 600;
  
  font-size: 36px;
  color: var(--color);
  line-height: 1.4;
  text-transform: uppercase;
  margin-top: 48px;
}
.about-11 .top .right .cona {
  margin-top: 37px;
  font-weight: 400;
  font-size: 18px;
  color: #222222;
  line-height: 32px;
  opacity: 0.7;

 
}


.about-1 {
  padding-top: 0;
  background: #fff;
}
.about-1 .center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  z-index: 3;
  margin-top: -119px;
  margin-bottom: 60px;
}
.about-1 .center .left {
  padding-left: 95px;
}
.about-1 .center .left .text {
  background: #fff;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 50px 50px;
  display: inline-block;
  width: 100%;
}
.about-1 .center .left .text ul li .main .h3 {
  padding-left: 35px;
  border-left: 3px solid var(--color);
  margin-bottom: 30px;
}
.about-1 .center .left .text ul li .main p {
  max-height: 240px;
  overflow-y: auto;
  line-height: 1.7;
}
.about-1 .center .left .text .btm {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}
.about-1 .center .left .text .btm .btnbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-1 .center .left .text .btm .btnbox span.btn {
  opacity: 0.5;
  cursor: pointer;
}
.about-1 .center .left .text .btm .btnbox span.btn:hover {
  opacity: 1;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.about-1 .center .left .text .btm .btnbox span.btn.slick-prev {
  margin-right: 20px;
}
.about-1 .center .left .text .btm .btnbox span.btn.slick-prev img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.about-1 .center .left .text .btm .navbox {
  color: #000;
  
  font-size: 32px;
  font-style: italic;
}
.about-1 .center .left .text .btm .navbox .now {
  font-size: 48px;
  margin-right: 5px;
}
.about-1 .center .right {
  padding-left: 55px;
}
.about-1 .center .right .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.about-1 .center .right .top .play {
  position: relative;
  left: 0;
  top: 0;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
}
.about-1 .center .right .top .play:before {
  background: rgba(0, 53, 134, 0.3);
}
.about-1 .center .right .h3 {
  font-size: 180px;
  line-height: 1.4;
  color: #ecf0f4;
  margin-top: 60px;
  font-weight: 500;
}
.about-2 {
  padding: 90px 0;
}
.about-2 .ui.container .h3 {
  color: #000;
  margin-bottom: 50px;
}
.about-2 .ui.container .main ul.ab2list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-2 .ui.container .main ul.ab2list.on li {
  width: -webkit-calc(19% - 28px);
  width: -moz-calc(19% - 28px);
  width: calc(19% - 28px);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.about-2 .ui.container .main ul.ab2list.on li:hover {
  width: -webkit-calc(43% - 28px);
  width: -moz-calc(43% - 28px);
  width: calc(43% - 28px);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.about-2 .ui.container .main ul.ab2list.on li:hover .h4 {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
}
.about-2 .ui.container .main ul.ab2list.on li:hover .textbox {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.about-2 .ui.container .main ul.ab2list li {
  width: -webkit-calc(25% - 24px);
  width: -moz-calc(25% - 24px);
  width: calc(25% - 24px);
  position: relative;
  height: 625px;
  background-size: cover;
  background-position: center  center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 20px;
  overflow: hidden
}
.about-2 .ui.container .main ul.ab2list li .h4 {
  color: #fff;
  font-size: 24px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  position: absolute;
  left: 0;
  top: 50px;
  padding: 0 20px;
  opacity: 1;
}
.about-2 .ui.container .main ul.ab2list li .textbox {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 50px 40px;
  position: absolute;
  width: 100%;
  height: 100%;
}
.about-2 .ui.container .main ul.ab2list li .textbox .h5 {
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
}
.about-2 .ui.container .main ul.ab2list li .textbox .content {
  color: #fff;
  line-height: 32px;
  font-size: 18px;
  /*font-weight: 400;*/
}
.about-2 .ui.container .main ul.ab2list li .textbox .content p {
  margin-bottom: 20px;
}
.about-2 .ui.container .main ul.ab2list li:nth-child(1) {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background-image: url(/setolens/2025/08/11/about-ys-1.jpg);
}
.about-2 .ui.container .main ul.ab2list li:nth-child(1) .textbox {
  background-image: url(/setolens/2025/08/11/about-ys-1.jpg);
}
.about-2 .ui.container .main ul.ab2list li:nth-child(2) {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background-image: url(/setolens/2025/08/11/about-ys2.jpg);
}
.about-2 .ui.container .main ul.ab2list li:nth-child(2) .textbox {
  background-image: url(/setolens/2025/08/11/about-ys2.jpg);
}
.about-2 .ui.container .main ul.ab2list li:nth-child(3) {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background-image: url(/setolens/2025/09/11/about-ys3-2.jpg);
}
.about-2 .ui.container .main ul.ab2list li:nth-child(3) .textbox {
  background-image: url(/setolens/2025/09/11/about-ys3-2.jpg);
}
.about-2 .ui.container .main ul.ab2list li:nth-child(4) {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background-image: url(/setolens/2025/08/11/about-ys4.jpg);
}
.about-2 .ui.container .main ul.ab2list li:nth-child(4) .textbox {
  background-image: url(/setolens/2025/08/11/about-ys4.jpg);
}
.about-4 {
  padding: 75px 0 200px 0;
}
.about-4 .ui.container {
  text-align: left;
}
.about-4 .ui.container .h3 {
  margin-bottom: 50px;
  font-weight: bold;
}
.about-4 .ui.container .factorybox ul.factorylist {
  margin: 0 -20px;
}
.about-4 .ui.container .factorybox ul.factorylist li {
  padding: 0 20px;
}
.about-4 .ui.container .factorybox ul.factorylist li img {
  border-radius: 20px;
}
.about-4 .ui.container .factorybox ul.factorylist .slick-dots {
  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;
  margin-top: 50px;
}
.about-4 .ui.container .factorybox ul.factorylist .slick-dots li {
  padding: 0;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 1px solid var(--color);
  margin: 0 5px;
}
.about-4 .ui.container .factorybox ul.factorylist .slick-dots li button {
  display: none;
}
.about-4 .ui.container .factorybox ul.factorylist .slick-dots li.slick-active {
  background: var(--color);
}
.solu-1 {
  background: var(--color);
  color: #fff;
  padding: 30px;
}
.solu-1 .ui.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.solu-1 .ui.container .left {
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
}
.solu-1 .ui.container .logo {
  width: 95px;
  opacity: 0.5;
}
.solu-2 {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  width: 100%;
  left: 0;
  padding: 30px 0;
  z-index: 3;
  background: #fff;
}
.solu-2 .navbox {
  position: relative;
}
.solu-2 .navbox ul.navlist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
}
.solu-2 .navbox ul.navlist li {
  display: inline-block;
  border-bottom: 3px solid transparent;
  padding: 30px 0;
  margin-bottom: -1.5px;
}
.solu-2 .navbox ul.navlist li.active {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  border-color: var(--color);
}
.solu-2 .navbox ul.navlist li a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.solu-2 .navbox ul.navlist li a img {
  margin-right: 25px;
}
.solu-2 .navbox ul.navlist li a em {
  
}
.solu-3 {
  padding-top: 75px;
  padding-bottom: 110px;
}
.solu-3 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.solu-3 .top .left {
  padding-right: 85px;
}
.solu-3 .top .right {
  text-align: left;
}
.solu-3 .top .right p {
  margin: 20px 0 40px;
}
.solu-3 .bottom {
  margin-top: 75px;
}
.solu-3 .bottom ul {
  margin: 0 -10px;
}
.solu-3 .bottom ul li {
  padding: 0 10px ;
}
.solu-5 {
  padding-top: 110px;
}
.solu-5 ul.solulist2 li {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.solu-5 ul.solulist2 li .text {
  width: 40%;
  max-width: 455px;
}
.solu-5 ul.solulist2 li .text .h3 {
  padding-left: 35px;
  border-left: 3px solid var(--color);
  margin-bottom: 25px;
}
.solu-5 ul.solulist2 li .text span {
  
  text-transform: uppercase;
  color: #000;
  opacity: .5;
}
.solu-5 ul.solulist2 li .text P {
  margin-top: 15px;
}
.solu-5 ul.solulist2 li .imgbox {
  width: -webkit-calc(100% - 520px);
  width: -moz-calc(100% - 520px);
  width: calc(100% - 520px);
}

.manu-page .top .right .swiper-button-prev,
.manu-page .top .right .swiper-button-next {
  width: 75px;
height: 75px;
top: 55%;
border-radius: 50%;
background: url(/lyusenfilters/2024/07/08/acs1.png) no-repeat center #FBFBFB;
transition: 0.3s
}
.manu-page .top .right .swiper-button-prev {
left: 4%
}
.manu-page .top .right .swiper-button-next {
transform: rotate(180deg);
right: -3%
}
.manu-page .top .right .swiper-button-prev:hover {
  background: url(/lyusenfilters/2024/07/08/acs.png) no-repeat center var(--color);
  transform: rotate(-180deg);
}
.manu-page .top .right .swiper-button-next:hover {
  background: url(/lyusenfilters/2024/07/08/acs.png) no-repeat center var(--color);
  transform: rotate(0);
}
.manu-1 {
 overflow: hidden
}
.manu-1 .manubox {
  margin-top: 42px;
  overflow: visible;
  padding-block-end: 67px
}


.manu-1 .manubox ul.manulist li .item {
background: #fff;
  padding: 30px 30px;
  padding-bottom: 10px;
  transition: 0.3s;
  border-radius: 24px;
  border: 1px solid #fbfbfb;
}
.manu-1 .manubox ul.manulist li .item:hover {

box-shadow: 11px 19px 43px 0px rgba(0,0,0,0.05);
border-radius: 20px;
border: 1px solid #FBFBFB;
}
.manu-1 .manubox ul.manulist li .item .text {
  padding-top: 30px;
}
.manu-1 .manubox ul.manulist li .item .text .h5 {
  margin-bottom: 20px;
  padding-left: 35px;
  border-left: 2px solid var(--color);
}
.manu-1 .manubox ul.manulist li .item .text p {
  
   line-height: 1.75;
    max-height: 120px;
    overflow-y: auto;
    color: #747474;
}
.manu-2 {
  padding-top: 95px;
}
.manu-2 .ui.container {
  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;
}
.manu-2 .ui.container .left {
  padding-right: 38px;
}
.manu-2 .ui.container .right {
  padding: 0 64px;
}
.manu-2 .ui.container .right .h4 {
  margin-bottom: 25px;
  
font-size: 36px;
color: var(--color);
}
.manu-2 .ui.container .right p {
  font-weight: 600;
font-weight: 400;
font-size: 16px;
color: rgba(0, 0, 0, 0.7);
line-height: 30px;
}
.manu-3 {
  padding: 87px 0 150px;
}

.manu-3 ul {
  display: flex;
  justify-content: space-between;
  
}
.manu-3 ul li .box {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 50px;
  transition: 0.5s
}



.manu-3 ul li .box .img {
  padding: 45px 0 35px;
}
.manu-3 ul li .box .img img {
  filter: brightness(0)
}
.manu-3 ul li .box h5 {
  font-weight: 600;
font-weight: 400;
font-size: 24px;
color: #080808;
line-height: 40px;
}

.manu-3 ul li .box p {
  font-weight: 600;
font-weight: 400;
font-size: 16px;
color: #747474;
line-height: 30px;
margin-top: 29px;
  padding: 0 30px;
}

.manu-3 ul li .box:hover {
  background: #FFFFFF;
box-shadow: 11px 19px 43px 0px rgba(0,0,0,0.05);
border-radius: 20px;
}

.manu-3 ul li .box:hover .img img {
  filter: brightness(1)
}




.manu-4 {
 padding-bottom: 80px;
 
}

.manu-4 .top ul {
  position: relative;
  margin: -18px -30px
}

.manu-4 .top ul .menu-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.manu-4 .top ul li {
  padding: 18px 30px;
}

.manu-4 .top ul li .box {
  border-radius: 20px;
  transition: 0.3s;
    background: #FFFFFF;
box-shadow: 0px 0px 70px 0px rgba(0,0,0,0.05);
}

.manu-4 .top ul li .box .acc {
  padding: 42px 43px 60px 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.manu-4 .top ul li .box .acc .ads {
  width: 90%;
  max-width: 611px;
}
.manu-4 .top ul li:nth-child(odd) .box .acc .ads {
  text-align: right
}
.manu-4 .top ul li .box .acc .ads h5 {
font-weight: 600;
font-weight: 400;
font-size: 30px;
color: var(--color);
line-height: 1.4;
padding-bottom: 15px;
border-bottom: 1px solid var(--color);
}

.manu-4 .top ul li .box .acc .ads p {
  font-weight: 600;
font-weight: 400;
font-size: 16px;
color:#626262;
line-height: 30px;
height: 60px;
overflow: auto;
opacity: 0.7;
margin-top: 12px
}

.manu-4 .top ul li .box .acc .imga {
  width: 10%
}

/*.manu-4 .top ul li .box:hover {
  background: #FFFFFF;
box-shadow: 0px 0px 70px 0px rgba(0,0,0,0.05);
}*/

.manu-5 {
  padding-top: 95px;
  padding-bottom: 115px;
}
.manu-5 .ui.container .factorybox {
  margin-top: 40px;
}
.manu-5 .ui.container .factorybox ul.factorylist2 {
  margin: 0 -20px;
}
.manu-5 .ui.container .factorybox ul.factorylist2 li {
  padding: 0 20px;
}
.custom-1 {
  padding: 90px 0;
}
.custom-1 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 95px;
}
.custom-1 .top .h3 {
  width: 50%;
  padding-left: 35px;
  line-height: 1.4;
  border-left: 3px solid var(--color);
}
.custom-1 .top p {
  width: 50%;
  padding-left: 20px;
  line-height: 1.5;
}
.custom-1 .btm ul.list2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.custom-1 .btm ul.list2 li.item {
  margin: 0 10px;
  width: 180px;
  height: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 100%;
}
.custom-1 .btm ul.list2 li.item img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.custom-1 .btm ul.list2 li.item:hover img {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.custom-2 .ui.container .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.custom-2 .ui.container .top .left {
  padding-right: 65px;
}
.custom-2 .ui.container .top .left .h3 {
  padding-left: 35px;
  border-left: 3px solid var(--color);
}
.custom-2 .ui.container .top .left p {
  line-height: 1.4;
  margin-top: 35px;
}

.custom-2 {
  padding-top: 20px;
  padding-bottom: 86px
}
.custom-2 h3.tit3 {
  font-weight: 600;

font-size: 36px;
color: var(--color);
line-height: 1.4;
text-align: center;
padding-bottom: 50px;
text-transform: uppercase;
}
.custom-2 .options {
  background: var(--color);
border-radius: 28px 28px 0px 0px;
}
.custom-2 .options ul {
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.custom-2 .options ul li {
  position: relative;
  font-weight: 600;
font-weight: 400;
font-size: 20px;
color: #fff;
line-height: 34px;
padding: 8px 60px;
cursor: pointer;
z-index: 11;
transition: 0.3s;
}
.custom-2 .options ul li::after {
  content: '';
  position: absolute;
  left: 0;
  top: -27px;
  width: 100%;
  height: 82px;
background: var(--color);
border-radius: 28px 28px 0px 0px;
z-index: -1;
opacity: 0;
transition: 0.3s;
}
.custom-2 .options ul li:hover,
.custom-2 .options ul li.active {
  padding-top: 5px;
  color: var(--color);
}
.custom-2 .options ul li:hover::after,
.custom-2 .options ul li.active::after {
  opacity: 1
}
.custom-2 .ui.container .bottom {
  background: #FFFFFF;
box-shadow: 23px 23px 76px 0px rgba(0,0,0,0.05);
border-radius: 0px 0px 20px 20px;
  padding: 84px 106px 39px 76px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.custom-2 .ui.container .bottom .left {
  padding-right: 80px;
}
.custom-2 .ui.container .bottom .left ul {
  margin: -30px;
}
.custom-2 .ui.container .bottom .left ul li {
  padding: 30px;
  text-align: center;
}
.custom-2 .ui.container .bottom .left ul li .tit4 {
  display: inline-block;
  margin-top: 25px;
  font-weight: 600;
font-weight: 400;
font-size: 16px;
color: rgba(0, 0, 0, 0.7);
line-height: 30px;
border: 1px solid rgba(0, 0, 0, 0.7);
padding: 10px 68px;

}
.custom-2 .ui.container .bottom .left p {
  max-width: 600px;
  line-height: 1.4;
  margin-top: 45px;
}
.custom-2 .ui.container .bottom .right {
  /*padding-right: 80px;*/
}
.custom-2 .ui.container .bottom .right ul.list3 li.active {

  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.custom-2 .ui.container .bottom .right ul.list3 li .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 28px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #eee;
}
.custom-2 .ui.container .bottom .right ul.list3 li .top em {
  margin-left: 25px;
  
}
.custom-2 .ui.container .bottom .right ul.list3 li .top i.fr {
  position: absolute;
  right: 25px;
}
.custom-2 .ui.container .bottom .right ul.list3 li .content {
  padding: 10px 30px 20px 30px;
  line-height: 30px;
  display: none;
  font-size: 16px;
}
.custom-3 {
  padding-top: 90px;
  padding-bottom: 100px;
}
.custom-3 .ui.container {
  text-align: center;
}
.custom-3 .ui.container .strengthbox {
  margin-top: 55px;
}
.custom-3 .ui.container .strengthbox ul.list4 li {
  padding: 0 15px;
}
.custom-3 .ui.container .strengthbox ul.list4 li .item {
  background: #f7f7f7;
  border-radius: 5px;
}
.custom-3 .ui.container .strengthbox ul.list4 li .item .text {
  padding: 25px;
  text-align: center;
}
.custom-3 .ui.container .strengthbox ul.list4 li .item .text p {
  line-height: 1.4;
  font-weight: 400;
  margin-top: 15px;
  max-height: 116px;
  overflow-y: auto;
}

.custom-4 {
  position: relative;
}

.custom-4::after {
  content: '';
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  width: 78.125%;
  height: 740px;
  background: url(/lyusenfilters/2024/06/18/service13.png) no-repeat center;
}

.custom-4 .title1 .tit3 {
  font-weight: 600;

font-size: 36px;
color: var(--color);
line-height: 1.4;
}

.custom-4 .title1 p {
  font-weight: 600;
font-weight: 400;
font-size: 18px;
color: rgba(0, 0, 0, 0.7);
line-height: 30px;
max-width: 1358px;
margin: 0 auto;
margin-top: 50px;
}

.custom-4 .swiper-container {
  margin-top: 88px;
}



.custom-4 .swiper-container ul li {
  margin-bottom: 70px
}
.custom-4 .swiper-container .box {
  text-align: center;
}
.custom-4 .swiper-container .box h5 {
  font-weight: 600;

font-size: 20px;
color: #000000;
line-height: 34px;
margin-top: 35px
}
.custom-4 .swiper-container .box p {
font-weight: 600;
font-weight: 400;
font-size: 16px;
color: rgba(0, 0, 0, 0.7);
line-height: 30px;
margin-top: 15px
}
@media screen and (max-width: 1800px) {
    .gxs-1 .catebox .navbox {
    bottom: 20px;
  }
  .gxs-5 .bottom .right .morebox {
    height: 125px;
  }
  .inner-banner .top h3 {
    font-size: 48px
  }

}
@media screen and (max-width: 1400px) {
  .about-1 .center .right .h3 {
    font-size: 150px;
  }
  .inner-banner .top h3 {
    font-size: 36px
  }
  .num1 {
    max-width: 910px;
  }
}
@media screen and (max-width: 1250px) {
   .gxs-3 .advbox ul.advlist li .item .textbox p {
    line-height: 1.7;
    max-height: 140px;
    overflow-y: auto;
  }
  .shouye{
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .gxs-1{
    padding-bottom: 30px;
  }
  .inner-banner .top h3 {
    font-size: 32px
  }
  .gxs-5{
    padding-top: 25px;
  }
  .gxs-5 .bottom .right .morebox a.more4 {
    font-size: 20px;
  }
  .about-1 .center .right .h3 {
    font-size: 110px;
  }
  .manu-1 .manubox ul.manulist li .item .text p {
    line-height: 1.5;
    max-height: 120px;
    overflow-y: auto;
    color: #747474;
  }
  .manu-2 .ui.container .right p {
    max-height: 200px;
    overflow-y: auto;
  }
  .manu-4 .ui.container .left p {
    max-height: 200px;
    overflow-y: auto;
  }
  .about-1 .center .left {
    padding-left: 0;
  }
  .custom-2 .ui.container .bottom .left {
    padding-right: 0px;
  }
}
@media screen and (max-width: 1000px) {
   .gxs-1 .catebox .navbox {
    display: none;
  }
  .inner-banner .top h3 {
    font-size: 18px
  }
  .gxs-1 .catebox ul.catelist li .text {
    width: 80%;
    left: 10%;
    top: 5%;
  }
  .gxs-1 .catebox ul.catelist li .text p {
    line-height: 1.4;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .gxs-3 .advbox ul.numlist {
    position: relative;
    margin-top: 40px;
    width: 100%;
    -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;
  }
  .gxs-5 .bottom .left {
    width: 100%;
  }
  .gxs-5 .bottom .right {
    width: 100%;
    margin-top: 10px;
  }
  .about-1 .center .left .text {
    padding: 20px 15px;
  }
  .about-1 .center .right .h3 {
    font-size: 72px;
  }
  .about-2 .ui.container .main ul.ab2list{
    flex-wrap: wrap;
  }
  .about-2 .ui.container .main ul.ab2list li {
    width: 49% !important;
    margin: 15px 0;
  }
  .about-2 .ui.container .main ul.ab2list.on li:hover {
    width: -webkit-calc(66.66% - 10px);
    width: -moz-calc(66.66% - 10px);
    width: calc(66.66% - 10px);
      border-radius: 20px;
  }
  .about-2 .ui.container .main ul.ab2list.on li {
    width: -webkit-calc(19% -10px);
    width: -moz-calc(19% -10px);
    width: calc(19% -10px);
  }
  .solu-3 .top .left {
    padding-right: 10px;
  }
  .solu-3 .top .right p {
    max-height: 200px;
    overflow-y: auto;
  }
  .solu-5 ul.solulist2 li .imgbox {
    width: 55%;
  }
  .manu-1 .manubox ul.manulist li .item .text .h5 {
    padding-left: 15px;
  }
  .custom-1 .btm ul.list2 li.item {
    width: 120px;
    height: 120px;
  }
  .manu-2 .ui.container .right {
    padding: 0 20px;
  }
  .custom-2 .ui.container .bottom .right {
    padding-right: 0;
  }
  .custom-2 .ui.container .bottom {
    padding: 30px 25px;
  }
  .solu-2 {
    top: 40px;
  }
  .manu-2 .ui.container .left {
    padding-right: 0px;
  }
}
@media screen and (max-width: 700px) {
  .about-2 {
    display: none;
  }
   .gxs-1 .catebox ul.catelist li .text p {
    display: none;
  }
  .gxs-1 .catebox ul.catelist li .text {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
   .gxs-2 .top .left p {
    padding-left: 0;
  }
  .gxs-2 .ui.container .bottom ul li {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .gxs-2 .ui.container .bottom ul li {
    width: 50%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
  }
  .gxs-2 .ui.container .bottom ul li .text {
    margin-top: 10px;
  }
  .gxs-3 .advbox ul.advlist li .item .img-box {
    width: 100%;
  }
  .gxs-3 .advbox ul.advlist li .item .textbox {
    width: 100%;
    margin-top: 20px;
  }
  .gxs-6 .main ul.newslist li {
    width: 100%;
  }
   .gxs-2{
    background-size: 1200px;
  }
  .about-1 .center {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-1 .center .left {
    width: 100%;
  }
  .about-1 .center .right {
    width: 100%;
    padding-left: 0;
  }
  .solu-1 .ui.container {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .solu-1 .ui.container .left {
    width: 100%;
  }
  .solu-1 .ui.container .logo {
    width: 100%;
    text-align: center;
  }
  .solu-3 .top .left {
    width: 100%;
    padding-right: 0;
  }
  .solu-3 .top .right {
    width: 100%;
    padding-left: 0 ;
  }
  .solu-5 ul.solulist2 li .imgbox {
    width: 100%;
  }
  .solu-5 ul.solulist2 li .text {
    width: 100%;
    max-width: none;
    margin-top: 40px;
  }
  .solu-5 ul.solulist2 li:nth-child(2n) {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .manu-2 .ui.container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .manu-2 .ui.container .left {
    width: 100%;
  }
  .manu-2 .ui.container .right {
    width: 100%;
  }
  .manu-4 .ui.container .left {
    width: 100%;
  }
  .manu-4 .ui.container .right {
    width: 100%;
    margin-top: 20px;
  }
  .custom-1 .top .h3 {
    width: 100%;
  }
  .custom-1 .top p {
    width: 100%;
  }
  .custom-1 .btm ul.list2 li.item {
    width: 100px;
    height: 100px;
  }
  .manu-1 .manubox ul.manulist li {
    margin-top: 20px;
  }
  .custom-2 .ui.container .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .custom-2 .ui.container .top .left {
    padding-right: 0px;
    width: 100%;
  }
  .custom-2 .ui.container .top .right {
    width: 100%;
  }
  .custom-2 .ui.container .bottom .right ul.list3 li .top{
    flex-wrap: nowrap;
    font-size: 16px;
  }
  .custom-2 .ui.container .bottom .left {
    padding-right: 0px;
    width: 100%;
  }
  .custom-2 .ui.container .bottom .right {
    padding-right: 0;
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
   .gxs-1 .catebox .btnbox {
    display: none;
  }
  .gxs-2 .top .left {
    width: 100%;
  }
  .gxs-2 .ui.container .bottom ul li {
    width: 100%;
  }
  .gxs-6 .main ul.newslist li .btm {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .gxs-6 .main ul.newslist li .item {
    padding: 20px;
  }
  .solu-2 .navbox ul.navlist li {
    width: 100%;
  }
  .about-1 .center {
    margin-top: 0;
  }
  .inner-page .h3.title:before {
    left: 0;
  }
}

.about-page .about-3 .header span {
  font-size: 16px;
  color: #555;
  position: relative;
  margin-bottom: 0px;
  padding-left: 50px;
}
.about-page .about-3 .header span::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color);
  position: absolute;
  left: 0;
  top: 50%;
}
.about-page .about-3 .header h3 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  position: relative;
  margin-bottom: 30px;
}
.about-page .about-3 .header h3 em {
  color: var(--color);
}
.about-page .about-3 .info ul {
  margin-right: -24px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-box-flex-wrap: wrap;
  -moz-box-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.about-page .about-3 .info ul li {
  padding-right: 24px;
  width: 33.3333333%;
}
.about-page .about-3 .info .single-facility {
  background: #fbfbfb;
  padding: 40px 30px;
  -webkit-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  line-height: 1.5;
}
.about-page .about-3 .info .single-facility:hover {
  background: #FFFFFF;
box-shadow: 14px 16px 21px 0px rgba(0,0,0,0.11);
border-radius: 20px;
}
.about-page .about-3 .info .single-facility h5 {
  font-size: 28px;
  color: #000;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 10px;
  overflow: auto;
}
.about-page .about-3 .info .single-facility span {
  display: inline-block;
  transition: 1s
}
.about-page .about-3 .info .single-facility p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 30px;
  height: 130px;
  overflow: auto
}
.about-page .about-3 .info .single-facility .facility-shape {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
  bottom: 60px;
  left: 90px;
}
.about-page .about-3 .info .single-facility .facility-shape span {
  font-size: 140px;
  color: #ccc;
  background: transparent;
}
.about-page .about-3 .info .single-facility:hover h5 {
  color: var(--color);
  -webkit-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .info .single-facility:hover span {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
@media screen and (max-width: 1000px) {
    .about-page .about-3 .info ul li {
    width: 50%;
  }
    .about-page .about-3 .info .single-facility {
    padding: 40px 15px;
  }
  .Auxil-industry {
    display: none !important;
  }
  .about-page .about-3 .info .single-facility p {
    height: auto;
    overflow: unset;
  }
  .num1{
    margin-left: 0;
  }
  .inner-banner{
    margin-top: 40px;
  }
}
@media screen and (max-width: 700px) {
  .about-page .about-3 .info ul {
    margin-right: 0;
  }
  .about-page .about-3 .info ul li {
    width: 100%;
    padding-right: 0;
  }
  .about-3{
    margin-top: 60px;
  }
}

.contact-page .marginBox {
  padding-top: 00px;
}
.contact-page .contact-1 {
  padding: 100px 0 110px;
  text-align: center;
}
.contact-page .contact-1 .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 30px;
  max-width: 650px;
  display: block;
  margin: 1em auto 3em;
}
.contact-page .contact-1 .list ul {
  margin: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-page .contact-1 .list ul li {
  padding: 20px;
}
.contact-page .contact-1 .list ul li .box {
  padding: 35px 5% 35px;
  border: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  height: 100%;
  position: relative;
  top: 0;
}
.contact-page .contact-1 .list ul li .box i {
  display: block;
}
.contact-page .contact-1 .list ul li .box i img {
  display: block;
  margin: 0 auto;
}
.contact-page .contact-1 .list ul li .box span.h6 {
  font-weight: 500;
  font-size: 24px;
  color: #242424;
  margin: 1em 0 .5em;
  display: block;
}
.contact-page .contact-1 .list ul li .box p {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 30px;
}
.contact-page .contact-1 .list ul li .box:hover {
  border-color: var(--color);
  top: -20px;
}
.contact-page .map {
  position: relative;
  z-index: 1;
}
.inner-page .form ul {
  margin: -20px -26px;
}
.inner-page .form ul li {
  padding: 20px 26px;
}
.inner-page .form ul li input,
.inner-page .form ul li textarea {
  display: block;
  width: 100%;
  font-size: 18px;
  height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);

}
.inner-page .form ul li input::-webkit-input-placeholder, .inner-page .form ul li textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.inner-page .form ul li input:-moz-placeholder, .inner-page .form ul li textarea:-moz-placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.inner-page .form ul li input::-moz-placeholder, .inner-page .form ul li textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.inner-page .form ul li input:-ms-input-placeholder, .inner-page .form ul li textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.inner-page .form ul li input::placeholder,
.inner-page .form ul li textarea::placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.inner-page .form ul li textarea {
  height: 237px;
  padding-top: 21px;
}

.inner-page .form ul li input[type="submit"] {
  border: none;
  background: var(--color);
  color: white;
  font-size: 20px;
 
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .form ul li input[type="submit"]:hover {
  background: #242424;
}
.inner-page .form ul li.wid-100 {
  width: 100%;
}
.inner-page .form ul li .file-upload-wrapper {
  position: relative;
  background: rgba(189,234,165,0.1);
border: 2px dashed #BDEAA5;
height: 237px;
text-align: center;
padding-top: 59px;
cursor: pointer;
}
.inner-page .form ul li .file-upload-wrapper input[type=file] {
  position: absolute;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.inner-page .form ul li .file-upload-wrapper h5 {
  font-weight: 600;
font-weight: 400;
font-size: 18px;
color: #000000;
line-height: 1.4;
margin: 30px 0 20px;
}

.inner-page .form ul li .file-upload-wrapper h5 i {
  font-weight: 300;
  text-decoration: underline;
}

.inner-page .form ul li .file-upload-wrapper p {
  font-weight: 600;
font-weight: 400;
font-size: 14px;
color: rgba(0, 0, 0, 0.7);
line-height: 2;
}

@media screen and (max-width: 1600px) {
  .inner-page .form ul li {
    padding: 6px;
  }
  .inner-page .form ul {
    margin: -6px;
  }
  .inner-page .form ul li input,
  .inner-page .form ul li textarea,
  .inner-page .form ul li input[type="submit"] {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
    .inner-page .form ul li input,
  .inner-page .form ul li textarea,
  .inner-page .form ul li input[type="submit"] {
    font-size: 14px;
    padding: .5em;
  }
}


.inner-page .sideLeft {
  width: 25%;
  padding-right: 47px;
  position: sticky;
  top: 120px;
}
.inner-page .sideLeft .box {

}
.inner-page .sideLeft .box h3 {
  display: block;
  padding: 0px 25px 25px 0px;
  font-size: 30px;
  font-weight: bold;
  color: #000;
}
.inner-page .sideLeft .box .list ul li {
  margin-top: 6px;
  padding: 10px 20px;
  border-left: 4px solid var(--color);
  font-size: 18px;
  line-height: 32px;
  color: black;
  background: #F5F5F5;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.inner-page .sideLeft .box .list ul li i{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-content: center;
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 10px;
  cursor: point;
}
.inner-page .sideLeft .box .list ul li img {
    max-width: 80px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
}
.inner-page .sideLeft .box .list ul li:hover,
.inner-page .sideLeft .box .list ul li.active {
  background: var(--color);
  color: white;
}
.inner-page .sideLeft .box .list ul li.active ul{
  display: block;
}
.inner-page .sideLeft .box .list ul li ul{
  margin-top: 20px;

}
.inner-page .sideLeft .box .list ul li ul li{
  font-size: 18px;
  background: #f5f5f5!important;
  color: #000!important;
}
.inner-page .sideLeft .box .list ul li ul li.active{
  color: var(--color);
  background: #fff;
}
.inner-page .sideLeft .img {
    display: none;
    margin-top: 40px;
    padding: 60px 5%;
    text-align: center;
    color: #fff;
    background-size: 100%;
    background-repeat: no-repeat;
}
.inner-page .sideLeft .img h4 {
  display: block;
  font-size: 24px;
  
  line-height: 40px;
}
.inner-page .sideLeft .img p {
  display: block;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  margin: 25px 0 45px;
}
.inner-page .sideLeft .img a.more {
  line-height: 2;
  height: 36px;
  padding: 0 32px;
  border: 1px solid white;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: inline-block;
  color: #fff;
}
.inner-page .sideLeft .img a.more:hover {
  background: var(--color);
  color: white;
}
.inner-page .sideRight {
  width: 75%;
}
.inner-page .sideRight .fenlei {
  color: var(--color);
  font-weight: bold;
  margin-bottom: 34px;
  line-height: 1.4;
}
.inner-page .sideRight .content {
  line-height: 1.4;
}
span.h2{
  font-weight: bold;
}
.product-page {
  padding: 0px 0 60px;
  background: #fbfbfb
}
.product-page .productList {
  margin-bottom: 60px;
}
.product-page .productList ul {
  margin: -25px -15px;
}
.product-page .productList ul li {
  padding: 25px 15px;
}
.product-page .productList ul li a.more {
line-height: 2;
    height: 45px;
    padding: 0px 20px;
    border-radius: 4px;
    background: var(--color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product-page .productList ul li a.more i {
  margin-left: 22px;
  font-size: 70%;
}
.product-page .productList ul li a.more:hover {
  background: #111;
}
.productList ul {
  margin: -15px;
}
.productList ul li {
  padding: 15px;
}
.productList ul li .box2 {
  
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.productList ul li .box2 h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  /*height: 230px;*/
  padding: 20px 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.productList ul li .box2 h5 a {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:unset;
}
.productList ul li:hover .box2 h5 {
  color: var(--color);
}
.productList ul li .box2 a.img {
  position: relative;
  display: block;
  margin: 20px 0 0 0;
  transition: 0.3s;
  padding: 10px 20px;
}
.productList ul li .box2:hover a.img {
  background: #FFFFFF;
box-shadow: 2px 3px 27px 0px rgba(0,0,0,0.03);
border-radius: 16px;
}
.productList ul li .box2 a.img img {
  width: 100%;
}
.productList ul li .box2 a.img .acc1 {
  position: relative;
  z-index: 11;
  transition: 0.3s;
}
.productList ul li .box2 a.img .acc2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}
.productList ul li .box2 a.img:hover .acc1 {
  opacity: 0;
  z-index: -2;
}
.productList ul li .box2 a.img:hover .acc2 {
  opacity: 1;
  z-index: 19;
}
.productList ul li .box2 .text {
padding-left: 10px;
  font-size: 16px;
  color: #0B0D0F;
  line-height: 30px;
}



.productList ul li .box2 a.more {
  line-height: 2;
  height: 40px;
  padding-right: 20px;
  padding-left: 15px;
  font-size: 14px;
  margin-bottom: 25px;
  background: #2b3e4b;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.productList ul li .box2 a.more:hover {
  background: var(--color);
}
.productList ul li .box2:after {
  content: '';
  width: 100%;
  bottom: -5px;
  right: -20px;
  height: 8px;
  display: block;
  position: absolute;
  border-top-left-radius: 4px;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.productList ul li .box2:hover:after {
  bottom: 0;
}



.product-page .productList ul li a.more {
  display: none;
   
}

.productList ul li .box2:after{
    display: none;
}
.productList ul li .box2{
   transition: all .8s ease;
}
.productList ul li .box2 .p-logo {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
.product-page .productList ul li:hover .p-logo img {
    transform: scale3d(1,1,1);
    transition: all .8s ease;
}
.productList ul li .box2 .p-logo img {
    padding-top: 15px;
    padding-left: 15px;
    max-width: 150px;
}

@media screen and (max-width: 1600px) {
  .product-page {
    padding: 20px 0;
  }
  .inner-page .sideLeft .box h3 {
    padding: 30px 15px;
    padding-top: 0;
    font-size: 28px;
    line-height: 1.4;
  }
  .inner-page .sideLeft .box .list ul li img {
    margin-right: 10px;
  }
  .inner-page .sideLeft .box .list ul li {
    padding: 5px 10px;
    font-size: 16px;
  }

  .inner-page .sideLeft .img p {
    margin: 20px 0 30px;
  }
  .inner-page .sideLeft .img {
    padding: 40px 15px;
  }
  .product-page .productList ul li a.more {
    line-height: 1.4;
    height: 40px;
    padding: 0 20px;
  }
  .product-page .productList ul li {
    padding: 5px;
  }
  .product-page .productList ul {
    margin: -5px;
  }

}
@media screen and (max-width: 1000px) {
   .productList ul li .box2 h5 {
    font-size: 16px;
    line-height: 30px;
    min-height: 5rem!important;
  }
  .product-page .productList ul li a.more{
    line-height: 2;
    height: 34px;
    padding: 0 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
   .product-page .productList .grid-box.three>.column{
    width: 100%;
  }

}
.prodet-page .marginBox {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 0 !important;
}
.prodet-page .prodet-1 {
  padding-top: 90px;
}
.prodet-page .prodet-1 .left {
  width: 37%;
  vertical-align: middle;
}

.prodet-page .prodet-1 .left .smallImg {
margin-top: 21px
}
.prodet-page .prodet-1 .left .smallImg ul {
  margin: -12px;
}
.prodet-page .prodet-1 .left .smallImg ul li {
  padding: 12px;
}
.prodet-page .prodet-1 .left .smallImg ul li img {
  background: #e3e3e3;
border-radius: 12px;
}

.prodet-page .prodet-1 .left .smallImg ul li.active img {
  border: 2px solid var(--color)
}

.prodet-page .prodet-1 .left .bigImg img {
  position: relative;
  display: block;
  background: #e3e3e3;
border-radius: 20px;

}
.prodet-page .prodet-1 .left .bigImg .img span {
  display: none!important;
  width: 40px;
  height: 40px;
  background-color: var(--color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  right: 12px;
}
.prodet-page .prodet-1 .left .bigImg .img span img {
  border: none;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: auto;
}
.prodet-page .prodet-1 .right {
  width: 63%;
  padding-left: 67px;
  margin-top: 27px;
}
.prodet-page .prodet-1 .right h1 {
  display: block;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 400;
}
.prodet-page .prodet-1 .right .text {
  font-size: 16px;
  color: #8e8e8e;
  padding-right: 1em;
  line-height: 30px;
  margin: 1.8em 0 2em;
  overflow: auto;
  max-height: 250px;
}
.prodet-page .prodet-1 .right .share {
 margin-top: 49px;
 display: flex;
 align-items: center
}
.prodet-page .prodet-1 .right .share h6 {
  font-weight: 600;
font-weight: 400;
font-size: 18px;
color: #000000;
line-height: 30px;
opacity: 0.7;
}
.prodet-page .prodet-1 .right .share .icon {
  display: flex;
  margin-left: 20px;
}
.prodet-page .prodet-1 .right .share ul {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.prodet-page .prodet-1 .right .share ul li {
  margin-right: 12px
}
.prodet-page .prodet-1 .right .share a {

    width: 41px;
height: 41px;
border-radius: 50%;
border: 1px solid var(--color);
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
margin-right: 20px;
}

.prodet-page .prodet-1 .right .share a:hover {
  background: var(--color);
    color: #fff;
}

.prodet-page .prodet-1 .right .share a:hover img {
  filter: brightness(100)
}

.prodet-page .prodet-1 .right a.more {
  margin-top: 60px;
}
.prodet-page .prodet-2 {
  padding: 80px 0 120px;
}
.prodet-page .prodet-2 .options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #c3c3c3;
  flex-wrap: wrap;
}
.prodet-page .prodet-2 .options span {
  width: calc(100% / 6);
  font-size: 18px;
  height: 78px;
  font-weight: 400;
  padding: 0 20px;
  line-height: 1.2;
  color: #000;
  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;
  background: #EEEEEE;
  cursor: pointer;
  background: #eee;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .options span i {
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.1)
}
.prodet-page .prodet-2 .options span.active {
  background-color: var(--color);
  border-bottom-color: transparent;
  color: rgba(255, 255, 255, 1)
}
.prodet-page .prodet-2 .options span.active i {
  color: white;
}
.prodet-page .prodet-2 .ret {

  font-size: 18px;
  color: #242424;
  line-height: 30px;
}



.prodet-page .prodet-2 .ret .slide .cont-t .img {
  position: relative;
  padding-bottom: 38px;
  display: inline-block;
}

.prodet-page .prodet-2 .ret .slide .cont-t .img::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 16px;
height: 16px;
background: var(--color);
border-radius: 50%;
border: 2px solid var(--color);
}

.prodet-page .prodet-2 .ret .slide .cont-t .list::after {
  content: '';
  position: absolute;
  left: 0;
  top: 76px;
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.2)
}

.prodet-page .prodet-2 .ret .slide .cont-t h4 {
font-weight: 600;

font-size: 20px;
color: #222222;
line-height: 34px;
margin-top: 40px
}

.prodet-page .prodet-2 .ret .slide .cont-t p {
  font-weight: 600;
font-weight: 400;
font-size: 16px;
color: #0B0D0F;
line-height: 30px;
opacity: 0.7;
margin-top: 20px
}

.prodet-page .prodet-2 .ret .slide .cont-b {
  margin-top: 95px;
} 

.prodet-page .prodet-2 .ret .slide .cont-b ul {
  display: flex;
  margin: 0 -20px;
}
.prodet-page .prodet-2 .ret .slide .cont-b ul li {
  padding: 0 20px;
}

.prodet-page .prodet-2 .ret .slide .cont-b .cona {
  font-weight: 600;
font-weight: 400;
font-size: 16px;
color: #0B0D0F;
line-height: 30px;
opacity: 0.7;
margin-top: 42px
}

.prodet-page .prodet-2 .ret .slide.acsa {
  background: #EFEFEF;
  padding-top: 115px
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-t {
  padding: 0 40px
}
.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-img {
  width: 35%;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-con {
  width: 65%;
  padding-left: 85px;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-con h4 {
  font-weight: 600;
font-weight: 400;
font-size: 38px;
color: #000000;
line-height: 1.4;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-con span {
  display: block;
  margin-top: 20px;
  margin-left: -165px
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-con .four-cona {
  font-weight: 600;
font-weight: 400;
font-size: 18px;
color: #7a7a7a;
line-height: 30px;
margin-top: 30px;
max-width: 100%;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-con .four-btn {
  margin-top: 30px;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-con .four-btn a.more {
  height: 61px;
    background: var(--color);
    border-radius: 31px;
    font-weight: 600;
    font-size: 18px;
    color: var(--color);
    line-height: 30px;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b {
padding-top: 110px;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li {
  width: 33.3333%;
  margin: 15px 0
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li .four-acc {
  display: flex;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  transition: 0.3s
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li .four-acc {
  padding-left: 20px;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li .four-acc i {
  display: inline-block;
  width: 1px;
height: 49px;
background: #334947;
margin-left: 27px;
margin-right: 35px;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li .four-acc h4 {
font-weight: 600;
font-weight: 400;
font-size: 20px;
height: 76px;
overflow: hidden;
color: #000000;
line-height: 34px;
transition: 0.3s;
padding-right: 20px;
max-width: 380px;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li .four-acc span img {
  transition: 0.3s
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li.active .four-acc {
  background: var(--color);
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li.active .four-acc span img {
  filter: brightness(100);
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li.active .four-acc i {
  background: #fff;
}

.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li.active .four-acc h4 {
  color: #fff;
  line-height: 1.7;
}


.prodet-page .prodet-2 .ret .slide:last-child {
  padding-top: 82px;
}




.prodet-page .prodet-2 .ret .applic {
  margin-top: 55px;
}

.prodet-page .prodet-2 .ret .applic ul {
  margin: -17px -30px
}

.prodet-page .prodet-2 .ret .applic ul li {
  padding: 17px 30px;
  text-align: center
}

.prodet-page .prodet-2 .ret .applic ul li .img {
  margin: 0 auto;
  max-width: 342px;
}

.prodet-page .prodet-2 .ret .applic ul li h4 {
font-weight: 600;
font-weight: 400;
font-size: 20px;
color: #000000;
line-height: 34px;
opacity: 0.7;
margin-top: 20px;
}

/*.prodet-page .prodet-2 .ret table tbody {
  table-layout: fixed;
}
.prodet-page .prodet-2 .ret table tr:first-child {
  background-color: #242424;
  color: white;
}
.prodet-page .prodet-2 .ret table tr td {
  border: 1px solid white;
  text-align: center;
  padding: .5em;
}*/
.prodet-page .prodet-3 {
  text-align: center;
  padding-bottom: 120px;
}
.prodet-page .prodet-3 span.txt {
  margin-bottom: .3em;
}
.prodet-page .prodet-3 .list {
  margin: 45px 0;
}
.prodet-page .prodet-3 .dots {
  text-align: center;
}
.prodet-page .prodet-3 .dots ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.prodet-page .prodet-3 .dots ul li {
  margin: 0 7px;
}
.prodet-page .prodet-3 .dots ul li button {
  font-size: 20px;
  color: #242424;
  width: 36px;
  height: 36px;
  border: none;
  border-bottom: 1px solid transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background-color: transparent;
}
.prodet-page .prodet-3 .dots ul li.slick-active button {
  border-color: #242424;
}
.inner-page #productList ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -30px;
  /*border-left: 1px solid #bfbfbf;*/
}
/*.inner-page #productList ul {
  border-bottom: 1px solid #bfbfbf;
}*/
.inner-page #productList ul li {
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  position: relative;
  padding: 0 30px
}
/*.inner-page #productList ul.slick-slider {
  border-bottom: none;
}
.inner-page #productList ul.slick-slider li {
  border-bottom: 1px solid #bfbfbf;
}*/
/*.inner-page #productList ul li:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid var(--color);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 0;
}*/
.inner-page #productList ul li .box {
  background: #FFFFFF;
box-shadow: 2px 3px 27px 0px rgba(0,0,0,0.03);
border-radius: 16px;
padding: 20px;
}
.inner-page #productList ul li a.img-box {
  display: block;
  
  overflow: unset;
  width: 100%;
  position: relative;
  z-index: 1;
}
.inner-page #productList ul li a.img-box img {
  width: auto;
  margin: 0 auto;
  display: block;
}
.inner-page #productList ul li .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.inner-page #productList ul li .btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  margin: 0 5px;
  border: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page #productList ul li .btn a img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page #productList ul li .btn a:hover {
  border-color: var(--color);
  background-color: var(--color);
}
.inner-page #productList ul li .btn a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.inner-page #productList ul li span.h6 {
  font-weight: 400;
  font-size: 20px;
  color: #242424;
  line-height: 34px;

  display: block;
  margin-top: 24px;
  position: relative;
  z-index: 2;
  text-align: left;
  padding-bottom: 100px;
}
.inner-page #productList ul.slick-slider li span.h6 {
  height: 67px;
  overflow: hidden;
}
.inner-page #productList ul li a.link {
  font-size: 18px;
  color: white;
  height: 2.44444444em;
  text-align: center;
  background-color: black;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  width: 100%;
  z-index: 2;
}
.inner-page #productList ul li a.link em {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid white;
  line-height: 1.4;
}
.inner-page #productList ul li a.link em:after {
  content: '';
  border: 4px solid var(--color);
  border-radius: 100%;
  position: absolute;
  top: -2px;
  left: 105%;
}
.inner-page #productList ul li a.link em:after {
  border-color: white;
  top: 0;
  border-width: 3px;
}
.inner-page #productList ul li a.link:hover {
  background-color: var(--color);
}
.inner-page #productList ul li:hover {
  z-index: 1;
}
.inner-page #productList ul li:hover:after {
  opacity: 1;
}
.inner-page #productList ul li:hover a.link {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 1600px) {
    .prodet-page .prodet-2 .options span {
    font-size: 18px;
  }
  .num1 span,
  .num1 ul li h2 em {
    font-size: 32px
  }
  .num1 ul {
    padding-right: 150px;
  }
  .num1 .play {
    right: 20px;
  }
  .prodet-page .prodet-3 {
    padding-bottom: 80px;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 24px;
  }
  .prodet-page .prodet-1 .right .text {
    font-size: 18px;
    margin: 1.5em 0;
  }
  .prodet-page .prodet-1 .right .share span.h6 {
    font-size: 20px;
  }
  .prodet-page .prodet-1 .right .share a {
    font-size: 16px;
  }
  .prodet-page .prodet-2 .ret {
    margin-top: 30px;
    font-size: 18px;
  }
  .prodet-page .prodet-2 {
    padding: 60px 0;
  }
    .inner-page #productList ul li a.link,
  .seoBox .seoNews .bottom .list ul li .box a.link {
    font-size: 16px;
  }
  .inner-page #productList ul li a.link em:after,
  .seoBox .seoNews .bottom .list ul li .box a.link:after {
    border-width: 2px;
  }
}
span.txt {
    font-size: 24px;
    letter-spacing: 6px;
    color: var(--color);
    text-transform: uppercase;
    display: block;
    line-height: 40px;
}
@media screen and (max-width: 1450px) {
    .prodet-page .prodet-2 .options span {
    font-size: 16px;
  }
  .responsibility-page .responsibility-4 .accs.top .left {
    padding-left: 40px!important;
  }
  .inner-page~#footer .init-8 {
    padding-top:20px 
  }
  .prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li {
    width: 33.333%
  }
  .custom-2 .options ul li {
    font-size: 16px
  }
   .prodet-page .prodet-1 {
    padding-top: 60px;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 20px;
    line-height: 34px;
  }
  .prodet-page .prodet-1 .right .text {
    font-size: 16px;
    line-height: 30px;
  }
  .prodet-page .prodet-1 .right a.more {
    margin-top: 2em;
  }
  .prodet-page .prodet-1 .left .smallImg {
    padding-right: 23px;
  }
  .prodet-page .prodet-3 {
    padding-bottom: 50px;
  }
  .prodet-page .prodet-3 .list {
    margin: 30px 0;
  }
}

@media screen and (max-width: 1250px) {
    .prodet-page .prodet-2 .options span {
    font-size: 14px;
    width: 200px;
  }
  .prodet-page .prodet-1 .right {
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .prodet-page .prodet-1 .left {
    width: 100%;
  }
  .prodet-page .prodet-1 .right .text {
    margin: 0;
    padding-right: 0;
    max-height: none;
  }
  .prodet-page .prodet-2 .ret {
    font-size: 16px;
  }
    .prodet-page .prodet-3 .dots ul li button {
    font-size: 16px;
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 700px) {
    .prodet-page .prodet-2 .options span {
    font-size: 14px;
    width: 140px;
  }
    .prodet-page .prodet-1 .left .smallImg ul li {
    padding: 5px;
  }
  .prodet-page .prodet-1 .left .smallImg ul {
    margin: -5px;
  }
  .prodet-page .prodet-1 .left .smallImg {
    padding-right: 10px;
  }
}
@media screen and (max-width: 500px) {
    .prodet-page .prodet-2 .ret {
    font-size: 14px;
  }
    .inner-page #productList ul li span.h6 {
    font-size: 16px;
    line-height: 30px;
  }
}

/*news*/
.inner-page .slideBar-left {
  width: 22% !important;
  margin-bottom: 75px;
}

.inner-page .slideBar-left h3 {
  font-weight: bold;
font-weight: 400;
font-size: 31px;
color: #000000;
line-height: 1.4;
padding-left: 33px;
margin-bottom: 60px;
}

.inner-page .slideBar-left h3.ac3 {
  margin-top: 105px;
}
.inner-page .slideBar-left .slideNav > li {
  margin-bottom: 10px;
}
.inner-page .slideBar-left .slideNav > li > a {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  display: block;
  font-size: 18px;
  background: #f5f5f5;
  padding: 22px 40px;
  line-height: 30px;

}

.inner-page .slideBar-left .slideNav > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
height: 100%;
background: var(--color);
}
.inner-page.product-page .slideBar-left .slideNav>li>a{
  background: white;
}
.inner-page .slideBar-left .slideNav > li > a .fa {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 25px;
}
.inner-page .slideBar-left .slideNav > li ul li {
  margin: 5px;
  margin-right: 0;
}
.inner-page .slideBar-left .slideNav > li ul li a {
  padding: 10px;
  font-size: 17px;
  display: block;
}
.inner-page .slideBar-left .slideNav > li ul li.active a,
.inner-page .slideBar-left .slideNav > li ul li:hover a {
  background: var(--color);
  color: white;
}
.inner-page .slideBar-left .slideNav > li:hover > a,
.inner-page .slideBar-left .slideNav > li.active > a {
  background: var(--color);
  color: white;
}
.inner-page .slideBar-left .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 44px;
}
.inner-page .slideBar-left .share li {
  width: 30px;
  height: 30px;
  background: var(--color);
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 34px;
  margin-right: 15px;
}
.inner-page .slideRight {
  width: 78% !important;
  padding-left: 49px;
}
.inner-page .slideRight #index-body {
  margin-top: 0
}
.inner-page.prodet-page .slideRight{
  width: 100% !important;
  padding-left: 0;
}
.news-page{
  padding-top: 20px;
 
}
.inner-page.news-page .slideRight .homepage-4{
  padding: 0 !important;
}
.inner-page.news-page .slideRight .homepage-4 ul{
  margin: -15px;
}
.inner-page.news-page .slideRight .homepage-4 ul li{
  padding: 15px;
}
.news-page .slideRight .i-news {
  overflow: unset !important;
}
.news-page .slideRight .i-news .wrap .column {
  margin-bottom: 35px;
}
.news-page .i-news .wrap{
      margin: -23px;
}
.news-page .i-news .wrap .column {
    padding: 23px;
}
.news-page .slideRight .i-news .wrap .column {
    margin-bottom: 35px;
}
.news-page .i-news .wrap .column .item {
    display: block;
    position: relative;
    -webkit-box-shadow: 5px 5px 30px 0px rgba(0,0,0,.1);
    box-shadow: 5px 5px 30px 0px rgba(0,0,0,.1);
    padding: 50px 25px 85px;
}
.news-page .i-news .wrap .column .item .content {
    line-height: 1.7;
    text-align: center;
}
.news-page .i-news .wrap .column .item h4 {
    text-align: center;
    font-size: 20px;
    line-height: 34px;
    
    position: relative;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    margin: 30px 0 20px;
}
.news-page .i-news .wrap .column .item .time {
    font-size: 16px;
    line-height: 30px;
    display: block;
    text-align: center;
}
.news-page .i-news .wrap .column .item .douhao {
    width: 74px;
    height: 74px;
    border-radius: 100%;
    text-align: center;
    line-height: 1.4;
    -webkit-box-shadow: 4px 4px 27px 0px rgba(0,0,0,.11);
    box-shadow: 4px 4px 27px 0px rgba(0,0,0,.11);
    background: #fff;
    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;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%,50%);
    -moz-transform: translate(-50%,50%);
    -ms-transform: translate(-50%,50%);
    transform: translate(-50%,50%);
}
@media screen and (max-width: 1320px) {
  .inner-page .slideBar-left {
    display: none;
  }
  .inner-page .slideRight {
    width: 100% !important;
    padding-left: 0;
  }
  .inner-page .sideLeft{
    display: none;
  }
  .inner-page .sideRight{
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .inner-page .slideBar-left {
    display: none;
  }
  .inner-page .slideRight {
    width: 100% !important;
    padding-left: 0;
  }
  .about-2 .ui.container .main ul.ab2list li .textbox .content p{
    font-size: 16px;
    line-height: 1.4;
  }
  .about-2 .ui.container .main ul.ab2list li{
    height: 540px;
  }
}
@media screen and (max-width: 1000px) {
  .news-page .slideRight .i-news .wrap .column {
    width: 50%;
  }
  .flex.flex-w .wid-33{
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
    .news-page .slideRight .i-news .wrap .column {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .flex.flex-w .wid-33{
    width: 100%;
  }
}
/*newsdet-page*/
.newdet2-page {
    padding: 80px 0;
}
.newdet2-page h1 {
    font-size: 30px;
    line-height: 1.4;
    color: #0b2239;
    font-weight: 400;
    text-transform: capitalize;
}
.newdet2-page time {
    display: block;
    margin: 15px 0;
    font-size: 14px;
    line-height: 2;
    color: black;
    opacity: .6;
}
.newdet2-page .content {
    display: block;
    padding: 15px 0;
    border-top: 1px #ccc dashed;
    border-bottom: 1px #ccc dashed;
    font-size: 16px;
    color: #868686;
    line-height: 30px;
}
.newdet2-page .content li {
  list-style: disc;
}
.newdet2-page .share {
    padding-top: 10px;
    margin-bottom: 60px;
}
.newdet2-page .share h4 {
    font-size: 14px;
    line-height: 2;
    color: black;
    display: inline-block;
    vertical-align: middle;
}
.newdet2-page .share ul {
    display: inline-block;
    vertical-align: middle;
}
.newdet2-page .share ul li {
    width: auto;
    margin-left: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.newdet2-page .share ul li:hover {
    color: #026293;
}
@media screen and (max-width: 500px){
   .newdet2-page{
        padding: 50px 0 10px;
    }
}

.factory-page {
  position: relative;
 
  padding-bottom: 50px;
  z-index: 11
}

.factory-page::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  width: 518px;
  height: 968px;
  /*background: url(/lyusenfilters/2024/07/04/factory12.png) no-repeat center;*/
  z-index: -1
}

.factory-page .about-11 .top .right {
  padding-left: 64px;
  border-bottom: none;
}
.factory-page .about-11 .top .right .top1 {
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 64px;
}
.factory-page .about-11 .top .right .top1 .img {
  width: 55%;
}
.factory-page .about-11 .top .right .top1 .con {
  width: 45%;
  padding-left: 25px;
}
.factory-page .about-11 .top .right .top1 .con h4 {
  font-weight: 600;

font-size: 24px;
color: #000000;
line-height: 40px;
margin-top: 32px;
}
.factory-page .about-11 .top .right .top1 .con span {
  display: block;
  width: 85px;
height: 4px;
background: var(--color);
margin: 22px 0
}
.factory-page .top h2 {
  border-bottom: 1px solid #dbdbdb;
    padding-bottom: 32px;
    margin-bottom: 60px;
}
.factory-page .top .righ ul {
  margin: -11px;
  margin-bottom: 45px;
}
.factory-page .top .right ul li {
  padding: 11px;
  text-align: center;
  font-size: 25px;
  
}
.factory-page .top .right ul li a {
  display: block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
 
}
.factory-page .top .right ul li:hover a,
.factory-page .top .right ul li.active a {
  background: var(--color);
  color: white;
}
.factory-page .wrap {
  margin: -18px;
}
.factory-page .wrap li {
  padding: 18px;
}
.factory-page .more {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: block;
  background: var(--color);
  color: white;
  font-size: 25px;
  text-align: center;
  height: 77px;
  line-height: 1.4;
  width: 335px;
  margin: 60px auto;
}
.factory-page .more .fa {
  margin-left: 5px;
}
.factory-page .more:hover {
  background: black;
}

.factory-page .init-51 {
  position: relative;
  background: #f6f8f6;
  padding: 137px 0 64px;
  z-index: 11
}
.factory-page .init-51::after {
  content: '';
  position: absolute;
  left: 0;
  top: 64px;
  width: 100%;
  height: 167px;
  background: url(/lyusenfilters/2024/07/01/fac12.png) no-repeat center;
  z-index: -1
}
.factory-page .init-51 .title1 {
  position: relative;
}
.factory-page .init-51 .title1 .tit3 {
  display: initial;
  position: relative;
  font-weight: 600;

font-size: 42px;
color: var(--color);
line-height: 1.5;
text-transform: uppercase;
padding: 42px 0;
}

.factory-page .init-51 .title1 .tit3::after {
  content: '';
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
height: 116px;
background: url(/lyusenfilters/2024/07/01/fac14.png) no-repeat center;
}
.factory-page .init-51 .title1 .tit3::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
height: 116px;
background: url(/lyusenfilters/2024/07/01/fac13.png) no-repeat center;
}
.factory-page .init-51 .title1 span {
  display: block;
  width: 69px;
height: 4px;
background: var(--color);
margin: 0 auto;
margin-top: 32px;
}
.factory-page .init-51 .title1 p {
  font-weight: 600;
font-weight: 400;
font-size: 16px;
color: rgba(0, 0, 0, 0.7);
line-height: 30px;
max-width: 1200px;
margin: 0 auto;
margin-top: 60px;
}

.factory-page .init-51 ul li .img {
  width: 172px;
height: 172px;
background: #FFFFFF;
/*box-shadow: 23px 23px 35px 0px rgba(30,53,51,0.05);*/
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.factory-page .init-51 .top {
  margin-top: 50px
}
.factory-page .init-51 .bot {
  transform: rotate(-180deg);
}
.factory-page .init-51 .bot ul li .img {
  transform: rotate(180deg);
}
.factory-page .init-51 ul li {
  padding: 20px 0
}

.faq-page {
  padding-bottom: 300px;
  background: rgba(217,232,217, 0.16)
}
.faq-page .faqbox .ui.container ul.faqlist li {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.faq-page .faqbox .ui.container ul.faqlist li .top {
  height: 100px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
 
  padding: 0 160px;
  width: 100%;
}
.faq-page .faqbox .ui.container ul.faqlist li .top i {
  font-size: 20px;
  color: #666;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 45px;
}
.faq-page .faqbox .ui.container ul.faqlist li span.qust,
.faq-page .faqbox .ui.container ul.faqlist li span.anser {
  position: absolute;
  font-size: 30px;
 
  color: #000;
  top: 50%;
  left: 45px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.faq-page .faqbox .ui.container ul.faqlist li span.anser {
  color: var(--color);
}
.faq-page .faqbox .ui.container ul.faqlist li .content {
  padding: 30px 0;
  padding-left: 160px;
  background: #f9f9f9;
  display: none;
  position: relative;
}
@media screen and (max-width: 700px) {
  .faq-page .faqbox .ui.container ul.faqlist li .top {
    padding: 0 20px;
  }
  .faq-page .faqbox .ui.container ul.faqlist li span.qust,
  .faq-page .faqbox .ui.container ul.faqlist li span.anser {
    display: none;
  }
  .faq-page .faqbox .ui.container ul.faqlist li .content {
    padding: 20px;
  }
  .solu-4{
    display: none;
  }
}


.m-page{
  margin: 40px 0;
  width: 100%;
}

.m-page .wp-pagenavi{
  display: flex;
  justify-content: center;
  align-content: center;
}
.m-page .wp-pagenavi a,.m-page .wp-pagenavi span{
  width: 46px;
  height: 46px;
  display:inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border: 1px solid var(--color);
  color: var(--color);
  margin: 0 10px;
  border-radius: 100%;
}
.m-page .wp-pagenavi a:hover,
.m-page .wp-pagenavi span:hover{
  background: var(--color);
  color: #fff;
}
.m-page .wp-pagenavi span{
  background: var(--color);
  color: #fff;
}

#index.wrapper {
  position: relative;
  z-index: 11
}

#index.wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 100px;
  width: 956px;
  height: 1463px;
  background: url(/lyusenfilters/2024/07/04/history11.png) no-repeat center;
  z-index: -1
}

    .img-box a{
      display: inline-block;
    }
    .map iframe{
      width: 100%;
    }

    .dev_con{

  position: relative;
  padding-bottom: 170px;
}
.dev_con .tea_case{
  position: relative;
  z-index: 1;
  padding-bottom: 90px;
}
.tab_time_bottom .showreel_box {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background-color: transparent;
  overflow: hidden;
  position: relative;
  padding: 0 90px;
  box-shadow: none;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.tab_time_bottom .showreel_box .view_box {
  margin-left: 55px;
}
.tab_time_bottom .showreel_box .list_u_img_box > a{
  position: relative;
  width: 100px;
  font-size: 20px;
  color: rgba(50,75,73, 0.7);
  transition: all .5s ease;
  margin-right: 60px;
}
.tab_time_bottom .showreel_box .list_u_img_box > a.on,.tab_time_bottom .showreel_box .list_u_img_box > a:hover {
  font-size: 20px;
  color: var(--color);
}
.tab_time_bottom .showreel_box .list_u_img_box > a::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: -5px;
  margin-left: -1em;
  width: 0;
  height: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: var(--color);
  transition: all .5s ease;
}
.tab_time_bottom .showreel_box .list_u_img_box > a:hover::after,.tab_time_bottom .showreel_box .list_u_img_box > a.on::after {
  width: 2em;
}
.tab_time_bottom .showreel_box .btn_img_prev,.tab_time_bottom .showreel_box .btn_img_next{
  position: relative;

  width: 50px;
height: 50px;
line-height: 34px;
background: var(--color);
box-shadow: 3px 3px 18px 0px rgba(0,0,0,0.26);
border-radius: 50%;
  text-align: center;
font-size: 20px;
color: #fff;
 
  left: 0;
  font-family: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 111
}
.tab_time_bottom .showreel_box .btn_img_next{
  right: 25px;
  left: auto;

}
.dev_tex_box > div{
  display: none;
  width: 70%;
  float: right;
  line-height: 30px;
  font-size: 18px;
  margin-right: 120px;
  font-weight: 300;
  padding-bottom: 60px;
  min-height: 260px;
}
.time_title_case{
  position: relative;
  padding-top: 115px;
  overflow: hidden;
}
.at_time{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #e9eff2;
  font-size: 240px;
  line-height: 1.4;
  background: -ms-linear-gradient(180deg, rgba(233, 239, 242, 0), rgba(233, 239, 242, 0), rgba(233, 239, 242, 0));
  background: -moz-linear-gradient(180deg, #f1f2f3, rgba(233, 239, 242, 0.7), rgba(233, 239, 242, 0));
  background: -o-linear-gradient(180deg, #f1f2f3, rgba(233, 239, 242, 0.7), rgba(233, 239, 242, 0));
  background: -webkit-gradient(linear, right top, right bottom, color-stop(0,rgba(246, 249, 251, 1)),color-stop(0.10,rgba(233, 239, 242, 1)),color-stop(0.7,rgba(233, 239, 242, 0.7)), color-stop(1, rgba(233, 239, 242, 0)));
  background:  -webkit-linear-gradient(top, #f1f2f3, rgba(233, 239, 242, 0.7), rgba(233, 239, 242, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.time_sha{
  position: absolute;
  pointer-events: none;
  z-index: 2;
  width: 100%;
  height: 100%;

}
.time_line_case{
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
  width: 100%;
}
.time_line_case::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: url(/lyusenfilters/2024/07/03/history12.png) no-repeat center / cover
}
.time_line_box{
  width: 100%;
  position: relative;
  top: 0;
  left: 0!important;
  transition: all .5s ease;
}
.time_line_box > div{
  width: 100%!important;
  position: relative;
  font-size: 20px;
  line-height: 34px;
}

.time_line_box 
.btn_time {
  position: relative;
  border-radius: 50%;

  z-index: 1;
  cursor: pointer;

}

.btn_time {
  padding: 75px 0;
}
.time_line_box .bodes::nth-child(1) .btn_time,
.time_line_box .bodes::nth-child(2) .btn_time {
  padding: 0;
}

.btn_time::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
height: 25px;
background: var(--color);
border-radius: 50%;
}

.btn_time .his-acc {
  display: flex;
  align-items: center;
  padding-left: 40px;
}
.btn_time .his-acc .his-h3 {
  font-weight: 600;
font-weight: 400;
font-size: 24px;
color: #000000;
line-height: 40px;
padding-right: 50px;
}
.btn_time .his-acc .img {
  width: 206px;
height: 118px;
object-fit: cover;

}
.btn_time .his-acc .img img {
  width: 100%;
  height: 100%;
}
.btn_time .his-acc .his-cona {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0
}
.btn_time > span{
  position: absolute;
  left: 0%;
  margin-left: -23px;
  top: 70px;
  z-index: 2;
  transition: all .5s ease;
  width: 80px;
  opacity: 0
}

.on .btn_time > span{
  opacity: 1
}

.time_line_box > div:nth-child(odd) .btn_time > span{
  bottom: -50px;
  top:auto;
}
/*.btn_time::after{
  content: '';
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 36px;
  height: 36px;
  background-color: rgba(0,53,134,.15);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  animation:dot1 2s infinite ease;
  -webkit-animation:dot1 2s infinite ease; /* Safari 和 Chrome */
@keyframes dot1 {
  0%{
    width: 20px;
    height: 20px;
  }
  50%{
    width: 36px;
    height: 36px;
  }
  100%{
    width: 20px;
    height: 20px;
  }

}
.btn_time:hover::after{
  display: block;
}
.time_line_box > div.bodes{
  pointer-events: none;

}

/*波浪背景*/
.wave_box{
  width: 100%;
  height: 350px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;

}
.tab_time_bottom {
  position: relative;
  z-index: 11;
  margin-top: 60px;
}

.dev_tex_box {
  display: none;
}
.wave {
  overflow: hidden;
  position: absolute;
  top: 129%;
  width: 140%;
  transform: translateY(-50%);
  color: #fff;
  margin-left: -20%;
  animation: 3s ease-in-out infinite alternate waveAnimateA;
}
@keyframes waveAnimateA {
  0% {
    transform: translate(-80px,-52%);
  }

  100% {
    transform: translate(80px,-50%);
  }
}
.wave svg {
  fill: rgba(233,239,242,1);
  width: 102%;
  margin-left: -1%;
  height: auto;
}
.st0{fill:#E9EFF2;opacity:0.5}
.st1{opacity:0.5;fill:rgba(167,215,142, 0.3);}
.st3{
  fill-rule:evenodd;clip-rule:evenodd;
  fill: var(--color)!important;
}

.titie_box_bg{
  width: 130px;
  position: absolute;
  left: -65px;
  top: 0%;
  z-index: 1;
  transform: scale(0);
  transition: all .5s ease;
}
.titie_box_bg svg{
  width: 100%;
  position: relative;
  z-index: 1;
}
.titie_box_bg .acc1{
  opacity: .3;
  transform: rotate(37deg) scale(1.02);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
}

.time_line_box .on .btn_time > span{
  font-size: 40px;
  color: #fff;
  top: 41px!important;
  left: -43px;
  bottom: auto !important;
  margin-left: 0;
  width: 100px;
}

.on .btn_time:before {
  opacity: 0
}
.time_line_box .on .btn_time .titie_box_bg{
  transform: scale(1);
}
.time_line_box .on .btn_time .titie_box_bg > .acc1{
  animation: alpha 2.25s linear infinite forwards;

}
.on .btn_time {
  position: relative;
  padding: 0;
  padding-bottom: 75px;
  
}
.on .btn_time .his-acc {
  position: relative;
  display: block;
  padding-left: 150px;
padding-top: 100px;
}

.on .btn_time .his-acc .his-h3 {
  position: absolute;
  left: 150px;
  top: 0;
  width: 100%;
  font-weight: 600;
font-weight: 400;
font-size: 193px;
color: #000000;
line-height: 1.5;
opacity: 0.05;
text-align: center;
max-width: 821px;
padding-right: 0;
z-index: 12
}
.on .btn_time .img {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 429px;
  z-index: 19
}
.on .btn_time .his-acc .his-cona {
  position: static;
  opacity: 1;
  font-weight: 600;
font-weight: 400;
font-size: 18px;
color: rgba(0, 0, 0, 0.7);
line-height: 30px;
margin-top: 40px
}
@keyframes alpha {
  0% {
    transform: rotate(0);
  }
  25% {
  }
  50% {
    border-radius: 50%;
  }
  75% {
  }
  100% {
    transform: rotate(360deg);
  }
}

.team-page .team-1 {
  padding: 27px 0 115px;
}
.team-page .team-1 .top ul {
  margin: -22px -35px;
}
.team-page .team-1 .top ul li {
  padding: 22px 35px;
}
.team-page .team-1 .top ul li .box {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 20px;
  transition: 0.3s;
}
.team-page .team-1 .top ul li .box .img {
  width: 32%;
}
.team-page .team-1 .top ul li .box .con {
  width: 68%;
  padding-left: 28px;
  margin-top: 23px;
}
.team-page .team-1 .top ul li .box .con h4 {
  font-weight: 600;
  font-weight: 400;
  font-size: 24px;
  color: #000;
  line-height: 1;
}
.team-page .team-1 .top ul li .box .con .cona {
  font-weight: 600;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.7;
  margin-top: 25px;
  padding-right: 40px;
}
.team-page .team-1 .top ul li .box:hover {
  background: var(--color);
}
.team-page .team-1 .top ul li .box:hover .con h4,
.team-page .team-1 .top ul li .box:hover .con .cona {
  color: #fff;
}
.team-page .team-2 {
  padding: 135px 0 200px;
  background: url(../images/tema12.jpg) no-repeat center;
}
.team-page .team-2 .top {
  text-align: center;
}
.team-page .team-2 .top h4 {
  font-weight: 600;
  
  font-size: 36px;
  color: #FFFFFF;
  line-height: 1;
}
.team-page .team-2 .top p {
  font-weight: 600;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.7;
  max-width: 1043px;
  margin: 0 auto;
  margin-top: 30px;
}
.team-page .team-3 {
  padding: 145px 0 50px;
}
.team-page .team-3 .top .left {
  width: 60%;
  vertical-align: middle;
}
.team-page .team-3 .top .left ul li {
  margin-bottom: 70px;
}
.team-page .team-3 .top .left ul li .box .img {
  width: 8%;
  margin-top: 15px;
}
.team-page .team-3 .top .left ul li .box .con {
  width: 92%;
  padding-left: 45px;
}
.team-page .team-3 .top .left ul li .box .con h5 {
  font-weight: 600;
  font-weight: 400;
  font-size: 24px;
  color: #000;
  line-height: 1.4;
}
.team-page .team-3 .top .left ul li .box .con .cona {
  font-weight: 600;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.7;
  margin-top: 15px;
  max-width: 675px;
}
.team-page .team-3 .top .left ul li:last-child {
  margin-bottom: 0;
}
.team-page .team-3 .top .right {
  width: 40%;
  vertical-align: middle;
}
.down-page .about-11 .top .right {
  border-bottom: none;

  width: 100%;
  padding-left: 0
}
.dev_con .about-11 .top .right {
  padding-left: 277px
}
.down-page .about-11 .top .right ul li {
  margin-bottom: 28px;
}
.down-page .about-11 .top .right ul li .box {
  display: flex;

}
.down-page .about-11 .top .right ul li .box .img {
  background: transparent;
  border-radius: 0;
  width: 132px;
  height: 132px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.down-page .about-11 .top .right ul li .box .img img {
  border-radius: 0;
}
.down-page .about-11 .top .right ul li .box .con {
  width: 90%;
  padding-left: 31px;
  display: flex;
  align-items: center;
}
.down-page .about-11 .top .right ul li .box .con .acc {
  padding: 46px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #fff;
}
.down-page .about-11 .top .right ul li .box .con .acc h5 {
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  line-height: 40px;
}
.down-page .about-11 .top .right ul li .box .con .acc a {
  display: inline-block;
  font-weight: 500;
  font-size: 24px;
  color: #59B548;
  line-height: 40px;
  text-decoration: underline;
  text-transform: uppercase;
}
.down-page .about-11 .top .right ul li:last-child {
  margin-bottom: 0;
}

.contact1-page {
  padding: 40px 0 65px;
}
.contact1-page .contact1-1 .top ul {
  margin: 0 -45px;
}
.contact1-page .contact1-1 .top ul li {
  padding: 0 45px;
}
.contact1-page .contact1-1 .top ul li .box {
  background: #FFFFFF;
  box-shadow: 10px 39px 43px 0px rgba(0, 0, 0, 0.03);
  border-radius: 24px;
  padding: 58px 55px 50px;
}
.contact1-page .contact1-1 .top ul li .box .acc {
  display: flex;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact1-page .contact1-1 .top ul li .box .acc h4 {
  font-weight: 600;
  
  font-size: 24px;
  color: #242323;
  line-height: 40px;
  margin-left: 42px;
}
.contact1-page .contact1-1 .top ul li .box .lianxi {
  display: flex;
  flex-wrap: wrap;
}
.contact1-page .contact1-1 .top ul li .box .lianxi p {
  font-size: 18px;
  color: #242323;
  line-height: 30px;
  opacity: 0.6;
  width: 50%;
  margin-top: 40px;
}
.contact1-page .contact1-2 {
  margin-top: 65px;
}
.contact1-page .contact1-2 .form {
  background: #FFFFFF;
  box-shadow: 23px 23px 76px 0px rgba(0, 0, 0, 0.03);
  border-radius: 31px;
  padding: 50px 45px;
}
.contact1-page .contact1-2 .form h3 {
  font-weight: bold;
  
  font-size: 42px;
  color: #222222;
  line-height: 1.4;
}
.contact1-page .contact1-2 .form ul {
  margin: 0 -50px;
  margin-top: 34px;
}
.contact1-page .contact1-2 .form ul li {
  padding: 0 50px;
  margin-bottom: 17px;
}
.contact1-page .contact1-2 .form ul li input[type=text] {
  width: 100%;
  height: 80px;
  font-size: 20px;
  color: rgba(34, 34, 34, 0.7);
  line-height: 34px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 40px;
}
.contact1-page .contact1-2 .form ul li label {
  display: block;
  font-weight: 400;
  font-size: 20px;
  color: rgba(34, 34, 34, 0.7);
  line-height: 34px;
  padding-left: 40px;
  padding-top: 36px;
}
.contact1-page .contact1-2 .form ul li textarea {
  width: 100%;
  height: 193px;
  font-weight: 400;
  font-size: 20px;
  color: rgba(34, 34, 34, 0.7);
  line-height: 34px;
  border: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 40px;
  margin-top: 26px;
  padding-top: 10px;
}
.contact1-page .contact1-2 .form ul li input[type=submit] {
  width: 186px;
  height: 61px;
  background: var(--color);
  border-radius: 10px;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  border: none;
  margin-top: 14px;
}
.contact1-page .contact1-2 .form ul li:last-child {
  margin-bottom: 0;
}
.contact1-page .contact1-3 {
  padding-top: 90px;
}
.contact1-page .contact1-3 .top .left {
  width: 53.75%;
  padding-right: 85px;
}
.contact1-page .contact1-3 .top .left .title1 h3 {
  font-weight: bold;
  
  font-size: 42px;
  color: #222222;
  line-height: 1.4;
}
.contact1-page .contact1-3 .top .left .title1 p {
  font-weight: 400;
  font-size: 20px;
  color: #222222;
  line-height: 34px;
  opacity: 0.7;
  margin-top: 20px;
}
.contact1-page .contact1-3 .top .left .box {
  background: #f3f3f3;
  padding: 50px 32px;
  margin-top: 32px;
}
.contact1-page .contact1-3 .top .left .box ul li{
  margin: 15px 0;
}
.contact1-page .contact1-3 .top .left .box ul li h3 {
  
  font-size: 30px;
  color: #242323;
  line-height: 1.4;
  margin-bottom: 22px;
}
.contact1-page .contact1-3 .top .left .box ul li p {
  font-weight: 400;
  font-size: 18px;
  color: #242323;
  line-height: 30px;
  opacity: 0.6;
}
.contact1-page .contact1-3 .top .right {
  width: 46.25%;
}
.contact1-page .contact1-3 .top .right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.responsibility-page .responsibility-1 {
  padding: 20px 0 90px;
}
.responsibility-page .responsibility-1 .top {
  display: flex;
  justify-content: space-between;
}
.responsibility-page .responsibility-1 .top .tit3 {
  font-weight: 600;
  
  font-size: 36px;
  color: #354B49;
  line-height: 1.4;
  text-transform: uppercase;
}
.responsibility-page .responsibility-1 .top p {
  font-weight: 600;
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 30px;
  max-width: 892px;
}
.responsibility-page .responsibility-2 {
  position: relative;
  z-index: 111;
  padding-top: 80px;
}
.responsibility-page .responsibility-2 .title1 {
  text-align: center;
}
.responsibility-page .responsibility-2 .title1 h3 {
  font-weight: 600;
  
  font-size: 36px;
  color: #FFFFFF;
  line-height: 1.4;
  text-transform: uppercase;
}
.responsibility-page .responsibility-2 .title1 p {
  font-weight:bold;
  font-weight: normal;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 34px;
  max-width: 841px;
  margin: 0 auto;
  margin-top: 40px;
}
.responsibility-page .responsibility-2 .list {
  margin-top: 122px;
  padding-bottom: 150px;
}
.responsibility-page .responsibility-2 .list ul li {
  transition: 0.3s;
  padding-top: 20px
}
.responsibility-page .responsibility-2 .list ul li .box {
  position: relative;
  background: #FFFFFF;
  box-shadow: 20px 7px 70px 0px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 80px 34px 40px;
  margin-top: 49px;
  transition: 0.5s
}
.responsibility-page .responsibility-2 .list ul li .box:hover {
  transform: translateY(-20px);
}
.responsibility-page .responsibility-2 .list ul li .box .img {
  position: absolute;
  left: 28px;
  top: -49px;
}
.responsibility-page .responsibility-2 .list ul li .box h5 {
  font-weight: 600;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 30px;
}
.responsibility-page .responsibility-2 .list ul li .box p {
  font-weight: 600;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 28px;
  margin-top: 20px;
}
.responsibility-page .responsibility-2::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 514px;
  background: url(../images/responsibility11.jpg) no-repeat center / cover fixed;
  z-index: -1;
}
.responsibility-page .responsibility-3 .top.aa1 {
  margin-top: 108px;
}
.responsibility-page .responsibility-3 .top .con {
  vertical-align: bottom;
}
.responsibility-page .responsibility-3 .top .con h4 {
  font-weight: 600;
  
  font-size: 36px;
  color: #354B49;
  line-height: 1.4;
  text-transform: uppercase;
}
.responsibility-page .responsibility-3 .top .con p {
  font-weight: 600;
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 30px;
  margin-top: 30px;
  max-width: 701px;
}
.responsibility-page .responsibility-3 .top .options {
  vertical-align: bottom;
  padding-left: 40px;
}
.responsibility-page .responsibility-3 .top .options ul {
  display: flex;
  justify-content: space-between;
}
.responsibility-page .responsibility-3 .top .options ul li {
  text-align: center;
  cursor: pointer;
}
.responsibility-page .responsibility-3 .top .options ul li .img {
  display: inline-block;
  position: relative;
  z-index: 11;
}
.responsibility-page .responsibility-3 .top .options ul li .img::after {
  content: '';
  position: absolute;
  left: -10px;
  /*top: -10px;*/
  width: 21px;
  height: 21px;
  background: #A7D68E;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
.responsibility-page .responsibility-3 .top .options ul li h6 {
  font-weight: 600;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 20px;
  margin-top: 30px;
}
.responsibility-page .responsibility-3 .top .options ul li:hover .img::after,
.responsibility-page .responsibility-3 .top .options ul li.active .img::after {
  opacity: 1;
}
.responsibility-page .responsibility-3 .bot.accs,
.responsibility-page .responsibility-3 .bot.acc4,
.responsibility-page .responsibility-3 .bot.acc6,
.responsibility-page .responsibility-3 .bot.acc8 {
  padding-bottom: 86px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.responsibility-page .responsibility-3 .bot {
  margin-top: 40px;
}
.responsibility-page .responsibility-3 .bot ul li .box {
  background: #FFFFFF;
  box-shadow: 23px 23px 76px 0px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  padding: 30px;
}
.responsibility-page .responsibility-3 .bot ul li .box .content {
  padding-left: 40px;
  margin-top: -1px;
}
.responsibility-page .responsibility-3 .bot ul li .box .content h5 {
  font-weight: 600;
  font-weight: 400;
  font-size: 30px;
  color: #000000;
  line-break: 1.4;
}
.responsibility-page .responsibility-3 .bot ul li .box .content p {
  font-weight: 600;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 28px;
  margin-top: 1px;
}
.responsibility-page .responsibility-4 {
  padding: 200px 0 60px;
}
.responsibility-page .responsibility-4 .top .left {
  width: 60%;
}
.responsibility-page .responsibility-4 .top .left h4 {
  font-weight: 600;
  
  font-size: 36px;
  color: #354B49;
  line-height: 1.4;
  text-transform: uppercase;
}
.responsibility-page .responsibility-4 .top .left ul li {
  margin-top: 75px;
}
.responsibility-page .responsibility-4 .top .left ul li .box .img {
  width: 8%;
  margin-top: 15px;
}
.responsibility-page .responsibility-4 .top .left ul li .box .con {
  width: 92%;
  padding-left: 50px;
}
.responsibility-page .responsibility-4 .top .left ul li .box .con h5 {
  font-weight: 600;
  font-weight: 500;
  font-size: 24px;
  color: #000;
  line-height: 40px;
}
.responsibility-page .responsibility-4 .top .left ul li .box .con .cona {
  font-weight: 600;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 30px;
  margin-top: 15px;
  max-width: 670px;
}
.responsibility-page .responsibility-4 .top.accs {
  margin-top: 130px
}
.responsibility-page .responsibility-4 .top .right {
  position: relative;
  width: 40%;
}
.responsibility-page .responsibility-4 .top .right span {
  position: absolute;
  left: 50%;
  top: -20%;
  transform: translateX(-50%);
}
.responsibility-page .responsibility-4 .top .right img {
  position: relative;
  z-index: 11
}
.responsibility-page .responsibility-4 .top .right span img {
  position: relative;
  z-index: 1
}
.responsibility-page .responsibility-4 .accs.top .left {
  padding-left: 170px;
}
.responsibility-page .responsibility-5 {
  padding: 80px 0 50px;
}
.responsibility-page .responsibility-5 .title1 {
  text-align: center;
}
.responsibility-page .responsibility-5 .title1 h4 {
  font-weight: 600;
  
  font-size: 36px;
  color: #354B49;
  line-height: 1.4;
  text-transform: uppercase;
}
.responsibility-page .responsibility-5 .title1 p {
  font-weight: 600;
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 30px;
  margin: 0 auto;
  max-width: 1010px;
  margin-top: 35px;
}
.responsibility-page .responsibility-5 .list {
  margin-top: 85px;
}
.responsibility-page .responsibility-5 .list .box {
  background: transparent;
  border-radius: 16px;
  padding: 33px;
  transition: 0.3s;
}
.responsibility-page .responsibility-5 .list .box h4 {
  font-weight: 600;
  
  font-size: 20px;
  color: #222222;
  line-height: 34px;
  margin-top: 37px;
}
.responsibility-page .responsibility-5 .list .box p {
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  line-height: 30px;
  margin-top: 18px;
  opacity: 0.8;
}
.responsibility-page .responsibility-5 .list .box:hover {
  background: #FFFFFF;
  box-shadow: 23px 23px 76px 0px rgba(0, 0, 0, 0.03);
}



.st0 {
  fill: #E9EFF2;
  opacity: 0.5;
}
.st1 {
  opacity: 0.5;
  fill: rgba(167, 215, 142, 0.3);
}
.st3 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: var(--color) !important;
}
.titie_box_bg {
  display: inline-block;
  width: 130px;
  height: 130px;
  top: 0%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.5s ease;
}
.titie_box_bg svg {
  width: 100%;
  position: relative;
  z-index: 1;
}
.titie_box_bg .acc1 {
  opacity: 0.3;
  transform: rotate(37deg) scale(1.02);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
}
.time_line_box .btn_time .titie_box_bg {
  transform: scale(1);
}
.time_line_box .on .btn_time .titie_box_bg > .acc1 {
  animation: alpha 2.25s linear infinite forwards;
}
@keyframes alpha {
  0% {
    transform: rotate(0);
  }
  50% {
    border-radius: 50%;
  }
  100% {
    transform: rotate(360deg);
  }
}

.history1-page~#footer .init-8 {
padding-top: 0
}

.history1-page .about-11 {
  position: relative;
  z-index: 111
}

.history1-page {
  position: relative;
  padding-bottom: 260px;
}

.history1-page::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 956px;
height: 1463px;
background: url(../images/history11.png) no-repeat center;
}

.history1-page .top .left {
  width: 22%;
}
.history1-page .top .right {
  width: 78%;
  padding-left: 257px;
}
.history1-page .top .right .bot {
  height: 810px;
  overflow: hidden
}
.history1-page .top .right .bot ul {
  position: relative;
  z-index: 10;
}
.history1-page .top .right .bot ul .slick-list {
  padding-left: 65px!important;
}
.history1-page .top .right .bot ul li {
  position: relative;
  padding: 75px 0;
}
.history1-page .top .right .bot ul li .box {
  position: relative;
  padding-left: 50px;
  display: flex;
  align-items: center;
}
.history1-page .top .right .bot ul li .box h6 {
  font-weight: 600;
  font-weight: 400;
  font-size: 24px;
  color: #000000;
  line-height: 40px;
  padding-right: 50px;
}
.history1-page .top .right .bot ul li .box .img {
  width: 206px;
  height: 118px;
  overflow: hidden;
  object-fit: cover;
}
.history1-page .top .right .bot ul li .box .img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
.history1-page .top .right .bot ul li .box .acc {
  position: absolute;
  left: 150px;
  top: 0;
  max-width: 630px;
  width: 100%;
  opacity: 0;
}
.history1-page .top .right .bot ul li .box .acc h3 {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  font-weight: 400;
  font-size: 193px;
  color: rgba(0, 0, 0, 0.05);
  line-height: 2;
  width: 100%;
  text-align: center;
}
.history1-page .top .right .bot ul li .box .acc .imga {
  position: relative;
  z-index: 11;
  padding-top: 95px;
}
.history1-page .top .right .bot ul li .box .acc .imga img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
.history1-page .top .right .bot ul li .box .acc .cona {
  font-weight: 600;
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 30px;
  margin-top: 40px;
}
.history1-page .top .right .bot ul li .box::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background: var(--color);
  border-radius: 50%;
  z-index: 12;
}
.history1-page .top .right .bot ul .slick-slide.slick-current.slick-active.slick-center +div.slick-slide.slick-active li .box::after {
  opacity: 0;
}
.history1-page .top .right .bot ul .slick-slide.slick-current.slick-active.slick-center +div.slick-slide.slick-active li .titie_box_bg {
  position: absolute;
  left: -65px;
  top: 20%;
  transform: scale(1);
  z-index: 11111;
}
.history1-page .top .right .bot ul .slick-slide.slick-current.slick-active.slick-center+div.slick-slide.slick-active li .acc1 {
  animation: alpha 2.25s linear infinite forwards;
}
.history1-page .top .right .bot ul .slick-slide.slick-current.slick-active.slick-center +div.slick-slide.slick-active li .acs1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-weight: 400;
  font-size: 36px;
  color: #FFFFFF;
  line-height: 1.4;
  z-index: 123;
}
.history1-page .top .right .bot ul .slick-slide.slick-current.slick-active.slick-center +div.slick-slide.slick-active li .box h6 {
  opacity: 0;
}
.history1-page .top .right .bot ul .slick-slide.slick-current.slick-active.slick-center +div.slick-slide.slick-active li .box .img {
  display: none;
}
.history1-page .top .right .bot ul .slick-slide.slick-current.slick-active.slick-center +div.slick-slide.slick-active li .box .acc {
  position: relative;
  opacity: 1;
  left: 0;
}









.history1-page .top .right .bot ul::after {
  content: '';
  position: absolute;
  left: 72px;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--color);
  z-index: -1;
}
.history1-page .acs-time {
  position: relative;
  z-index: 111;
  margin-top: 60px;
  height: 50px;
}
.history1-page .acs-time .time {
  position: relative;
  max-width: 800px;
  padding-left: 50px;
  padding-right: 50px;
}
.history1-page .acs-time ul {
  position: static;
}
.history1-page .acs-time ul li {
  text-align: center;
}
.history1-page .acs-time ul li p {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-weight: 400;
  font-size: 24px;
  color: rgba(50, 75, 73, 0.7);
  line-height: 40px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px
}
.history1-page .acs-time ul li p::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--color);
  transition: 0.3s;
  opacity: 0;
}

.history1-page .acs-time ul li p:hover {
  color: var(--color);
}
.history1-page .acs-time ul li p:hover::after {
  opacity: 1;
}
/*.history1-page .acs-time ul li.active p {
  color: var(--color);
}
.history1-page .acs-time ul li.active p::after {
  opacity: 1;
}*/

.history1-page .acs-time ul .slick-slide.slick-current.slick-active li p {
  color: var(--color);
}
.history1-page .acs-time ul .slick-slide.slick-current.slick-active li p::after {
  opacity: 1
}
.history1-page .acs-time ul .slick-arrow {
  width: 50px;
  height: 50px;
  background: url(../images/aca.png) no-repeat center var(--color);
  box-shadow: 3px 3px 18px 0px rgba(0, 0, 0, 0.26);
  border-radius: 50%;
  font-size: 0;
  border: none;
}
.history1-page .acs-time ul .slick-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.history1-page .acs-time ul .slick-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}




.oem
{
    font-weight: 400;
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
    line-height: 40px;
    padding-right: 90px;
    margin: 0px 0 0px; 
}


 .oem h1 :hover{

   font-weight: 600;
    font-weight: 400;
    font-size: 24px;
     color: #21A644;
    line-height: 40px;
    padding-right: 90px;
    margin: 0px 0 0px; 

}
    

    @media screen and (max-width: 1320px) {
.about-11 .top .left {
  display: none!important
}
.about-11 .top .right {
  width: 100%!important;
  padding-left: 0!important
}
.num1 {
  top: 0;
  width: 100%;
  max-width: 100%;
  margin-top: 0
}
.about-2 .ui.container .main ul.ab2list li .h4 {
  left: 0;
  padding: 0 15px
}
.about-page .about-3 .info ul li {
  width: 50%
}
.about-4 {
 padding: 70px 0
}
#footer .init-8:after {
  width: 100%;
  height: 100%;
  border-radius: 0
}
#index-body .init-6:after {
  display: none
}
#footer .init-8 .top {
  padding: 50px 0
}

.responsibility-page .responsibility-1 .top {
  flex-wrap: wrap
}
.responsibility-page .responsibility-1 .top .tit3,
.responsibility-page .responsibility-1 .top p {
  width: 100%
}
.responsibility-page .responsibility-1 .top p {
  max-width: 100%!important;
  margin-top: 20px
}
.responsibility-page .responsibility-3 .top .con,
.responsibility-page .responsibility-3 .bot ul li .box .img {
  width: 100%
}
.responsibility-page .responsibility-3 .top .options,
.responsibility-page .responsibility-3 .bot ul li .box .content {
  width: 100%;
  padding-left: 0!important;
  margin-top: 30px
}
.responsibility-page .responsibility-2 .list {
  margin-top: 50px!important;
  padding-bottom: 50px!important
}
.responsibility-page .responsibility-4 .top .left {
  width: 100%!important
}
.responsibility-page .responsibility-4 .top .right {
  width: 100%!important;
  margin-top: 50px;
}
.responsibility-page .responsibility-4 .accs.top .left {
  width: 100%;
  padding-left: 0!important;
  margin-top: 40px;
}
.responsibility-page .responsibility-4 .accs.top .right {
  width: 100%
}
.responsibility-page .responsibility-4 .top .left ul li .box .con .cona {
  max-width: 100%!important
}
.responsibility-page .responsibility-4 .top .left ul li .box .con .cona {
  max-width: 100%!important
}
.responsibility-page .responsibility-4 .top .right span img {
  display: none
}
.responsibility-page .responsibility-4 .top.accs {
  margin-top: 60px!important
}
.manu-page .top .right .swiper-button-prev, .manu-page .top .right .swiper-button-next {
  display: none!important
}
.manu-2 .ui.container .left {
  padding-right: 0
}
.manu-2 .ui.container .right {
  padding-left: 30px;
  padding-right: 15px;
}
.manu-2 {
  padding-top: 50px
}
.manu-3 {
  padding: 50px 0
}
.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-con h4 {
  font-size: 24px
}
.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-con {
  padding-left: 30px
}
.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li {
  width: 50%
}
.custom-2 .options ul {
  flex-wrap: wrap;
}
.custom-2 .options ul li {
  padding: 20px 25px!important
}
.custom-2 .options ul li:after {
  height: 100%!important;
  border-radius: 0;
  top: 0;
}
.custom-2 .ui.container .bottom {
  padding: 50px 20px 50px
}
.custom-2 .ui.container .bottom .left {
  width: 100%
}
.custom-2 .ui.container .bottom .right {
  width: 100%
}
.custom-4:after {
  display: none
}
.down-page {
  padding: 20px 0
}
.news-page {
  padding-top: 20px;
}
.contact1-page .contact1-1 .top ul li {
  width: 100%;
  margin: 20px 0
}
.contact1-page .contact1-3 .top .left {
  width: 100%;
  padding-right: 0;
}
.contact1-page .contact1-3 .top .right {
  width: 100%;
  margin-top: 30px;
}
}

@media screen and (max-width: 1100px) {
  .num1 ul {
    flex-wrap: wrap;
  }
  .num1 ul li {
    margin: 20px 0
  }
  .about-2 .ui.container .main ul.ab2list li .h4 {
    font-size: 20px
  }
  .responsibility-page .responsibility-1 {
    padding-bottom: 50px
  }
  .manu-2 .ui.container .left {
    width: 100%
  }
  .manu-2 .ui.container .right {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .manu-4 .top ul li {
    width: 100%!important;
  }
  .manu-4 .top ul .menu-logo {
    display: none
  }
}

@media screen and (max-width: 972px) {
  .num1 ul li:nth-child(1) {
    width: 100%!important
  }
  .num1 ul li {
    width: 50%
  }
  .responsibility-page .responsibility-3 .top .options ul {
    flex-wrap: wrap;
  }
  .responsibility-page .responsibility-3 .top .options ul li {
    margin-right: 20px;
  }
  .responsibility-page .responsibility-4 {
    padding: 50px 0
  }
  .manu-1 .manubox ul.manulist li .item {
    height: auto
  }
  .manu-2 .ui.container .left {
    width: 100%
  }
  .manu-2 .ui.container .right {
    width: 100%;
    padding-left: 0
  }
  .manu-3 ul {
    flex-wrap: wrap
  }
  .manu-3 ul li {
    width: 100%;
    margin: 15px 0
  }
  .factory-page .top .right ul li {
    width: 50%
  }
  .product-page .productList ul li {
    width: 50%
  }
  .prodet-page .prodet-2 .options {
    flex-wrap: wrap
  }
  .prodet-page .prodet-2 .options span {
    margin: 10px 0
  }
  .down-page .about-11 .top .right ul li .box .con .acc {
    padding: 20px;
  }
  .down-page .about-11 .top .right ul li .box .con .acc a,
  .down-page .about-11 .top .right ul li .box .con .acc h5 {
    font-size: 20px
  }
  .contact1-page .contact1-2 .form {
    padding: 20px
  }
  .contact1-page .contact1-2 .form h3,
  .contact1-page .contact1-3 .top .left .title1 h3 {
    font-size: 32px
  }
  .contact1-page .contact1-3 .top .left .box ul li h3 {
    font-size: 24px
  }
  .contact1-page .contact1-3 .top .left .box ul li:last-child {
    margin-top: 30px
  }
}

@media screen and (max-width: 768px) {
.num1 .play {
  display: none
}
.num1 ul {
  padding: 20px
}
.about-11 .top .right .tit2 {
  font-size: 32px
}
.about-page .about-3 .info ul li {
  width: 100%
}
.about-page .about-3 .info .single-facility h5 {
  font-size: 22px
}
.about-4 {
  padding: 50px 0
}
.history1-page .top .right .bot ul li .box .acc h3 {
  display: none
}
.history1-page .top .right .bot ul .slick-slide.slick-current.slick-active.slick-center+div.slick-slide.slick-active li .titie_box_bg {
  left: -34px
}
.responsibility-page .responsibility-1 .top .tit3,
.responsibility-page .responsibility-2 .title1 h3,
.responsibility-page .responsibility-3 .top .con h4,
.responsibility-page .responsibility-4 .top .left h4,
.responsibility-page .responsibility-4 .top .left h4,
.responsibility-page .responsibility-5 .title1 h4,
.inner-page .h3.title,
.manu-2 .ui.container .right .h4,
.custom-2 h3.tit3,
.custom-4 .title1 .tit3 {
  font-size: 32px
}
.custom-2 h3.tit3 {
  padding-bottom: 20px
}
.responsibility-page .responsibility-4 .top .left ul li .box .con,
.responsibility-page .responsibility-4 .top .left ul li .box .con {
  width: 100%;
  margin-top: 20px;
  padding-left: 0
}
.responsibility-page .responsibility-2 .title1 p {
  margin-top: 20px
}
.responsibility-page .responsibility-3 .top .options ul li {
  margin-top: 20px;
  text-align: center
}
.responsibility-page .responsibility-3 .top.aa1 {
  margin-top: 30px
}
.responsibility-page .responsibility-3 .bot.accs {
  padding-block-end: 50px
}
.responsibility-page .responsibility-4 .top.accs {
  margin-top: 20px!important;
}
.responsibility-page .responsibility-5 .list {
  margin-top: 30px
}
.mbx {
  padding: 20px 0
}
.manu-1 .manubox ul.manulist li {
  margin-top: 0
}
.manu-1 .manubox {
  padding-bottom: 30px
}
.manu-4 .top ul li .box .acc .imga {
  display: none
}
.manu-4 .top ul li .box .acc .ads h5 {
  font-size: 24px
}
.factory-page .top .right ul li {
  width: 100%
}
.custom-2 {
  padding: 50px 0
}
.custom-4 .title1 p {
  margin-top: 20px
}
.custom-4 .swiper-container {
  margin-top: 30px
}
.down-page .about-11 .top .right ul li .box .img {
  display: none
}
.down-page .about-11 .top .right ul li .box .con {
  width: 100%;
  padding-left: 0
}
.newdet2-page {
  padding: 50px 0!important;
}
.contact1-page .contact1-1 .top ul li .box {
  padding: 20px;
}
.contact1-page .contact1-1 .top ul li .box .acc {
  padding-bottom: 20px
}
.contact1-page .contact1-1 .top ul li .box .lianxi p {
  width: 100%;
  margin-top: 20px;
}
.contact1-page .contact1-2 .form ul li input[type=text] {
  height: 60px;
  padding-left: 20px;
  font-size: 16px
}

.contact1-page .contact1-2 .form ul li textarea {
  height: 150px;
  padding-left: 20px;
  font-size: 16px
}
.contact1-page .contact1-2 .form ul li label {
  padding-left: 20px;
  font-size: 16px;
}
.contact1-page .contact1-3 {
  margin-top: 30px
}
.contact1-page .contact1-3 .top .left .box {
  padding: 30px 20px
}
.contact1-page .contact1-3 .top .left .box ul li {
  margin: 10px 0
}
.contact1-page .contact1-3 .top .left .box ul li h3 {
  margin-bottom: 15px
}
.responsibility-page .responsibility-4 .top .left ul li {
  margin-top: 30px
}
.manu-4 .top ul li .box .acc .ads {
  width: 100%
}
.manu-4 .top ul li .box .acc {
  padding: 30px 20px
}
.manu-4 .top ul li .box .acc .ads p,
.manu-1 .manubox ul.manulist li .item .text p,
.manu-2 .ui.container .right p {
  height: auto;
  min-height: auto
}
.inner-banner .top h3 {
  width: 100%
}
.inner-banner .top p {
  display: none
}
.prodet-page .prodet-2 .ret .slide.acsa {
  padding-top: 40px
}
.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-img {
  width: 100%
}
.prodet-page .prodet-2 .ret .slide.acsa .content .four-t ul li .four-box .four-con {
  margin-top: 25px;
  width: 100%;
  padding-left: 0
}
.prodet-page .prodet-2 .ret .slide.acsa .content .four-b ul li {
  width: 100%
}
.prodet-page .prodet-3 .dots {
  display: none!important
}
.factory-page {
  padding: 20px 0
}
#footer .init-8:before {
  display: none
}
}

@media screen and (max-width: 450px) {
  .num1 ul li {
    width: 100%!important
  }
  .about-11 .top .right .tit2 {
    font-size: 24px
  }
  .about-11 .top .right .cona {
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px
  }
  .about-page .about-3 .info .single-facility {
    padding: 20px 15px
  }
  .about-page .about-3 .info .single-facility p {
    height: auto
  }
  .responsibility-page .responsibility-1 .top .tit3, .responsibility-page .responsibility-2 .title1 h3, .responsibility-page .responsibility-3 .top .con h4, .responsibility-page .responsibility-4 .top .left h4, .responsibility-page .responsibility-4 .top .left h4, .responsibility-page .responsibility-5 .title1 h4, .inner-page .h3.title, .manu-2 .ui.container .right .h4, .custom-2 h3.tit3, .custom-4 .title1 .tit3 {
    font-size: 24px
  }
  .custom-2 .options ul li {
    width: 50%;
  }
  .inner-page p {
    font-size: 16px!important;
    line-height: 30px!important
  }
  .responsibility-page .responsibility-3 .top .options ul li {
    width: 100%
  }
  .responsibility-page .responsibility-3 .bot ul li .box {
    padding: 20px 15px
  }
  .responsibility-page .responsibility-3 .bot ul li .box .content h5 {
    font-size: 22px
  }
  .responsibility-page .responsibility-3 .bot ul li .box .content p {
    margin-top: 15px
  }
  .responsibility-page .responsibility-3 .top .con p {
    margin-top: 15px
  }
  .responsibility-page .responsibility-5 .list .box {
    padding: 20px 15px
  }
  .manu-2 .ui.container .right p {
    height: auto
  }
  .prodet-page .prodet-1 {
    padding-top: 40px
  }
  .custom-2 .ui.container .bottom .right ul.list3 li .top {
    padding: 10px
  }
  .newdet2-page h1 {
    font-size: 24px
  }
  .contact1-page .contact1-1 .top ul li .box .acc h4 {
    font-size: 20px
  }
  .contact1-page .contact1-2 .form h3, .contact1-page .contact1-3 .top .left .title1 h3 {
    font-size: 24px
  }
  .contact1-page .contact1-3 .top .left .box ul li:last-child {
    margin-top: 20px
  }
  .contact1-page .contact1-3 .top .left .box ul li h3 {
    font-size: 20px
  }
}
@media screen and (max-width: 500px) {
  .contact1-page .contact1-3 .top .left .box ul li{
    width: 100%;
  }
}
.fvdfgd{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 390px;
    display: inline-block !important;
    vertical-align: middle;
    padding: 1px 3px 1px 21px;
}
.seoPublic .title{
  font-weight: bold;
}


@media screen and (max-width:1000px){
  .prodet-page .prodet-2 .options span{
    width: 33.333333333%;
  }
}
@media screen and (max-width:500px){
  .prodet-page .prodet-2 .options span{
    width: 50%;
  }
}
@media screen and (max-width:1470px){
  .seoPublic .title {
    margin-bottom: 1em
  }
  .responsibility-page .responsibility-1 {
    padding: 20px 0 50px
  }
  .news-page {
    padding-top: 20px!important;
  }
  .inner-page .slideBar-left h3.ac3 {
    margin: 30px 0;
  }
  .inner-page .slideBar-left h3 {
    padding-left: 0;
    margin-bottom: 30px;
  }
  .inner-page .slideBar-left .slideNav > li > a {
    padding: 15px 20px;
    padding-right: 40px;
  }
  .custom-2 {
    padding: 20px 0
  }

  .custom-4 .title1 p {
    margin-top: 20px
  }

  .custom-4 {
    padding-bottom: 60px;
  }

}

.newdet2-page .content p a {
  line-height: 1.4;
  color: #0b2239;
  font-weight: bold;
  text-transform: capitalize;
}
.swiper-button-next, 
.swiper-button-prev{
  z-index: 10;
  pointer-events:unset !important;
}
.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}