@font-face {
  font-family: 'Things';
  src: url('../fonts/ThingsRegular.woff2') format('woff2'), url('../fonts/ThingsRegular.ttf') format('truetype'), url('../fonts/ThingsRegular.eot') format('embedded-opentype'), url('../fonts/ThingsRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Things';
  src: url('../fonts/Things-Italic.woff2') format('woff2'), url('../fonts/Things-Italic.ttf') format('truetype'), url('../fonts/Things-Italic.eot') format('embedded-opentype'), url('../fonts/Things-Italic.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: 'Things';
  max-width: 1920px;
  --color: #1e3988;
  font-weight: 400;
  margin: 0 auto;
}
.container {
  width: 1500px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.lh-0 {
  line-height: 0.8;
}
.lh-1 {
  line-height: 1;
}
.lh-2 {
  line-height: 1.2;
}
.lh-3 {
  line-height: 1.3;
}
.lh-4 {
  line-height: 1.4;
}
.lh-5 {
  line-height: 1.5;
}
.lh-6 {
  line-height: 1.6;
}
.lh-7 {
  line-height: 1.7;
}
.lh-8 {
  line-height: 1.8;
}
.lh-9 {
  line-height: 1.9;
}
.lh-10 {
  line-height: 2;
}

.search-box {
    line-height: normal;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}

.search-box .close {
    width: 30px;
    height: 30px;
    background: url(../images/close.png) no-repeat;
    position: absolute;
    right: 25px;
    top: 15px;
    cursor: pointer;
}

.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;
}

#qrcode{
  position: fixed;
  right:20px;
  bottom:190px;
  width: 60px;
  height: 60px;
  background-color: var(--color);
  display: flex;
  justify-content: center;
  align-items: center; 
  z-index: 50;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
  border-radius: 50%;
}
#qrcode:hover{
  background-color:black;
}
#qrcode i{
  color: white;
  font-size: 24px;
  transition: all 0.5s;
}
#qrcode .box{
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 10px;
  padding: 15px;
  background-color: white;
  right: 120%;
  top:50%;
  transform: translateY(-50%) rotateY(-90deg);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#qrcode .box #ewm img,
#qrcode .box #ewm canvas{
  width: 100px;
  height:100px;
  border: 8px solid white; 
}
#qrcode:hover .box{
  opacity:1;
  transform: translateY(-50%) rotateY(0deg);
}
.grid-box {
  font-size: 0;
  vertical-align: top;
}
.grid-box .column {
  display: inline-block;
  font-size: 16px;
  vertical-align: top;
}
.grid-box .column {
  width: 100%;
}
.grid-box.two > .column {
  width: 50%;
}
.grid-box.three > .column {
  width: 33.33333%;
}
.grid-box.four > .column {
  width: 25%;
}
.grid-box.five > .column {
  width: 20%;
}
.grid-box.six > .column {
  width: 16.6666667%;
}
.grid-box.seven > .column {
  width: 14.285714%;
}
.grid-box.eight > .column {
  width: 12.5%;
}
.grid-box.nine > .column {
  width: 11.11111111%;
}
.grid-box.ten > .column {
  width: 10%;
}
@media screen and (max-width: 1000px) {
  .grid-box.two > .column {
    width: 50%;
  }
  .grid-box.three > .column {
    width: 33.33333%;
  }
  .grid-box.four > .column {
    width: 33.33333%;
  }
  .grid-box.five > .column {
    width: 33.33333%;
  }
}
@media screen and (max-width: 700px) {
  .grid-box.two > .column {
    width: 50%;
  }
  .grid-box.three > .column {
    width: 50%;
  }
  .grid-box.four > .column {
    width: 50%;
  }
  .grid-box.five > .column {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .grid-box.two > .column {
    width: 100%;
  }
  .grid-box.three > .column {
    width: 100%;
  }
  .grid-box.four > .column {
    width: 100%;
  }
  .grid-box.five > .column {
    width: 100%;
  }
}
.m-auto {
  margin: auto;
}
.tit-hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.tit-hover:hover {
  color: var(--color);
}
.tit-medium {
  font-weight: 500;
}
.tit-semi {
  font-weight: 600;
}
.txt-light {
  font-weight: 300;
}
.white {
  color: white;
}
.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-color {
  color: var(--color);
}
@-webkit-keyframes play_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-moz-keyframes play_scale {
  0% {
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes play_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-webkit-keyframes btn_rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-moz-keyframes btn_rotate {
  0% {
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes btn_rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.language-box .zhuyu {
  color: white;
}
.language-box .zhuyu span {
  font-size: 18px;
  margin: 0 15px;
}
.language-box .zhuyu i {
  font-size: 20px;
}
.language-box .hover-language {
  width: auto;
  position: relative;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
#header.active {
  background-color: var(--color);
  border-color: transparent;
}
#header .nav {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  height: 95px;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 20px;
  margin-right: 55px;
  -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: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: inline-block;
  height: 95px;
  line-height: 95px;
  padding: 0 15px;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover a {
  border-color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}

/*
#header .nav .ui.menu .menu-box ul.menu > li 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: auto;
  min-width: 180px;
  -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.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-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;
  white-space: nowrap;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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 {
  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;
}
*/
#header .nav .ui.menu .right .line {
  width: 2px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
}
#header .nav .ui.menu .menu-box {
  height: 100%;
}
#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 {
  color: white;
  -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;
}
#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: 0;
  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;
}
#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 .menu-menu-container>.menu>.menu-item .menu-content{
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about {
    position: unset !important;
    transform-style:unset !important;
    perspective:unset !important;
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    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);
    transform-origin: top;
    opacity: 0;
    color: black;
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about:hover .menu-content {
    transform: rotate3d(0,0,0,-90deg);
    -webkit-transform: rotate3d(0,0,0,-90deg);
    -moz-transform: rotate3d(0,0,0,-90deg);
    -ms-transform: rotate3d(0,0,0,-90deg);
    -o-transform: rotate3d(0,0,0,-90deg);
    opacity: 1
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .container {
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.08);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.08)
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one {
    width: 45%;
    padding: 0 15px
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutTitle {
    font-size: 32px;
    color: #111;
    line-height: 40px;
    margin-bottom: 15px
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutDesc {
    line-height: 24px;
    color: #666;
    margin-bottom: 20px;
    width: 80%
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutMore {
    font-size: 18px;
    line-height: initial
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .one .aboutMore:hover {
    color: var(--color)
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two {
    width: 25%;
    padding: 0 35px;
    border-left: 1px solid #F0F0F0;
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link {
    margin-top: 16px
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link:first-child {
    margin-top: 0
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link a {
    padding: 0;
    margin: 0;

    display: inline-block;
    position: relative
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--color);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .two .link a:hover:before {
    width: 100%
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .three {
    width: 30%;
    padding: 0 15px
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .three img {
    width: 100%
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .three .shipingbiaoti {
    margin-top: 10px;
    font-size: 16px
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product {
    position: unset!important;
    transform-style:unset !important;
    perspective:unset !important;
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content {
    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);
    transform-origin: top;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.08);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.08);
    color: black;
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product:hover .menu-content {
    transform: rotate3d(0,0,0,-90deg);
    -webkit-transform: rotate3d(0,0,0,-90deg);
    -moz-transform: rotate3d(0,0,0,-90deg);
    -ms-transform: rotate3d(0,0,0,-90deg);
    -o-transform: rotate3d(0,0,0,-90deg);
    opacity: 1
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left {

    /*position: relative;
    border-right: 1px solid #ccc*/
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product {
    font-size: 14px;
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product .child-title {
    font-weight: 700;

    margin-bottom: 10px
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product .child-title:hover {
    color: var(--color)
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product .child-img {
    width: auto
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul {
    /*font-size: 15px*/
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul li {
    margin-top: 10px
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .left .left-nav-product ul li a:hover {
    color: var(--color);
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right {
    width: 30%;
    padding: 0 23px 20px;
    font-size: 14px;
    top: 0;
    color: #333
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .container {
    background: #fff;
    padding: 40px 30px
}

#header .nav .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right .child-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px
}





.more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color);
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  padding: 0 25px 0 30px;
  color: white;
  border-radius: 35px;
}
.more:hover::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.more::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  left: 0;
  top: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
}
.more.white {
  background-color: white;
  color: black;
  height: 45px;
  padding: 0 20px;
}
.more.white span {
  text-transform: capitalize;
}
.more.white i {
  color: black;
}
.more.white:hover {
  color: white;
}
.more.white:hover i {
  color: white;
}
.more i {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  z-index: 5;
  border: 1px solid white;
  margin-left: 25px;
}
.more i::before {
  content: '\e791';
  font-family: 'iconfont';
  font-size: 20px;
  position: absolute;
  left: -8px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.more span {
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.more.center {
  margin: 0 auto;
}
h2.h-title {
  font-size: 52px;
  line-height: 1.2;
}
h2.h-title em {
  display: contents;
  color: var(--color);
}
#banner {
  position: relative;
  z-index: 1;
}
#banner .banner-content .share {
  position: absolute;
  left: 190px;
  bottom: 245px;
  color: white;
  z-index: 10;
}
#banner .banner-content .share a {
  display: block;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 15px;
}
#banner .banner-content .share a:last-child {
  margin-bottom: 0;
}
#banner .banner-content .share a:hover {
  color: var(--color);
}
#banner .banner-content .share a i {
  font-size: 16px;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .container {
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#banner .banner-content ul li .container .content {
  max-width: 515px;
  position: relative;
}
#banner .banner-content ul li .container .content::before {
  content: '';
  width: 30px;
  height: 2px;
  display: block;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: -30px;
  top: 20px;
}
#banner .banner-content ul li .container .content ol li h4 {
  font-size: 28px;
  line-height: 1;
}
#banner .banner-content ul li .container .content ol li span.line {
  width: 30px;
  height: 2px;
  background-color: white;
  margin: 10px 0 15px;
  display: block;
}
#banner .banner-content ul li .container .content ol li p {
  font-size: 18px;
}
#banner .banner-content .bot {
  position: absolute;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  color: white;
  z-index: 10;
}
#banner .banner-content .bot .left {
  margin-left: -30px;
}
#banner .banner-content .bot .left p {
  font-size: 18px;
  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;
}
#banner .banner-content .bot .left p::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-left: 25px;
  margin-right: 20px;
}
#banner .banner-content .bot .left .link {
  font-size: 18px;
}
#banner .banner-content .bot .left .link a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: 25px;
}
#banner .banner-content .bot .left .link a:last-child {
  margin-right: 0;
}
#banner .banner-content .bot .left .link a:hover {
  color: var(--color);
}
#banner .banner-content .bot .page {
  margin-right: -30px;
}
#banner .banner-content .bot .page i {
  font-size: 20px;
}
#banner .banner-content .bot .page .prev,
#banner .banner-content .bot .page .next{
  cursor: pointer;
    -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

#banner .banner-content .bot .page .prev:hover,
#banner .banner-content .bot .page .next:hover{
  color: var(--color);
}
#banner .banner-content .bot .page .current {
  font-size: 20px;
  letter-spacing: 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 15px;
}
#banner .banner-content .bot .page .current::before {
  content: '';
  display: block;
  width: 150px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-right: 35px;
}
#banner .banner-content .bot .page .current::after {
  content: '';
  display: block;
  width: 150px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-left: 35px;
}
.i-tag {
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color);
}
.i-tag::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--color)), color-stop(80%, var(--color)), to(transparent));
  background-image: -webkit-linear-gradient(left, var(--color) 0%, var(--color) 80%, transparent 100%);
  background-image: -moz-linear-gradient(left, var(--color) 0%, var(--color) 80%, transparent 100%);
  background-image: linear-gradient(to right, var(--color) 0%, var(--color) 80%, transparent 100%);
  margin-right: 10px;
}
#index-body {
  overflow: hidden;
}
#index-body .homepage-1 .top ul {
  margin: 0 -20% 0 -10px;
}
#index-body .homepage-1 .top ul li {
  padding: 0 10px;
}
#index-body .homepage-1 .bottom {
  padding: 30px 0 40px;
  position: relative;
}
#index-body .homepage-1 .bottom::before {
  content: '';
  display: block;
  width: 50%;
  max-width: 740px;
  height: 190px;
  background-color: #fbfbfb;
  position: absolute;
  z-index: -1;
  left: -70px;
  bottom: 0;
}
#index-body .homepage-1 .bottom ul {
  width: 420px;
}
#index-body .homepage-1 .bottom ul li {
  padding: 0 15px;
}
#index-body .homepage-1 .bottom ul li h4 {

}
#index-body .homepage-1 .bottom ul li p {

}
#index-body .homepage-1 .bottom .bot-r span.arrow {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
#index-body .homepage-1 .bottom .bot-r span.arrow:hover {
  color: var(--color);
}
#index-body .homepage-1 .bottom .bot-r span.arrow i {
  font-size: 24px;
  line-height: 1;
}
#index-body .homepage-1 .bottom .bot-r .page {
  font-size: 20px;
  letter-spacing: 2px;
}
#index-body .homepage-1 .bottom .bot-r .page .total {
  font-size: 20px;
}
#index-body .homepage-2 {
  overflow: hidden;
}
#index-body .homepage-2 .about-img {
  position: absolute;
  left: 0;
  bottom: 0;
}
#index-body .homepage-2 .h-text {
  font-size: 248px;
  line-height: 0.8;
  color: #ececee;
  text-align: right;
  width: 100%;
}
#index-body .homepage-2 .left a.play {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#index-body .homepage-2 .left a.play .i2 {
  -webkit-filter: brightness(0);
  filter: brightness(0);
  -webkit-animation: btn_rotate 8s linear infinite;
  -moz-animation: btn_rotate 8s linear infinite;
  animation: btn_rotate 8s linear infinite;
}
#index-body .homepage-2 .right ul li,
.youhua .about-1 .right ul.number-Plus.flex.flex-w li {
  margin-right: 110px;
}
#index-body .homepage-2 .right ul li:last-child,
.youhua .about-1 .right ul.number-Plus.flex.flex-w li:last-child {
  margin-right: 0;
}
#index-body .homepage-2 .right ul li h4,
.youhua .about-1 .right ul.number-Plus.flex.flex-w li h4 {
  font-size: 40px;
  line-height: 1;
}
#index-body .homepage-2 .right ul li h4 span,
.youhua .about-1 .right ul.number-Plus.flex.flex-w li h4 span {
  font-size: 18px;
}
#index-body .homepage-2 .right ul li p,
.youhua .about-1 .right ul.number-Plus.flex.flex-w li p {

 
}
#index-body .homepage-3 {
  background: url('../images/env-bg.jpg') no-repeat;
  background-size: cover;
  /*min-height: 710px;*/
      background-attachment: fixed;
}
#index-body .homepage-3 .env-icon {
  position: absolute;
  left: 55px;
  bottom: -75px;
}
#index-body .homepage-3 .left a.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: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  position: relative;
}
#index-body .homepage-3 .left a.btn img {
  -webkit-animation: btn_rotate 8s linear infinite;
  -moz-animation: btn_rotate 8s linear infinite;
  animation: btn_rotate 8s linear infinite;
}
#index-body .homepage-3 .left a.btn i {
  font-size: 30px;
  position: relative;
  z-index: 5;
}
#index-body .homepage-3 .right .line {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index-body .homepage-3 .right ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
#index-body .homepage-3 .right ul li:last-child {
  margin-bottom: 0;
}
#index-body .homepage-3 .right ul li .icon {
  width: 165px;
  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;
}
#index-body .homepage-3 .right ul li .text {
  width: -webkit-calc(100% - 165px);
  width: -moz-calc(100% - 165px);
  width: calc(100% - 165px);
}
#index-body .homepage-3 .right ul li .text h4 {
  font-size: 24px;
  font-weight: 200;
}
#index-body .homepage-3 .right ul li .text p {
  font-size: 20px;
  font-weight: 200;
}
#index-body .homepage-4 .left {
  width: 345px;
}
#index-body .homepage-4 .left a.more span {
  text-transform: capitalize;
}
#index-body .homepage-4 .left ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#index-body .homepage-4 .left ul li.active i img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
#index-body .homepage-4 .left ul li.active h4 {
  color: var(--color);
}
#index-body .homepage-4 .left ul li:last-child {
  margin-bottom: 0;
}
#index-body .homepage-4 .left ul li i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#index-body .homepage-4 .left ul li i img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
#index-body .homepage-4 .left ul li h4 {
  font-size: 24px;
  width: -webkit-calc(100% - 50px);
  width: -moz-calc(100% - 50px);
  width: calc(100% - 50px);
  padding-left: 15px;
}
#index-body .homepage-4 .right {
  width: -webkit-calc(100% - 345px);
  width: -moz-calc(100% - 345px);
  width: calc(100% - 345px);
  position: relative;
}
#index-body .homepage-4 .right .list {
  position: relative;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .homepage-4 .right .list:nth-child(n + 2) {
  position: absolute;
  z-index: -1;
  inset: 0;
}
#index-body .homepage-4 .right .list.active {
  z-index: 2;
  opacity: 1;
}
#index-body .homepage-4 .right .list ul {
  margin: 0 -10px;
}
#index-body .homepage-4 .right .list ul li {
  padding: 0 10px;
}
#index-body .homepage-4 .right .list ul li .box {
  width: 100%;

  background-color: #f7f7f7;
  border-radius: 15px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .homepage-5 .top .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;
  padding: 0 27px;
  height: 50px;
  border-radius: 35px;
  font-size: 24px;
  min-width: 115px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-right: 18px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .homepage-5 .top .btn a:last-child {
  margin-right: 0;
}
#index-body .homepage-5 .top .btn a:hover,
#index-body .homepage-5 .top .btn a.active {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
#index-body .homepage-5 .bottom .left {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
#index-body .homepage-5 .bottom .left > img {
  border-radius: 15px;
}
#index-body .homepage-5 .bottom .left .box {
  width: 100%;
  height: -webkit-calc(100% - 20px);
  height: -moz-calc(100% - 20px);
  height: calc(100% - 20px);
  padding: 30px;
  padding-right: 40px;
}
#index-body .homepage-5 .bottom .left .box span.tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  padding: 0 40px;
  height: 50px;
  background-color: white;
  border-radius: 35px;
  font-size: 22px;
}
#index-body .homepage-5 .bottom .left .box form {
  position: relative;
}
#index-body .homepage-5 .bottom .left .box form input[type="text"] {
  width: 100%;
  height: 75px;
  background-color: transparent;
  border: 1px solid white;
  padding: 0 20px;
  font-size: 22px;
  padding-right: 180px;
  border-radius: 25px;
}
#index-body .homepage-5 .bottom .left .box form input[type="text"]::-webkit-input-placeholder {
  color: white;
}
#index-body .homepage-5 .bottom .left .box form input[type="text"]:-moz-placeholder {
  color: white;
}
#index-body .homepage-5 .bottom .left .box form input[type="text"]::-moz-placeholder {
  color: white;
}
#index-body .homepage-5 .bottom .left .box form input[type="text"]:-ms-input-placeholder {
  color: white;
}
#index-body .homepage-5 .bottom .left .box form input[type="text"]::placeholder {
  color: white;
}
#index-body .homepage-5 .bottom .left .box form input[type="submit"] {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 155px;
  height: 55px;
  background-color: white;
  border: none;
  font-size: 24px;
  border-radius: 35px;
  color: black;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 57px;
}
#index-body .homepage-5 .bottom .left .box form input[type="submit"]:hover {
  background-color: var(--color);
  color: white;
}
#index-body .homepage-5 .bottom .right {
  position: relative;
  padding-left: 35px;
}
#index-body .homepage-5 .bottom .right .list {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .homepage-5 .bottom .right .list.active {
  z-index: 2;
  opacity: 1;
}
#index-body .homepage-5 .bottom .right .list:nth-child(n + 2) {
  width: -webkit-calc(100% - 35px);
  width: -moz-calc(100% - 35px);
  width: calc(100% - 35px);
  position: absolute;
  right: 0;
  top: 0;
}
#index-body .homepage-5 .bottom .right .list ul {
  margin: 0 -10px;
  height: 100%;
}
#index-body .homepage-5 .bottom .right .list ul .slick-list,
#index-body .homepage-5 .bottom .right .list ul .slick-list .slick-track,
#index-body .homepage-5 .bottom .right .list ul .slick-list .slick-track .slick-slide{
  height: 100%;
}
#index-body .homepage-5 .bottom .right .list ul li {
  padding: 10px;
  height: 100%;
}
#index-body .homepage-5 .bottom .right .list ul .slick-slide>div{
  height: 50% !important;
}
#index-body .homepage-5 .bottom .right .list ul li .box {
  height: 100%;
  background-color: #f8f8f8;
  border-radius: 15px;
}
#index-body .homepage-5 .bottom .right .list ul li .box .text {
  padding: 25px 20px 25px 30px;
}
#index-body .homepage-5 .bottom .right .list ul li .box .text h4 {
  line-height: 1.2;
}
#index-body .homepage-5 .bottom .right .list ul li .box .img {
  border-radius: 15px;
  overflow: hidden;
}
#footer {
  background: url('../images/footer-bg.jpg') no-repeat;
  background-size: cover;
}
#footer form {
  max-width: 870px;
  margin: auto;
}
#footer form ul {
  margin: 0 -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#footer form ul li {
  padding: 0 20px;
  width: 28%;
}
#footer form ul li:last-child {
  width: 44%;
  position: relative;
}
#footer form ul li:last-child input[type="text"] {
  padding-right: 50px;
}
#footer form ul li:last-child button[type="submit"] {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #333638;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  text-align: center;
  line-height: 35px;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer form ul li:last-child button[type="submit"]:hover {
  background-color: var(--color);
}
#footer form ul li:last-child button[type="submit"] i {
  font-size: 20px;
  font-weight: bold;
  margin-left: 4px;
}
#footer form ul li input[type='text'] {
  width: 100%;
  height: 50px;
  border-radius: 35px;
  background-color: #8a8a8a;
  padding: 0 20px;
  border: none;
  font-size: 16px;
  color: white;
}
#footer form ul li input[type='text']::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#footer form ul li input[type='text']:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#footer form ul li input[type='text']::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#footer form ul li input[type='text']:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#footer form ul li input[type='text']::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#footer .top {
  padding: 90px 0 80px;
  color: white;
  width: 100%;
}
#footer .top ul li h4 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 22px;
}
#footer .top ul li span {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}
#footer .top ul li.logo {
  max-width: 400px;
}
#footer .top ul li.logo .share 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;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: 20px;
}
#footer .top ul li.logo .share a:last-child {
  margin-right: 0;
}
#footer .top ul li.logo .share a:hover {
  background-color: var(--color);
  border-color: var(--color);
}
#footer .top ul li.logo .share a i {
  font-size: 16px;
}
#footer .top ul li.link span {
  line-height: 1;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .top ul li.link span:last-child {
  margin-bottom: 0;
}
#footer .top ul li.link span::before {
  content: '\e7f7';
  font-family: 'iconfont';
  margin-right: 15px;
  font-size: 20px;
}
#footer .top ul li.link span:hover {
  color: var(--color);
}
#footer .top ul li.contact {
  max-width: 370px;
}
#footer .top ul li.contact .list {
  margin-bottom: 30px;
}
#footer .top ul li.contact .list:last-child {
  margin-bottom: 0;
}
#footer .top ul li.contact .list i {
  display: block;
  width: 35px;
}
#footer .top ul li.contact .list span {
  display: block;
  width: -webkit-calc(100% - 35px);
  width: -moz-calc(100% - 35px);
  width: calc(100% - 35px);
}
#footer .bottom {
  width: 100%;
}
#footer .bottom span {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#footer .bottom span a.copyright {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
}
#footer .bottom span a.copyright:hover {
  color: var(--color);
}
#footer .bottom span img {
  width: auto;
  height: 17px;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
  opacity: 0.8;
}
@media screen and (max-width: 1700px) {
  #banner .banner-content .bot .left {
    margin-left: 0;
  }
  #banner .banner-content .bot .right {
    margin-right: 0;
  }
  #banner .banner-content .share {
    bottom: 115px;
  }
  #index-body .homepage-2 .h-text {
    font-size: 176px;
  }
}
@media screen and (max-width: 1450px) {
  .grid-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  #index-body .homepage-1 .bottom ul {
    width: 280px;
  }
  h2.h-title {
    font-size: 44px;
  }
  #index-body .homepage-2 .h-text {
    font-size: 150px;
  }
  #index-body .homepage-3 .right ul li .text p {
    font-size: 18px;
  }
  #index-body .homepage-3 .env-icon {
    max-width: 400px;
  }
}
@media screen and (max-width: 1250px) {
  #banner,
  .inner-banner {
    margin-top: 60px;
  }
  #banner .banner-content ul li .container {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #banner .banner-content .share {
    left: 15px !important;
  }
  #banner .banner-content ul li .container .content::before {
    display: none;
  }
  #banner .banner-content .bot .page .current::before,
  #banner .banner-content .bot .page .current::after {
    width: 40px;
  }
  #index-body .homepage-2 .right ul li {
    margin-right: 60px;
  }
  h2.h-title {
    font-size: 36px;
  }
  #index-body .homepage-2 .h-text {
    font-size: 120px;
  }
  #index-body .homepage-3 .right ul li .text h4 {
    font-size: 20px;
  }
  #index-body .homepage-3 .env-icon {
    max-width: 315px;
  }
  #index-body .homepage-4 {
    padding-top: 120px;
  }
  #index-body .homepage-5 .top .btn {
    margin-top: 45px;
  }
  #index-body .homepage-5 .bottom .right .list ul li .box .text {
    padding: 25px 20px;
  }
  #index-body .homepage-5 .bottom .right {
    padding-left: 15px;
  }
  .more span {
    font-size: 18px;
  }
  #footer .top ul li.link {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #banner .banner-content .share,
  #banner .banner-content .bot {
    display: none;
  }
  #banner .banner-content ul li .container .content {
    padding-left: 0;
  }
  #index-body .homepage-1 .top ul {
    margin: 0 -10px;
  }
  #index-body .homepage-2 .left {
    padding-left: 0;
  }
  h2.h-title {
    font-size: 30px;
  }
  #index-body .homepage-2 .h-text {
    font-size: 90px;
  }
  #index-body .homepage-2 .right .con {
    opacity: 1;
    padding-right: 0;
    font-size: 14px;
  }
  #index-body .homepage-2 .right ul li {
    margin-right: 15px;
  }
  #index-body .homepage-3 .left {
    width: 100%;
    margin-bottom: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .homepage-3 .left a.btn {
    margin: 0;
  }
  #index-body .homepage-3 .right {
    width: 100%;
  }
  #index-body .homepage-3 .env-icon {
    display: none;
  }
  #index-body .homepage-4 {
    padding-top: 60px;
  }
  #index-body .homepage-4 .left {
    width: 100%;
    margin-bottom: 60px;
  }
  #index-body .homepage-4 .left ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .homepage-4 .left ul li {
    width: 33.333333%;
    margin: 10px 0;
  }
  #index-body .homepage-4 .right {
    width: 100%;
  }
  #index-body .homepage-4 .right .list ul li .box h4,
  #index-body .homepage-5 .bottom .right .list ul li .box .text h4 {
    font-size: 20px;
  }
  #index-body .homepage-5 .bottom .left {
    width: 100%;
  }
  #index-body .homepage-5 .bottom .right {
    width: 100%;
    padding-left: 0;
  }
  #index-body .homepage-5 .bottom .right .list ul .slick-slide>div {
    height: 100% !important;
  }
  #index-body .homepage-5 .bottom .right .list {
    width: 100%;
  }
  #index-body .homepage-5 .bottom .right ul li .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  #index-body .homepage-5 .bottom .right ul li .box .text {
    width: 100%;
  }
  #index-body .homepage-5 .bottom .right ul li .box .img {
    width: 100%;
  }
  #footer form ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
  }
  #footer form ul li {
    padding: 10px;
    width: 50%;
  }
  #footer form ul li:last-child {
    width: 100%;
  }
  #footer .top {
    padding: 40px 0;
  }
  #footer .top ul li.contact {
    max-width: 48%;
  }
  #footer .top ul li.logo {
    max-width: 48%;
  }
  #footer .bottom span {
    text-align: center;
    margin: 0;
  }
  #banner .banner-content ul li .container .content {
    max-width: 100%;
    width: 100%;
  }
  #banner .banner-content ul li .container .content h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 700px) {
  #index-body .homepage-2 .left {
    width: 100%;
    margin-bottom: 45px;
  }
  #index-body .homepage-2 .right {
    width: 100%;
  }
  #index-body .homepage-2 .right ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #index-body .homepage-2 .h-text {
    font-size: 60px;
  }
  #index-body .homepage-3 .right ul li .text p {
    font-size: 16px;
    margin-top: 10px;
  }
  #index-body .homepage-4 .left ul li {
    width: 50%;
  }
  #index-body .homepage-4 .right .list ul li .box {
    height: 350px;
  }
  #index-body .homepage-5 .top .btn {
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #index-body .homepage-5 .top .btn a {
    padding: 0 15px;
    height: 40px;
    font-size: 18px;
    min-width: 100px;
    margin-right: 10px;
  }
  #index-body .homepage-5 .bottom .left .box form input[type="text"] {
    height: 65px;
    font-size: 18px;
    padding-right: 120px;
  }
  #index-body .homepage-5 .bottom .left .box form input[type="submit"] {
    width: 100px;
    height: 45px;
    font-size: 18px;
    line-height: 50px;
  }
  #footer .top ul li.logo h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  #banner .banner-content ul li .container .content ol,
  #index-body .homepage-1 .bottom .bot-r,
  #index-body .homepage-3 .right .line {
    display: none;
  }
  #index-body .homepage-1 .bottom ul {
    width: 100%;
  }
  #index-body .homepage-2 .right ul li {
    margin: 10px;
    margin-left: 0;
  }
  #index-body .homepage-2 .h-text {
    font-size: 44px;
  }
  #index-body .homepage-3 .right ul li .icon {
    width: 95px;
  }
  #index-body .homepage-3 .right ul li .text {
    width: -webkit-calc(100% - 95px);
    width: -moz-calc(100% - 95px);
    width: calc(100% - 95px);
  }
  h2.h-title br {
    display: none;
  }
  #index-body .homepage-3 .left a.btn {
    margin-top: 30px;
  }
  #index-body .homepage-4 .left ul li {
    width: 100%;
  }
  #index-body .homepage-4 .right .list ul li .box {
    padding: 30px;
  }
  #index-body .homepage-5 .top .btn {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #index-body .homepage-5 .top .btn a {
    margin: 10px 0;
    width: -webkit-calc((100% - 20px)/2);
    width: -moz-calc((100% - 20px)/2);
    width: calc((100% - 20px)/2);
  }
  #index-body .homepage-5 .bottom .left {
    display: none;
  }
  #footer form ul li {
    width: 100%;
  }
  #footer .top ul li.logo {
    max-width: 100%;
  }
  #footer .top ul li.contact {
    max-width: 100%;
    margin-top: 45px;
  }
}


















.inner-banner {
  color: white;
}
.inner-banner span.h2 {
  line-height: 1;
}
.inner-page .sideBarBox .sideBarTop form {
  width: 320px;
  max-width: 100%;
  height: 2.25em;
  background-color: #f2f1ec;
  border-radius: 0.25em;
}
.inner-page .sideBarBox .sideBarTop form input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 1.2em;
}
.inner-page .sideBarBox .sideBarTop form button {
  border: none;
  background-color: transparent;
  width: 3em;
}
.inner-page .sideBarBox .sideBarTop h1 {
  line-height: 1;
}
.inner-page .sideBarBox .sideBarBottom {
  border-top: 1px solid #f5f5f5;
}
.inner-page .sideBarBox .sideBarBottom .sideBarRight {
  border-left: 1px solid #f5f5f5;
}
.inner-page .sideBarBox .sideBarBottom .sideBarRight .nav {
  line-height: 1.2;
}
.inner-page .sideBarBox .sideBarBottom .sideBarRight .nav i.active {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.inner-page .sideBarBox .sideBarBottom .sideBarRight .nav li a.active {
  color: var(--color);
}
.inner-page .sideBarBox .sideBarBottom .sideBarRight .nav li a.active i {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.inner-page .sideBarBox .sideBarBottom .sideBarRight .nav li a.active i.active {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.inner-page .sideBarBox .sideBarBottom .sideBarRight .nav li .active ~ ul {
  display: block;
}
.inner-page .sideBarBox .sideBarBottom .sideBarRight .nav span.h6 {
  color: var(--color);
}
.inner-page .m-page > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: .5em;
}
.inner-page .m-page a,
.inner-page .m-page span {
  width: 2em;
  height: 2em;
  border: 1px solid #eee;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background-color: var(--color);
  color: white;
}
.product-page .product-box {
  height: 26.04166667vw;
  padding: 2% 5%;
}
.product-page .product-box .content {
  padding: 2% 4%;
  border-left: 10px solid var(--color);
  background-color: rgba(4, 99, 83, 0.2);
  color: white;
  max-width: 75%;
}
.product-page .product-box .content span.h6 {
  line-height: 1.2;
}
.product-page .product-box .content .text {
  line-height: 1.47058824;
      max-height: 80px;
    overflow: overlay;
}
.prodet-page .prodet-1 .left .slick-track {
  -webkit-transform: unset !important;
  -moz-transform: unset !important;
  -ms-transform: unset !important;
  transform: unset !important;
}
.prodet-page .prodet-1 .right {
  padding: 1% 0 5%;
}
.prodet-page .prodet-1 .right .small {
  margin: auto 0;
}
.prodet-page .prodet-1 .right .small img {
  opacity: .5;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .right .small .slick-current img {
  opacity: 1;
}
.prodet-page .prodet-1 .right .m-link {
  color: #5c5c5c;
}
.prodet-page .prodet-2 {
  color: white;
  z-index: 1;
}
.prodet-page .prodet-2 .mask {
  position: absolute;
  width: 100%;
  height: 200%;
  top: -25%;
  z-index: -1;
}
.prodet-page .prodet-2 .mask i {
  background-color: rgba(255, 255, 255, 0.1);
  width: 2px;
  height: 100%;
}
.prodet-page .prodet-2 .table {
  padding: 3.5%;
  background-color: white;
  color: black;
}
.prodet-page .prodet-2 .table table tr:nth-child(even) {
  background-color: #f4f4f4;
}
.prodet-page .prodet-2 .table table td {
  border: none;
  padding: .9em 2em;
}
.prodet-page .prodet-2 .table table td:first-child {
  width: 30% !important;
}
.prodet-page .prodet-2 .table table td:last-child {
  width: 70% !important;
}
.prodet-page .prodet-3 .text p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.prodet-page .prodet-3 .text p:before {
  content: '';
  width: 0.41176471em;
  height: 0.41176471em;
  border-radius: 100%;
  background-color: var(--color);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: .7em;
  margin-right: 1.41176471em;
}
.prodet-page .prodet-4 {
  background-color: #f8f8f8;
}
.prodet-page .prodet-4 .list .box {
  background-color: white;
  padding: 5%;
}
.prodet-page .prodet-4 .list .box a.link {
  color: var(--color);
}
.prodet-page .prodet-4 .list .box a.link i {
  font-size: 1.5em;
}
.about-page .about-1 .text {
  color: #747474;
}
.about-page .about-1 .list span.h6 {
  line-height: 1;
  color: var(--color);
  font-weight: bold;
}
.about-page .about-1 .list p {
  color: #898782;
}
.about-page .about-2 {
  color: white;
}
.about-page a.play {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.about-page a.play .i2 {
  -webkit-filter: brightness(0);
  filter: brightness(0);
  -webkit-animation: btn_rotate 8s linear infinite;
  -moz-animation: btn_rotate 8s linear infinite;
  animation: btn_rotate 8s linear infinite;
}
.about-page .about-2 .box2 {
  padding: 10%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about-page .about-2 .box2:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.about-page .about-3 .img {
  position: absolute;
  bottom: 105%;
  right: 60%;
}
.about-page .about-3 img.font-66 {
  width: 1em;
}
.about-page .about-3 .right li i {
  width: 1em;
  height: 1em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
.about-page .about-3 .right li i img {
  max-width: 100%;
  max-height: 100%;
}
.about-page .about-3 .right li span.h6 {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .right li:hover i {
  -webkit-filter: unset;
  filter: unset;
}
.about-page .about-3 .right li:hover span.h6 {
  color: var(--color);
}
.about-page .about-4 {
  background-color: #f8f9ff;
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}
.about-page .about-4 .img .play {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(30%, 30%);
  -moz-transform: translate(30%, 30%);
  -ms-transform: translate(30%, 30%);
  transform: translate(30%, 30%);
  background-color: #f8f9ff;
  border-radius: 50%;
}
.about-page .about-4 .text {
  color: #707070;
}
.sustainable-page .sustainable-1 .text {
  color: #747474;
}
.sustainable-page .sustainable-1 .img {
  min-height: 31.77083333vw;
  color: white;
  padding: 5% 7.5% 10%;
}
.sustainable-page .sustainable-1 .img .text {
  color: inherit;
}
.sustainable-page .sustainable-1 .img .play {
  position: absolute;
  right: 17.5%;
  bottom: 0;
  -webkit-transform: translate(0, 80%);
  -moz-transform: translate(0, 80%);
  -ms-transform: translate(0, 80%);
  transform: translate(0, 80%);
}
.sustainable-page .sustainable-1 span.h1 {
  line-height: 1;
  margin-top: auto;
  opacity: .05;
}
.sustainable-page .sustainable-2 .text {
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}
.sustainable-page .sustainable-2 .list {
  z-index: 1;
}
.sustainable-page .sustainable-2 .list span.h1 {
  line-height: .8;
  opacity: .05;
  top: -2%;
  left: 0;
  z-index: -1;
}
.sustainable-page .sustainable-2 .list li {
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 8.5%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.sustainable-page .sustainable-2 .list li i {
  width: 1em;
  height: 1em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.sustainable-page .sustainable-2 .list li i img {
  max-width: 100%;
  max-height: 100%;
}
.sustainable-page .sustainable-2 .list li span.h6 {
  line-height: 1.2;
}
.sustainable-page .sustainable-2 .list li .text {
  color: #808080;
}
.sustainable-page .sustainable-2 .list li:hover {
  background-color: var(--color);
  color: white;
}
.sustainable-page .sustainable-2 .list li:hover i {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.sustainable-page .sustainable-2 .list li:hover .text {
  color: inherit;
}
.sustainable-page .sustainable-3 .list .right {
  padding: 0 6%;
}
.sustainable-page .sustainable-4 {
  background-color: #f7f7f7;
}
.sustainable-page .sustainable-4 .list {
  -webkit-filter: drop-shadow(0 16px 10px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 16px 10px rgba(0, 0, 0, 0.2));
  overflow: hidden;
}
.sustainable-page .sustainable-4 .list .slick-list {
  overflow: unset;
}
.sustainable-page .sustainable-4 .list li img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.sustainable-page .sustainable-4 .list li:hover img {
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  transform: translateY(-10%);
}
.sustainable-page .sustainable-5 {
  color: white;
}
.sustainable-page .sustainable-5 .text {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}
.sustainable-page .sustainable-5 span.tag {
  color: inherit;
}
.innovation-page .innovation-1 {
  background-color: white;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center top;
}
.innovation-page .innovation-1:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: inherit;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.innovation-page .innovation-2 {
  background-color: #f6f7fc;
}
.innovation-page .innovation-2 .left .slickBtn {
  gap: 1em;
}
.innovation-page .innovation-2 .left .slickBtn div {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.innovation-page .innovation-2 .left .slickBtn div i {
  font-size: 1em;
}
.innovation-page .innovation-2 .left .slickBtn div:hover {
  background-color: black;
}
.innovation-page .innovation-2 .right ul {
  filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.05)) 
}
.innovation-page .innovation-2 .right li .box {
  padding: 15% 10% 0;
  background-color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.innovation-page .innovation-2 .right li hr {
  width: 34px;
  height: 4px;
  background-color: var(--color);
  margin-left: 0;
  margin-right: auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.innovation-page .innovation-2 .right li .text {
  margin-bottom: auto;
}
.innovation-page .innovation-2 .right li .num {
  line-height: .7;
  opacity: .1;
  text-align: right;
  position: relative;
  right: -17%;
  bottom: 0;
}
.innovation-page .innovation-2 .right li .box:hover {
  background-color: var(--color);
  color: white;
}
.innovation-page .innovation-2 .right li .box:hover hr {
  background-color: white;
}
.innovation-page .innovation-3 {
  color: white;
      /*background-size: 100%;*/
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.innovation-page .innovation-3 .left {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.innovation-page .innovation-3 .right .list li {
  padding: 7.5% 6%;
  background-color: rgba(255, 255, 255, 0.2);
}
.innovation-page .innovation-4 .img {
  width: 130%;
}
.contact-page .contact-1 .share {
  line-height: 1;
}
.contact-page .contact-1 .box2 {
  background-color: white;
}
.contact-page .contact-1 .box2 .text {
  color: #858585;
}
.contact-page .contact-1 .box2 input,
.contact-page .contact-1 .box2 textarea {
  width: 100%;
  padding: .6em .8em;
  border-radius: 0.70588235em;
  border: none;
  background-color: #f7f7f7;
}
.contact-page .contact-1 .box2 textarea {
  height: 7.05882353em;
}
.contact-page .contact-1 .box2 button {
  height: 2.70588235em;
  padding: 0 2em;
  border: none;
}
.contact-page .contact-2 {
  background-color: #fcfcfc;
}
.contact-page .contact-2 span.icon {
  line-height: 1;
  color: var(--color);
}
.contact-page .contact-2 hr {
  background-color: #c1cbd5;
  position: relative;
  overflow: unset;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-2 hr:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: inherit;
}
.contact-page .contact-2 span.h6 {
  line-height: 1.2;
}
.contact-page .contact-2 a.link {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  border: 1px solid #efefef;
  background-color: white;
  margin-left: auto;
  position: relative;
  left: 4%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-2 li {
  padding: 8% 4% 0;
  position: relative;
  z-index: 1;
}
.contact-page .contact-2 li:before {
  content: '';
  background-image: url("../images/contact-2-bg.png");
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.contact-page .contact-2 li:hover hr {
  background-color: var(--color);
}
.contact-page .contact-2 li:hover a.link {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.contact-page iframe {
  border: none;
}
.pack-page .pack-1 .nav a {
  background-color: #cacaca;
}
.pack-page .pack-1 .nav a.active {
  background-color: var(--color);
}
.pack-page .pack-1 span.h6 {
  color: var(--color);
}
.pack-page .pack-2 .list {
  padding: 0 14%;
  overflow: hidden;
  position: relative;
}
.pack-page .pack-2 .list .content {
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  z-index: 1;
  padding: 5%;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.pack-page .pack-2 .list .content span.tag {
  color: inherit;
}
.pack-page .pack-2 .list .content span.h2 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pack-page .pack-2 .list .slick-list {
  overflow: unset;
}
.pack-page .pack-2 .list li:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(43, 54, 37, 0.75);
  transition: .5s;
}
.pack-page .pack-2 .list .slick-slide li {
  -webkit-transform: scale(0.8) translateX(20%);
  -moz-transform: scale(0.8) translateX(20%);
  -ms-transform: scale(0.8) translateX(20%);
  transform: scale(0.8) translateX(20%);
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
  filter: blur(3px);
}
.pack-page .pack-2 .list .slick-slide.slick-current {
  z-index: 1;
}
.pack-page .pack-2 .list .slick-slide.slick-current.slick-slide li {
  -webkit-transform: scale(1) translateX(0) !important;
  -moz-transform: scale(1) translateX(0) !important;
  -ms-transform: scale(1) translateX(0) !important;
  transform: scale(1) translateX(0) !important;
  filter: unset;
}
.pack-page .pack-2 .list .slick-slide.slick-current li:before {
  opacity: 0;
}
.pack-page .pack-2 .list .slick-slide.slick-current li .content {
  opacity: 1;
}
.pack-page .pack-2 .list .slick-slide.slick-current + div li {
  -webkit-transform: scale(0.8) translateX(-20%);
  -moz-transform: scale(0.8) translateX(-20%);
  -ms-transform: scale(0.8) translateX(-20%);
  transform: scale(0.8) translateX(-20%);
}
.pack-page .pack-2 .list .slickBtn div {
  width: 14%;
  height: 100%;
  top: 0 !important;
  -webkit-transform: unset !important;
  -moz-transform: unset !important;
  -ms-transform: unset !important;
  transform: unset !important;
  background-color: transparent;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 20% 0;
}
.pack-page .pack-2 .list .slickBtn div.prev {
  left: 0;
  -webkit-writing-mode: sideways-rl;
  -ms-writing-mode: sideways-rl;
  writing-mode: sideways-rl;
}
.pack-page .pack-2 .list .slickBtn div.next {
  right: 0;
  left: auto !important;
  -webkit-writing-mode: sideways-lr;
  -ms-writing-mode: sideways-lr;
  writing-mode: sideways-lr;
}
.pack-page .pack-3 {
  background-color: #f8f8f8;
}
.pack-page .pack-3 .list .box {
  background-color: white;
  padding: 5%;
}
.pack-page .pack-3 .list .box a.link {
  color: var(--color);
}
.pack-page .pack-3 .list .box a.link i {
  font-size: 1.5em;
}
.pack-page .pack-4 {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.pack-page .pack-4 span.h6 {
  line-height: 1.2;
  color: var(--color);
}
.pack-page .pack-4 span.h6:before {
  content: '';
  width: 0.35em;
  height: 0.35em;
  background-color: var(--color);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 100%;
  margin-top: .4em;
}
.pack-page .pack-4 .text {
  color: #525252;
}
.pack-page .pack-4 .text strong {
  color: black;
}
.pack-page .pack-4 .left ul {
  grid-template-columns: 52% 44%;
  grid-auto-rows: auto;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.pack-page .pack-4 .left li {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
}
.pack-page .pack-4 .left li:nth-child(2) {
  grid-row: span 2;
  position: relative;
  -webkit-transform: translateY(25%);
  -moz-transform: translateY(25%);
  -ms-transform: translateY(25%);
  transform: translateY(25%);
}
.news-page time {
  color: #b4b4b4;
}
.news-page .text {
  color: #6c6c6c;
}
.news-page .list li {
  background-color: #f8f9ff;
  padding: 5%;
}
.newdet-page .m-link em {
  opacity: .5;
}
.newdet-page .form ul li:first-child {
  grid-column: span 3;
}
.newdet-page .form ul li label {
  display: block;
  color: #666;
  margin-bottom: 1em;
}
.newdet-page .form ul li input,
.newdet-page .form ul li textarea {
  width: 100%;
  padding: .5em;
  border: 1px solid #eee;
}
.newdet-page .form ul li textarea {
  height: 8em;
}
.newdet-page .form ul li button {
  border: none;
}
@media screen and (max-width: 1250px) {
  .sustainable-page .sustainable-1 .img {
    min-height: 40vw;
  }
  .innovation-page .innovation-4 .img {
    width: 100%;
  }
  .contact-page iframe {
    height: 38vw;
  }
}
@media screen and (max-width: 1000px) {
  .about-page .about-3 .img {
    display: none;
  }
  .about-page .about-2 .box2 {
    padding: 7%;
  }
  .innovation-page .innovation-3 .left {
    position: static;
  }
  .inner-page .sideBarBox .sideBarBottom .sideBarRight {
    display: none;
  }
  .pack-page .pack-4 .left li:nth-child(2) {
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
  .product-page .product-box {
    height: 40vw;
  }
  .sustainable-page .sustainable-1 .img .play {
    right: 16.5%;
  }
  .play {
    width: 60px;
  }
  .sustainable-page .sustainable-3 .list .right {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 700px) {
  .font-24 {
    font-size: 16px;
  }
  .sideBarTop {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sideBarTop .left {
    width: 100%;
    margin-bottom: 5%;
  }
  .sideBarTop .right {
    width: 100%;
  }
  .inner-page .sideBarBox .sideBarTop form {
    width: calc(100% - 125px);
  }
  .font-32 {
    font-size: 20px;
  }
  .newdet-page .form ul li:first-child {
    grid-column: span 1;
  }
  .newdet-page .form ul,
  .contact-page .contact-2 .list ul {
    grid-template-columns: 1fr;
  }
  .about-page .about-4 .img .play {
    width: 7em;
    height: 7em;
  }
  .about-page .about-1 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-1 .list ul li {
    width: 48%;
  }
  .contact-page iframe,
  .product-page .product-box,
  .sustainable-page .sustainable-1 .img {
    height: 70vw;
  }
  .pack-page .pack-2 .list .content span.h2 {
    font-size: 16px;
  }
  .pack-page .pack-2 .list .slickBtn div {
    font-size: 14px;
  }
  .pack-page .pack-2 .list .slickBtn div i {
    font-size: 1em;
  }
  .more i {
    font-size: 1.2em;
  }
  .more {
    height: 2.6em;
  }
  .product-page .product-box .content {
    max-width: 100%;
  }
  .sustainable-page .sustainable-1 .img .play {
    right: 12%;
  }
}


.inner-page .sideBarBox .sideBarBottom .sideBarRight .post ul li img{
      min-height: 75px;
    width: 100%;
    object-fit: cover;
}

.prodet-page.inner-page .prodet-1 .box .left ul li a img,
.prodet-page .prodet-1 .right .small .slick-current img {
    background-color: #f1f1f1;
}

.prodet-page .prodet-1 .right .small img{
      border: 1px solid #ccc;
}

.prodet-1 .box .left {
    position: sticky;
    top: 120px;
}

.inner-page .sideBarBox .sideBarBottom .list ul li a.img-box {
    background-color: #f1f1f1;
}

.inner-page .sideBarBox .sideBarBottom .list ul li .img-box:hover img{
  -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    transform: translate3d(10px, 5px, 15px);
    filter: drop-shadow(0.8rem 0.5rem 3px rgba(0,0,0,0.1));
}

.down {
    background: #f2f1ec;
    border-radius: 0.25em;
}

.ny-video {
    position: relative;
}
.ny-video .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
        z-index: 1;
}

.ny-video:after {
    content: "";
    position: absolute;
    background: rgba(0,0,0,.2);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


.sideBarLeft .list dl dd .top .title {
    color: var(--color);
    font-weight: bold;
        text-transform: capitalize;
}




.shaixuan .cp {
    border: 1px solid var(--color);
    border-radius: 5px;
    margin-bottom: 5px;
    color: var(--color);
    position: relative;
}
.shaixuan .cp ul {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: white;
  padding: 10px;
  display: none;
  color: black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-top: 1px;
  z-index: 1;
}
.shaixuan .cp:hover> ul {
  display: block;
}
.shaixuan .cp ul li a {
  padding: .5em 0;
  display: block;
  border-bottom: 1px solid #eee;
}
.shaixuan .cp ul li a:hover {
  border-color: var(--color);
}
.pack-page .pack-1 .ret {
  position: relative;
}
#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .news-one {
    width: 70%;
}

.prodet-page .prodet-2 .left .faqC ul li .box .faqTitle{
    cursor: pointer;
    position: relative;
    background: #fff;
    border-radius: 10px;
    color: #000;
}
.prodet-page .prodet-2 .left .faqC ul li .box .faqContent{
    display: none;
}
.prodet-page .prodet-2 .left .faqC ul li .box .faqContent p{
  display: inline;
}
.prodet-page .prodet-2 .left .faqC ul li .box .faqTitle i{
  position: absolute;
  right: 20px;
}
.pack-page {
  word-break: break-word;
}


.pack-page .pack-1 .ret .right .text p i {
    width: 15px;
}


.about-13 .box .left {
    position: sticky;
    top: 150px;
}

.about-13 .box .right .list ul li {
    border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1000px) {
  .prodet-1 .box .left {
    position: static;
  }
  .about-13 .box .left {
    position: static;
  }
}

/*设计*/

#header .nav .menu-menu-container>.menu>.menu-item.menu-about .menu-content .news-one .left img {
    width: 100%;
    object-fit: cover;
    max-height: 300px;
}

.inner-page .sideBarBox .sideBarBottom .sideBarLeft .news-top .left img {
    width: 100%;
    object-fit: cover;
    max-height: 450px;
}
.hover-text-w {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.hover-text-w:hover,
.hover-text-w:hover .text {
    color: #fff;
}

.hover-bg:hover {
    background-color: var(--color) !important;
}
.about-1 .box .left,
.about-3 .box .left {
    position: sticky;
    top: 100px;
}


.about-new2 .Tag {
  font-style: italic;
}
.about-new2 .arrows span.arrow {
  width: 2.75em;
  height: 2.75em;
  line-height: 2.75;
  background-color: var(--color);
  color: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.about-new2 .arrows span.arrow:hover {
  background-color: #000000;
}
.about-new2 .right li .img {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-new2 .right .slick-current li .img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}


@media (max-width: 1000px) {

  .about-new2 .right ul {
    margin: -10px;
  }
  .about-new2 .right li {
    padding: 10px;
  }
  .about-new2 .right li .img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.about-factory .Tit span {
  display: inline-block;
  background-color: var(--color);
  color: #FFFFFF;
  padding: 0 .5em;
}
.about-factory .list .img-box {
  border: 2px solid #FFFFFF;
}

.seoPublic .title{
  font-size: 36px;
}

.seoPublic .Auxil-news .list ul li .content div.h6{
  font-size: 24px;
}
.seoPublic .Auxil-news .list ul li .content p{
   font-size: 18px;
}
.seoPublic .Auxil-news .list ul li .content{
  margin-top: 0;
}
.cpdd .sideBarRight {
    position: sticky;
    top: 100px;
}
/*设计-end*/