#Pop_UpsBtn {
  display: none !important;
}
#ewm canvas,
#ewm img {
  width: 100%;
  display: block;
}
.fd {
  text-transform: uppercase;
}
:root {
  --px100: calc(4.1667vw + 20px);
  --px145: calc(6.5vw + 20px);
  --px140: calc(6.25vw + 20px);
  --px110: calc(4.65vw + 20px);
  --px50: calc(1.5625vw + 20px);
  --px60: calc(2.0925vw + 20px);
  --px80: calc(3.1267vw + 20px);
  --px130: calc(5.75vw + 20px);
  --px120: calc(5.21vw + 20px);
  --px170: calc(7.8vw + 20px);
  --px70: calc(2.6067vw + 20px);
  --px90: calc(3.65vw + 20px);
  --px8: calc(0.258vw + 3px);
  --px40: calc(1.0455vw + 20px);
  --color1: #feb33f;
  --color: #61d2dc;
  --fm: 'TikTokSans';
}
:root {
  --ft50: calc(1.88vw + 14px);
  --ft48: calc(1.77vw + 14px);
  --ft40: calc(1.3555vw + 14px);
  --ft44: calc(1.56vw + 14px);
  --ft46: calc(1.67vw + 14px);
  --ft18: calc(0.2085vw + 14px);
  --ft16: calc(0.1055vw + 14px);
  --ft24: calc(0.525vw + 14px);
  --ft26: calc(0.625vw + 14px);
  --ft20: calc(0.315vw + 14px);
  --ft30: calc(0.8345vw + 14px);
  --ft32: calc(0.9385vw + 14px);
  --ft34: calc(1.0385vw + 14px);
  --ft36: calc(1.1465vw + 14px);
  --ft38: calc(1.2465vw + 14px);
  --ft60: calc(2.3955vw + 14px);
  --ft62: calc(2.4955vw + 14px);
}
#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from1 {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from1 h4 {
  font-size: var(--ft18);
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from1 form {
  margin-top: 40px;
}
#pups_from1 i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from1 i.close::after,
#pups_from1 i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from1 i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from1 i.close:hover {
  background: var(--color);
}
#pups_from1 i.close:hover::before,
#pups_from1 i.close:hover::after {
  background: white;
}
#pups_from1 ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from1 ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from1 ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from1 ul li input,
#pups_from1 ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}
#pups_from1 ul li input:focus,
#pups_from1 ul li textarea:focus {
  border-color: var(--color);
}
#pups_from1 ul li textarea {
  height: 80px;
}
#pups_from1 ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from1 ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from1 ul li:last-child {
  margin-bottom: 0;
}
.right_nav_list {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 10;
}
.right_nav_list ul li {
  margin-top: 2px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  padding: 0;
  position: relative;
  color: #fff;
  background: var(--color);
  border: 1px solid #fff;
}
.right_nav_list ul li .iImg {
  width: 24px;
  height: 32px;
}
.right_nav_list ul li .text {
  padding: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 24px;
}
.right_nav_list ul li .cont {
  position: absolute;
  left: -150px;
  top: 0;
  width: 150px;
  min-height: 100%;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  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);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  overflow: hidden;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.right_nav_list ul li .cont #ewm {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px;
  border: 1px solid #ccc;
}
.right_nav_list ul li:hover {
  background-color: #000;
}
.right_nav_list ul li:hover .cont {
  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;
}
@media (max-width: 500px) {
  .right_nav_list {
    right: 5px;
    bottom: 150px;
  }
  .right_nav_list ul li {
    width: 38px;
    height: 38px;
    margin-top: 5px;
  }
  .right_nav_list ul li .more_cont {
    font-size: 16px;
  }
  .right_nav_list ul li .iImg {
    width: 16px;
    height: 24px;
  }
}
iframe {
  display: block;
  width: 100%;
}
#Pop_UpsBtn {
  z-index: 20;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: fixed;
  border-radius: 100%;
  background: var(--color);
  color: white;
  right: 2%;
  bottom: 40%;
  font-size: 24px;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#Pop_UpsBtn:hover {
  background: #889aff;
}
*::-webkit-scrollbar-thumb {
  background-color: #222;
}
b,
strong {
  font-weight: bold;
}
html,
body {
  position: relative;
  max-width: 1920px;
  margin: auto;
}
body {
  overflow-x: hidden;
  position: relative;
  font-family: 'Source Han Sans CN';
  font-weight: 400;
  margin: 0 auto;
  color: #000000;
  font-size: 16px;
}
#ewm img,
#ewm canvas {
  display: block;
  width: 100%;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100%;
  height: auto;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
}
table tbody td,
table tbody th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}
table tbody tr {
  width: auto !important;
  height: auto !important;
}
table tbody tr:nth-child(even) {
  background: #eee;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: none !important;
  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: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.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;
  -o-object-fit: contain;
  object-fit: contain;
  width: 220px;
}
#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%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-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: #ff9800;
  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%);
  -o-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;
  border: 1px solid #fff;
}
#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: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: #ff9800;
}
#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%) rotate(45deg);
  -o-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%) rotate(-45deg);
  -o-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;
}
.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;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 18;
  background: #fff;
}
#header .pp1_btn {
  cursor: pointer;
  width: 53px;
  height: 67px;
  background: #028452;
  border-radius: 0 0 10px 10px;
  position: absolute;
  right: 0;
  top: -14px;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 12px;
  z-index: 44;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#header .pp1_btn:hover {
  background: #000;
}
#header .pp1_btn img {
  width: 34px;
  cursor: pointer;
}
#header a {
  display: block;
}
#header img {
  display: block;
  width: 100%;
}
#header > .nav {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  background-color: #fff;
  box-shadow:  0 0 5px rgba(0, 0, 0, 0.5);
}
#header > .nav .f-top {
  background-color: #c10015;
  color: #000;
  padding: 12px 0;
}
#header > .nav .f-top .container {
  display: flex;
}
#header > .nav .f-top .share {
  margin-left: auto;
}
#header > .nav .f-top .share li {
  margin-left: 20px;
}
#header > .nav .f-top .share li a {
  font-size: 16px;
  font-weight: 400;
}
#header > .nav > .menu .menu-box {
  /*padding: 20px 0 21px;*/
  padding: 10px 0 10px;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  background: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}
#header > .nav > .menu .menu-box .left {
  position: relative;
}
#header > .nav > .menu .menu-box .left .logo {
  position: relative;
  display: block;
  z-index: 1;
}
#header > .nav > .menu .menu-box .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
#header > .nav > .menu .menu-box .menu_c {
  text-align: center;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-left: auto;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container {
  z-index: 2;
  width: 100%;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu {
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
  display: inline-block;
  position: relative;
  margin-left: calc(1.56vw + 14px);
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item.menu-item-has-children > a::after {
  margin-left: 0;
  content: "\e768";
  position: relative;
  font-family: "iconfont" !important;
  top: 3px;
  left: 0;
  font-size: 20px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:first-child {
  margin-left: 0;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > a,
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item.active > a {
  color: var(--color1);
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > a::before,
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item.active > a::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > .sub-menu {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  padding: 4px 0 4px 0;
  text-align: left;
  line-height: 1.2;
  position: relative;
  font-size: calc(0.2085vw + 14px);
  text-transform: capitalize;
  color: #000;
  font-weight: 400;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a i {
  font-size: 12px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -8px;
  left: 0;
  background: var(--color);
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: -1;
  opacity: 1;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  width: auto;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  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;
  -o-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;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  border-radius: 2px;
  background-color: #f7f7f7;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item {
  color: #000;
  position: relative;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item a {
  white-space: nowrap;
  font-size: 16px;
  padding: 8px 12px;
  text-align: left;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(189, 189, 189, 0);
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item:hover > a {
  background-color: #000;
  color: #fff;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item .sub-menu {
  left: 100%;
  top: 0;
  min-width: 120px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item:hover .sub-menu {
  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-box .right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
#header > .nav > .menu .menu-box .right .h-box {
  margin-right: 12px;
  width: calc(4.1667vw + 93px);
  height: 40px;
  background: #f2f2f2;
  border-radius: 20px;
}
#header > .nav > .menu .menu-box .right .h-box form {
  position: relative;
}
#header > .nav > .menu .menu-box .right .h-box form input[type="text"] {
  padding-left: 16px;
  border: none;
  width: calc(4.1667vw + 93px);
  height: 40px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 20px;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  color: rgba(51, 51, 51, 0.2);
}
#header > .nav > .menu .menu-box .right .h-box form input[type="text"]::placeholder {
  font-weight: 500;
  font-size: 14px;
  color: rgba(51, 51, 51, 0.2);
}
#header > .nav > .menu .menu-box .right .h-box form input[type="submit"] {
  border: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../images/hh2.png) no-repeat center;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#header > .nav > .menu .menu-box .right .h-box form input[type="submit"]:hover {
  background: url(../images/hh2.png) no-repeat center #000;
}
#header > .nav > .menu .menu-box .right .search {
  cursor: pointer;
  margin-left: var(--ft60);
}
#header > .nav > .menu .menu-box .right .pp_btn {
  line-height: 1;
  background: #860600;
  border-radius: 20px;
  color: #fff;
}
#header > .nav > .menu .menu-box .right .lang_cont {
  margin-left: var(--ft30);
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont {
  border-radius: 50%;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .textC {
  font-weight: 400;
  font-size: var(--ft18);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right_img{
  filter: brightness(1)  invert(1);
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .textC img {
  margin-left: 10px;
  width: 24px;
  height: 24px;
}

#header > .nav > .menu .menu-box .right .lang_cont .c_cont .textC .text {
  margin: 4px 0 0 10px;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .textC i {
  margin-left: 6px;
}
#header > .nav > .menu .menu-box .right .lang_cont .lang {
  padding-top: 5px;
}
#header > .nav > .menu .menu-box .right .open_btn {
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  text-align: center;
  color: #fff;
  margin-left: 26px;
  background-color: #c10015;
  min-width: 150px;
  padding: 10px;
}
#header > .nav > .menu .menu-box .right .open_btn p {
  position: relative;
}
#header > .nav > .menu .menu-box .right .open_btn .img {
  width: 19px;
  height: 19px;
  margin-left: 10px;
}
#header > .nav > .menu .menu-box .right .open_btn:hover {
  background-color: #000;
}
#header > .nav .lang_cont {
  display: inline-block;
  position: relative;
  cursor: pointer;
  z-index: 2;
}
#header > .nav .lang_cont:hover .lang {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
#header > .nav .lang_cont .lang {
  overflow-y: auto;
  max-height: 400px;
  width: 150px;
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  border-bottom: 3px solid #333333;
}
#header > .nav .lang_cont .lang li a {
  display: block;
  background: #f7f7f7;
  padding: 5px 10px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-align: left;
}
#header > .nav .lang_cont .lang li a:hover {
  background-color: #000;
  color: #fff;
}
#header > .nav .lang_cont .lang li a:hover em {
  color: #fff;
}
#header > .nav .lang_cont .lang li a img {
  display: inline;
  width: 20%;
  margin-top: 4px;
}
#header > .nav .lang_cont .lang li a em {
  display: inline;
  font-size: 16px;
  margin-left: 10px;
  color: #000;
}
#header.active > .nav {
  /*background-color: rgba(0, 0, 0, 0.4);*/
}
@keyframes ks2 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}
.colorF {
  color: #fff;
}
.flexWrap {
  display: flex;
  flex-wrap: wrap;
}
.flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexAC {
  display: flex;
  align-items: center;
}
.flexBetween {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.text-L {
  text-align: left;
}
.text-C {
  text-align: center;
}
.text-R {
  text-align: right;
}
.t_1 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.italic {
  font-style: italic;
}
.container {
  width: 1790px;
  padding: 0 15px;
}
.gy_btn1 {
  display: inline-block;
  font-weight: 400;
  font-size: var(--ft18);
  color: #57b0bd;
  height: 54px;
  border-radius: 4px;
  border: 1px solid #57b0bd;
  line-height: 54px;
  padding: 0 var(--ft26);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.gy_btn1 img {
  margin-left: var(--ft18);
  vertical-align: middle;
}
.gy_btn1:hover {
  background-color: var(--color);
  border-color: var(--color);
  color: #fff;
}
#banner {
  position: relative;
  color: #fff;
}
#banner i {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--ft60);
  color: #b9b9b9;
  z-index: 6;
  cursor: pointer;
}
#banner i:hover {
  color: var(--color);
}
#banner .banner-l {
  left: 20px;
}
#banner .banner-r {
  right: 20px;
}
#banner .swiper-slide {
  position: relative;
}
#banner .swiper-slide .banner-t {
  position: absolute;
  z-index: 5;
  top: 60%;
  transform: translateY(-50%);
  left: 4.5%;
}
#banner .swiper-slide .banner-t .bt1 {
  font-weight: 400;
  font-size: calc(0.8345vw + 14px);
  color: #000;
  line-height: 1;
    margin-top: var(--ft20);
  margin-bottom: var(--ft50);
}
#banner .swiper-slide .banner-t .bt2 {
  line-height: 1;
  font-weight: 500;
  font-size: var(--ft60);
  color: #000;

}
#banner .banner-c1 {
  position: absolute;
  top: 34%;
  left: 90px;
  width: 70px;
  height: 70px;
  background: linear-gradient(54deg, #c2191b 0%, #480001 100%);
  border-radius: 50%;
  z-index: 5;
}
#banner .banner-c2 {
  position: absolute;
  left: 67px;
  bottom: 93px;
  width: 116px;
  height: 116px;
  background: linear-gradient(54deg, #c2191b 0%, #480001 100%);
  border-radius: 50%;
  z-index: 5;
}
#banner .banner-c3 {
  position: absolute;
  top: 69px;
  left: 50%;
  transform: translateX(-50%);
  width: 87px;
  height: 87px;
  background: linear-gradient(54deg, #c2191b 0%, #480001 100%);
  border-radius: 50%;
  z-index: 5;
}
#banner .sw1_fy {
  z-index: 3;
  position: absolute;
  bottom: var(--px60);
  left: 8.75%;
  font-family: Unbounded;
  font-weight: 400;
  font-size: calc(0.525vw + 14px);
  color: #B7282D;
  font-style: italic;
  display: flex;
  align-items: end;
  line-height: 1;
}
#banner .sw1_fy .sw1_bots {
  display: flex;
  margin-bottom: 6px;
}
#banner .sw1_fy .sw1_bots p {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 9px;
  height: 7px;
  background: #B7282D;
  opacity: 0.4;
  margin-right: 6px;
}
#banner .sw1_fy .sw1_bots p.active {
  width: 41px;
  height: 7px;
  background: #B7282D;
  opacity: 1;
}
#banner .sw1_fy .sw1_bots p:last-of-type {
  margin-right: 0;
}
#banner .sw1_fy .sw1_bots p:first-of-type {
  margin-left: 13px;
}
#banner .sw1_btn {
  z-index: 4;
  position: absolute;
  right: var(--px110);
  bottom: var(--px60);
  display: flex;
}
#banner .sw1_btn i {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  width: 37px;
  height: 37px;
  border: 1px solid #FFFFFF;
  font-size: 16px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
#banner .sw1_btn i:last-of-type {
  border-left: none;
}
#banner .sw1_btn i:hover {
  background: #fff;
  color: var(--color);
}
#banner .swiper-slide {
  position: relative;
}
#banner .swiper-slide .banner-op1 {
  position: relative;
  text-transform: uppercase;
}
#banner .swiper-slide .banner-op2 {
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
#banner .swiper-slide .banner-bg {
  position: absolute;
  bottom: calc(-1.3555vw - 14px);
  right: 0;
  width: 59.9vw;
}
#banner .swiper-slide .banner-btns {
  display: flex;
  align-items: center;
}
#banner .swiper-slide .banner-btns .p-v {
  width: 34px;
  height: 34px;
  background: #c30d23;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 33px;
  position: relative;
}
#banner .swiper-slide .banner-btns .p-v img {
  position: relative;
  z-index: 3;
}
#banner .swiper-slide .banner-btns .p-v::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #c30d23;
}
#banner .swiper-slide .banner-btns .p-v::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  transform-origin: center;
  margin-top: -26px;
  margin-left: -26px;
  background: #c30d23;
  border-radius: 26px;
  opacity: 0.2;
  animation: ks2 2s linear infinite;
}
#banner .banner-box {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}
#banner .banner-box img {
  position: relative;
  z-index: 2;
  top: 50%;
  transform-origin: right center;
  transform: translate(-37%, -50%);
}
#banner .banner-box .banner-box-after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 846px;
  height: 846px;
  transform-origin: center;
  background: linear-gradient(54deg, #c2191b 0%, #480001 100%);
  border-radius: 100%;
  transform: translateX(20%);
}
#banner .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: var(--px70);
  transform: translateX(-50%);
  display: flex;
  color: #fff;
}
#banner .swiper-pagination .swiper-pagination-pre,
#banner .swiper-pagination .swiper-pagination-next {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .swiper-pagination .swiper-pagination-pre:hover,
#banner .swiper-pagination .swiper-pagination-next:hover {
  color: #f2a11d;
}
#banner .swiper-pagination .swiper-pagination-pre:hover span,
#banner .swiper-pagination .swiper-pagination-next:hover span {
  background: #f2a11d;
}
#banner .swiper-pagination .swiper-pagination-pre span,
#banner .swiper-pagination .swiper-pagination-next span {
  width: 77px;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .swiper-pagination .swiper-pagination-dots {
  display: flex;
  align-items: center;
}
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-line {
  width: 2px;
  height: 47px;
  background: #FFFFFF;
  opacity: 0.4;
}
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #b9b9b9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: var(--px70);
}
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot::after {
  content: '';
  -webkit-transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  width: 45px;
  height: 45px;
  background: url(../images/b11.png) no-repeat center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: circle(0% at 0% 50%);
}
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot:last-of-type {
  margin-right: 0;
}
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot span {
  opacity: 0;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  width: 4px;
  height: 4px;
  background: transparent;
  border-radius: 50%;
}
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot.active,
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot:hover {
  background: #f0950a;
  opacity: 1;
}
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot.active::after,
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot:hover::after {
  clip-path: circle(100% at 50% 50%);
}
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot.active span,
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot:hover span {
  opacity: 1;
}
#banner .swiper-pagination .swiper-pagination-dots .swiper-pagination-dot:last-child {
  margin-right: 0;
}
.gy_btn {
  display: inline-block;
  font-weight: 400;
  font-size: var(--ft18);
  color: #fff;
  height: 54px;
  border-radius: 4px;
  background: var(--color);
  border: 1px solid var(--color);
  line-height: 54px;
  padding: 0 var(--ft26);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.gy_btn img {
  margin-left: var(--ft18);
  vertical-align: middle;
}
.gy_btn:hover {
  background-color: var(--color1);
  border-color: var(--color1);
  color: #fff;
}
.gy_tap {
  font-weight: 400;
  font-size: 42px;
  color: #57B0BD;
  display: flex;
  align-items: center;
  line-height: 1;
}
.gy_tap span {
  width: var(--ft36);
  height: 4px;
  background: #57B0BD;
  margin-right: 4px;
}
.gy_h {
  font-weight: bold;
  font-size: var(--ft50);
  color: #000000;
  /*line-height: 1.28;*/
  line-height: 1.3;
  margin-top: 36px;
  padding-bottom: 8px;
}
.gy_p {
  font-weight: 300;
  font-size: var(--ft18);
  color: #000000;
  line-height: 2;
}
#index-body {
  position: relative;
  z-index: 2;
}
#index-body .init-1 {
  background-size: cover;
  padding: calc(6.77vw + 20px) 0;
}
#index-body .init-1 .container .i1-t {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#index-body .init-1 .container .i1-t .i1t-l {
  max-width: 720px;
}
#index-body .init-1 .container .i1-t .i1t-l .gy_p1 {
  /*margin-bottom: var(--ft26);*/
}
#index-body .init-1 .container .i1-t .i1t-l .gy_h {
  margin-bottom: 18px;
}
#index-body .init-1 .container .i1-t .i1t-l .gy_btn {
  margin-top: var(--ft34);
}
#index-body .init-1 .container .i1-b {
  padding: 10px;
  background: #fbfbfb;
  margin-top: var(--px100);
}
#index-body .init-1 .container .i1-b .i1-f {
  /*background: #fff;*/
  padding: var(--ft34) var(--px80) var(--ft34) var(--px110);
  display: flex;
  justify-content: space-between;
}
#index-body .init-1 .container .i1-b .i1-f li{
  display: flex;
  flex-direction: column;
  align-items: center;
}
#index-body .init-1 .container .i1-b .i1-f li div {
  font-weight: 300;
  font-size: var(--ft16);
  color: #666666;
}
#index-body .init-1 .container .i1-b .i1-f li p {
  margin-bottom: 8px;
  line-height: 1;
  font-weight: 400;
  font-size: calc(0.415vw + 14px);
  color: #111111;
}
#index-body .init-1 .container .i1-b .i1-f li p em {
  font-weight: bold;
  font-size: calc(1.46vw + 14px);
  color: #57B0BD;
}
#index-body .init-1 .container .i1-pp {
  padding-top: calc(var(--px60) - 2px);
  overflow: hidden;
}
#index-body .init-1 .container .i1-pp .swiper2 {
  overflow: hidden;
}
#index-body .init-1 .container .i1-pp .swiper2 .swiper-wrapper {
  transition-timing-function: linear;
  /* 线性过渡 */
}
#index-body .init-1 .container .i1-pp .swiper2 .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
  /* 启用硬件加速 */
}
#index-body .init-2 {
  padding-bottom: calc(var(--px140) - 5px);
}
#index-body .init-2 .container .i2-t {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-between;
}
#index-body .init-2 .container .i2-t .i2t-l .gy_p1 {
  margin-bottom: var(--ft34);
}
#index-body .init-2 .container .i2-t .i2t-l .gy_h {
  line-height: 1.3;
  margin-bottom: var(--px50);
}
#index-body .init-2 .container .i2-m {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--px40) - 10px);
}
#index-body .init-2 .container .i2-m .i2-c {
  position: relative;
}
#index-body .init-2 .container .i2-m .i2-c:hover .i2-c-t {
  opacity: 0;
}
#index-body .init-2 .container .i2-m .i2-c:hover .i2-c-b {
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-t {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 var(--px40);
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-t img {
  filter: brightness(0) invert(1);
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-t .i2-p1 {
  font-weight: 500;
  font-size: var(--ft26);
  color: #FFFFFF;
  line-height: 1;
  padding-top: var(--ft50);
  padding-bottom: var(--ft30);
  border-bottom: 1px solid rgba(230, 230, 230, 0.3);
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-t .i2-p2 {
  font-weight: 300;
  font-size: var(--ft18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  line-height: 1;
  padding-top: var(--ft24);
  padding-bottom: var(--ft26);
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-t .i2-p2 img {
  margin-left: 14px;
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-b {
  clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 0%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  padding: var(--ft50) var(--ft40) 0;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/i2-6.png) no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-b img {
  width: auto;
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-b .i2-c-bc {
  width: 100%;
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-b .i2-c-bc .i2b-p1 {
  font-weight: 500;
  font-size: var(--ft26);
  color: #FFFFFF;
  margin-bottom: var(--ft26);
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-b .i2-c-bc .i2b-p2 {
  font-weight: 300;
  font-size: var(--ft18);
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 11px;
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-b .i2-c-bc .i2b-p2 > div {
  max-width: 520px;
  padding-bottom: var(--px80);
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-b .i2-c-bc .i2b-p3 {
  line-height: 1;
  font-weight: 300;
  font-size: var(--ft18);
  color: #FFB516;
  display: flex;
  align-items: center;
  padding-top: var(--ft24);
  padding-bottom: var(--ft26);
  border-top: 1px solid rgba(230, 230, 230, 0.3);
}
#index-body .init-2 .container .i2-m .i2-c .i2-c-b .i2-c-bc .i2b-p3 img {
  margin-left: 14px;
}
#index-body .init-3 .container .i3-t {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    -webkit-box-align: end;    
  -webkit-align-items: flex-end;   
  -ms-flex-align: end;        
  align-items: flex-end;      
}
#index-body .init-3 .container .i3-t .i3t-r {
  display: flex;
}
#index-body .init-3 .container .i3-t .i3t-r .i3t-rbtn {
  font-weight: 400;
  font-size: var(--ft20);
  color: #000000;
  margin-left: var(--px80);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  cursor: pointer;
}
#index-body .init-3 .container .i3-t .i3t-r .i3t-rbtn::before {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--color1);
  left: 0;
  bottom: 0;
}
#index-body .init-3 .container .i3-t .i3t-r .i3t-rbtn:first-child {
  margin-left: 0;
}
#index-body .init-3 .container .i3-t .i3t-r .i3t-rbtn.active,
#index-body .init-3 .container .i3-t .i3t-r .i3t-rbtn:hover {
  color: var(--color1);
}
#index-body .init-3 .container .i3-t .i3t-r .i3t-rbtn.active::before,
#index-body .init-3 .container .i3-t .i3t-r .i3t-rbtn:hover::before {
  width: 100%;
}
#index-body .init-3 .i3-b {
  /*padding-left: 14.07%;*/
  position: relative;
}
#index-body .init-3 .i3-b::before {
  content: "";
  position: absolute;
  width: 95.83%;
  right: 0;
  bottom: 0;
  background: rgba(238, 238, 238, 0.3);
  height: 26.56vw;
}
.sw66{
  margin-top: var(--px100);
}
#index-body .init-3 .i3-b .swiper3 {
  position: relative;
  padding-left: 15px;
  padding-top: 0;
  padding-bottom: var(--px130);
  overflow: hidden;
  /*display: none;*/
}
#index-body .init-3 .i3-b .swiper3:first-of-type {
  /*display: block;*/
}
#index-body .init-3 .i3-b .swiper3 .sw3-btns {
  position: absolute;
  z-index: 5;
  display: flex;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: var(--px40);
  /*display: none ;*/
}
#index-body .init-3 .i3-b .swiper3 .sw3-btns i {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  border: 1px solid #afafaf;
  font-size: var(--ft20);
  color: #afafaf;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
#index-body .init-3 .i3-b .swiper3 .sw3-btns i::before{
  position: relative;
  z-index: 4;
}
#index-body .init-3 .i3-b .swiper3 .sw3-btns i::after{
    -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  content: '';
  position: absolute;
  top: 0;
  left:0;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: var(--color);
  transform: translateX(100%);
}
#index-body .init-3 .i3-b .swiper3 .sw3-btns i:hover::after{
    transform: translateX(0%);
}
#index-body .init-3 .i3-b .swiper3 .sw3-btns i:hover {
  border: 1px solid var(--color);
  color: #fff;
}
#index-body .init-3 .i3-b .swiper3 .sw3-btns .sw3-l {
  margin-right: var(--ft24);
}
.opc0{
  opacity: 0;
}
#index-body .init-3 .i3-b .swiper3 .swiper-slide {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  /*background: #f7f7f7;*/
  /*box-shadow: 0px 6px 15px 0px rgba(28, 86, 95, 0.1);*/
  padding: 10px;
}
.swiper3 .swiper-slide a{
    box-shadow: 0px 6px 15px 0px rgba(28, 86, 95, 0.1);
}
#index-body .init-3 .i3-b .swiper3 .swiper-slide:hover {
  /*background: #57B0BD;*/
  /*box-shadow: 0px 6px 15px 0px rgba(28, 86, 95, 0.3);*/
}
#index-body .init-3 .i3-b .swiper3 .swiper-slide:hover .sw3-p1 {
  color: #FFFFFF;
}
#index-body .init-3 .i3-b .swiper3 .swiper-slide:hover .sw3-p2 {
  color: #FFFFFF;
}
#index-body .init-3 .i3-b .swiper3 .swiper-slide:hover .sw3-p3 img {
  filter: none;
}
#index-body .init-3 .i3-b .swiper3 .swiper-slide .sw3-p1 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 400;
  font-size: calc(0.415vw + 14px);
  color: #111111;
  margin-top: var(--ft40);
  margin-bottom: var(--ft24);
}
#index-body .init-3 .i3-b .swiper3 .swiper-slide .sw3-p2 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 300;
  font-size: var(--ft18);
  color: #878787;
  min-height: 54px;
}
#index-body .init-3 .i3-b .swiper3 .swiper-slide .sw3-p3 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  padding-right: var(--ft20);
  padding-bottom: var(--ft20);
  display: flex;
  justify-content: end;
}
#index-body .init-3 .i3-b .swiper3 .swiper-slide .sw3-p3 img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  filter: brightness(0);
}
#index-body .init-4 {
  padding-top: calc(6.77vw + 20px);
  padding-bottom: 8.55vw;
  padding-left: 4.17%;
  padding-right: 4.17%; 
  overflow: hidden;
}
#index-body .init-4 .swiper4 {
  position: relative;
}
#index-body .init-4 .swiper4 .i4-box {
  position: absolute;
  right: 17px;
  bottom: 0;
  background: #fff;
  z-index: 4;
  transform: translateY(50%);
}
#index-body .init-4 .swiper4 .i4-box::before {
  content: '';
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--color);
  transform: translate(var(--ft20), var(--ft20));
}
#index-body .init-4 .swiper4 .i4-box .i4-tb {
  padding-top: var(--ft60);
  padding-left: var(--ft50);
  padding-right: var(--ft46);
  padding-bottom: calc(var(--px100) - 5px);
  background: #fff;
  position: relative;
  z-index: 2;
   box-shadow:  0 0 6px 2px rgba(0, 0, 0, 0.33);
}
#index-body .init-4 .swiper4 .i4-box .i4-tb1 {
  font-weight: 500;
  font-size: var(--ft50);
  color: #000000;
  line-height: 1;
  margin-bottom: var(--ft26);
}
#index-body .init-4 .swiper4 .i4-box .i4-tb2 {
  font-weight: 400;
  font-size: var(--ft18);
  color: #000000;
  max-width: 423px;
}
#index-body .init-4 .swiper4 i {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #afafaf;
  font-size: var(--ft20);
  color: #afafaf;
  font-weight: 500;
  cursor: pointer;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);

  overflow: hidden;
}
/*#index-body .init-4 .swiper4 i:hover {
  border: 1px solid var(--color);
  color: var(--color);
}*/
#index-body .init-4 .swiper4 i::before{
  position: relative;
  z-index: 4;
}
#index-body .init-4 .swiper4 i::after{
    -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  content: '';
  position: absolute;
  top: 0;
  left:0;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: var(--color);
  transform: translateX(100%);
}
#index-body .init-4 .swiper4 i:hover::after{
    transform: translateX(0%);
}
#index-body .init-4 .swiper4 i:hover {
  border: 1px solid var(--color);
  color: #fff;
}
#index-body .init-4 .swiper4 .sw4-l {
  left: var(--ft30);
}
#index-body .init-4 .swiper4 .sw4-r {
  right: 22%;
}
#index-body .init-5 {
  padding-bottom: calc(var(--px100) - 5px);
  padding-top: calc(var(--px140) - 5px);
}
#index-body .init-5 .container .i5-t {
  margin-bottom: var(--px100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#index-body .init-5 .container .i5-t .i5t-r {
  display: flex;
  align-items: center;
}
#index-body .init-5 .container .i5-t .i5t-r .i5-nav {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: var(--ft20);
  color: #000000;
}
#index-body .init-5 .container .i5-t .i5t-r .i5-nav .i5-nav-btn1 {
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: var(--px70);
}
#index-body .init-5 .container .i5-t .i5t-r .i5-nav .i5-nav-btn1:hover,
#index-body .init-5 .container .i5-t .i5t-r .i5-nav .i5-nav-btn1.active {
  color: var(--color1);
}
#index-body .init-5 .container .i5-b {
  display: flex;
}
#index-body .init-5 .container .i5-b > div {
  width: 50%;
}
#index-body .init-5 .container .i5-b .i5b-l {
  padding-right: calc(var(--px130));
}
#index-body .init-5 .container .i5-b .i5b-l .i5bl-box .i5bl-p1 {
  text-align: right;
  font-weight: 400;
  font-size: var(--ft18);
  color: #57B0BD;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color);
}
#index-body .init-5 .container .i5-b .i5b-l .i5bl-box .i5bl-p2 {
  font-weight: 400;
  font-size: var(--ft24);
  color: #57B0BD;
  padding-top: var(--ft36);
}
#index-body .init-5 .container .i5-b .i5b-l .i5bl-box .i5bl-p3 {
  font-weight: 300;
  font-size: var(--ft18);
  color: rgba(135, 135, 135, 0.6);
  margin-top: var(--ft20);
  margin-bottom: var(--ft40);
}
#index-body .init-5 .container .i5-b .i5b-r .swiper5 {
  overflow: hidden;
  height: calc(200px * 3);
  display: none;
}
 .sw66{
  display: none;
}
 .sw66:first-child{
  display: block;
}
#index-body .init-5 .container .i5-b .i5b-r .swiper5:first-child {
  display: block;
}
#index-body .init-5 .container .i5-b .i5b-r .swiper5 .swiper-slide:hover .i5br-p1 .rp1 {
  color: var(--color);
}
#index-body .init-5 .container .i5-b .i5b-r .swiper5 .swiper-slide:hover .bbob {
  border-bottom: 1px solid var(--color);
}
#index-body .init-5 .container .i5-b .i5b-r .swiper5 .swiper-slide .i5br-p1 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: var(--ft50);
}
#index-body .init-5 .container .i5-b .i5b-r .swiper5 .swiper-slide .i5br-p1 .rp1 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 400;
  font-size: var(--ft24);
  color: #000000;
}
#index-body .init-5 .container .i5-b .i5b-r .swiper5 .swiper-slide .i5br-p1 .rp2 {
  font-weight: 400;
  font-size: var(--ft18);
  color: #878787;
}
#index-body .init-5 .container .i5-b .i5b-r .swiper5 .swiper-slide .i5br-p2 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  padding-right: var(--px170);
  font-weight: 300;
  font-size: var(--ft18);
  color: rgba(135, 135, 135, 0.6);
  padding-top: var(--ft24);
}
#index-body .init-5 .container .i5-b .i5b-r .swiper5 .swiper-slide .bbob {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  height: var(--ft30);
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
#index-body .init-6 {
  background: url(../images/i6-1.jpg) no-repeat center;
  background-size: cover;
  padding-top: var(--ft62);
  padding-bottom: calc(var(--px80) - 3px);
}
#index-body .init-6 .container .i6-h {
  font-weight: bold;
  font-size: var(--ft40);
  color: #FFFFFF;
}
#index-body .init-6 .container form {
  display: flex;
  justify-content: center;
  margin-top: var(--ft36);
}
#index-body .init-6 .container form .add {
  height: 56px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
#index-body .init-6 .container form .add.addc {
  padding-left: 14px;
  display: flex;
  align-items: center;
}
#index-body .init-6 .container form .add.addc img {
  margin-right: 8px;
}
#index-body .init-6 .container form .add input {
  background: transparent;
  border: none;
  font-weight: 400;
  font-size: var(--ft18);
  color: rgba(255, 255, 255, 0.5);
}
#index-body .init-6 .container form .add input::placeholder {
  font-weight: 400;
  font-size: var(--ft18);
  color: rgba(255, 255, 255, 0.5);
}
#index-body .init-6 .container form .add1 {
  min-width: 220px;
  margin-right: var(--ft20);
}
#index-body .init-6 .container form .add2 {
  min-width: 220px;
  margin-right: var(--ft20);
}
#index-body .init-6 .container form .add3 {
  min-width: 420px;
  margin-right: var(--ft30);
}
#index-body .init-6 .container form .add4 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
  width: 160px;
  height: 56px;
  background: #57B0BD;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: var(--ft18);
  color: #FFFFFF;
}
#index-body .init-6 .container form .add4 img {
  margin-left: 14px;
}
#index-body .init-6 .container form .add4:hover {
  background: #000;
}
#footer {
  position: relative;
  background: #f7f7f7;
  z-index: 2;
  background-size: cover;
}
#footer .container {
  padding-left: var(--px120) !important;
  padding-right: var(--px120) !important;
}
#footer .ft-form {
  width: 120px;
}
#footer .ft-form .ftf {
  font-weight: 400;
  font-size: var(--ft16);
  color: #FFFFFF;
}
#footer .ft-form #ewm {
  width: 96px;
  height: 96px;
}
#footer .ft-form #ewm img,
#footer .ft-form #ewm canvas {
  width: 100%;
  height: 100%;
}
#footer .ft-form form .add {
  margin-bottom: 14px;
  border-radius: 210px;
}
#footer .ft-form form .add.add2 {
  margin-bottom: var(--ft24);
}
#footer .ft-form form .add input {
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  width: 100%;
  border: none;
  padding-left: 20px;
  padding-right: 60px;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
#footer .ft-form form .add input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
#footer .ft-form form textarea {
  height: 86px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  width: 100%;
  border: none;
  padding-left: 20px;
  padding-right: 60px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}
#footer .ft-form form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
#footer .ft-form form .add2 {
  position: relative;
}
#footer .ft-form form .add2 .fffbtn {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  width: 40px;
  height: 40px;
  background: #0C602C;
  border-radius: 50%;
  right: 5px;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .ft-form form .add2 .fffbtn:hover {
  background: #000;
}
#footer .fmain {
  transform: translateY(-50%);
  font-weight: 400;
  font-size: calc(0.2085vw + 14px);
  color: #FFFFFF;
  position: relative;
  z-index: 5;
}
#footer .fmain .container {
  padding-left: var(--px50);
  padding-right: var(--px50);
}
#footer .fmain .fmain-box {
  padding-top: calc(var(--px40) - 7px);
  padding-bottom: calc(var(--px40) - 7px);
  background: #0C602C;
  border-radius: 80px;
  overflow: hidden;
  display: flex;
}
#footer .fmain .fmain-box > div {
  width: 33.333%;
}
#footer .fmain .fmain-box .fmain-c {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-weight: 400;
  font-size: calc(0.2085vw + 14px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .fmain .fmain-box .fmain-c .fmain-c-img {
  width: 61px;
  height: 61px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--ft16);
}
#footer .fmain .fmain-box .fmain-c .fmain-c-text {
  text-align: left;
  max-width: 340px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}
#footer .fmain .fmain-box .fmain-c .fmain-c-text p:first-child {
  font-weight: 400;
  font-size: var(--ft16);
  color: #FFFFFF;
}
#footer .fmain .fmain-box .fmain-c .fmain-c-text p:last-child {
  font-weight: bold;
  font-size: var(--ft16);
  color: #FFFFFF;
}
#footer .foot {
  padding-bottom: var(--px80);
  padding-top: var(--px90);
}
#footer .foot .container .f-b .fb-m {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
#footer .foot .container .f-b .fb-m .fbl-c {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#footer .foot .container .f-b .fb-m .fbox {
  width: 35px;
  height: 35px;
  background: #c30a20;
  border-radius: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .foot .container .f-b .fb-m .fb-l .fbl-t {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 1000px;
  justify-content: space-between;
}
#footer .foot .container .f-b .fb-m .fb-r ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
#footer .foot .container .f-b .fb-m .fb-r ul .s1 {
  margin-right: 12px;
}
#footer .foot .container .f-b .fb-m .fb-r ul .s1 a i {
  width: 35px;
  height: 35px;
  background: #c30a20;
  border-radius: 17px;
  display: block;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#footer .foot .container .f-b .fb-m .fb-r ul .s1 a i:hover {
  background: #fff;
  color: #c30a20;
}
#footer .foot .container .f-b .fb-m .fb-r ul #ewm {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  border-radius: 5px;
  border: 3px solid #fff;
}
#footer .foot .container .f-b .ft-h {
  color: #ffffff;
}
#footer .foot .container .f-b .line {
  width: 34px;
  height: 4px;
  background: #c30d23;
  border-radius: 2px;
}
#footer .foot .container .f-t {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer .foot .container .f-t .logo {
  max-width: 281px;
}
#footer .foot .container .f-t .ft-c.ft-contact {
  max-width: 306px;
}
#footer .foot .container .f-t .ft-c.ft-contact .cot {
  margin-bottom: var(--ft20);
  font-weight: 400;
  font-size: var(--ft16);
  color: #3e3e3e;
  display: flex;
  align-items: flex-start;
}
#footer .foot .container .f-t .ft-c.ft-contact .cot img {
  margin-top: 5px;
  margin-right: var(--ft16);
}
#footer .foot .container .f-t .ft-c .ft-h {
  font-weight: bold;
  font-size: var(--ft18);
  color: #3e3e3e;
  position: relative;
  line-height: 1;
  margin-bottom: var(--ft30);
}
#footer .foot .container .f-t .ft-c .line {
  width: 34px;
  height: 4px;
  background: #c30d23;
  border-radius: 2px;
}
#footer .foot .container .f-t .ft-c ul {
  display: flex;
}
#footer .foot .container .f-t .ft-c ul li {
  line-height: 1;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
  font-weight: 400;
  color: #3e3e3e;
  font-size: var(--ft16);
  position: relative;
}
#footer .foot .container .f-t .ft-c ul li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  bottom: -3px;
  height: 1px;
  background: var(--color);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#footer .foot .container .f-t .ft-c ul li span {
  position: relative;
}
#footer .foot .container .f-t .ft-c ul li a {
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  transform: translateX(0px);
}
#footer .foot .container .f-t .ft-c ul li:hover {
  color: var(--color1);
}
#footer .foot .container .f-t .ft-c ul li:hover::before {
  width: 100%;
}
#footer .foot .container .f-t .ft-c form .f-putc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 23px;
}
#footer .foot .container .f-t .ft-c form .linef {
  position: relative;
}
#footer .foot .container .f-t .ft-c form .linef::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  border-radius: 1px;
}
#footer .foot .container .f-t .ft-c form .linef img {
  position: absolute;
  right: 0;
  bottom: 13px;
}
#footer .foot .container .f-t .ft-c form .f-put1 {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: var(--ft18);
  color: #999999;
  position: relative;
}
#footer .foot .container .f-t .ft-c form .f-put1::placeholder {
  font-weight: 500;
  font-size: var(--ft18);
  color: #999999;
}
#footer .foot .container .f-t .ft-c form .all-btn-hw {
  width: 100%;
  height: 50px;
  background: rgba(252, 252, 252, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: SuiGenerisRg;
  font-weight: 500;
  font-size: var(--ft18);
  color: #ffffff;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
#footer .foot .container .f-t .ft-c form .all-btn-hw::after {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  clip-path: inset(0 0 100% 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--color);
}
#footer .foot .container .f-t .ft-c form .all-btn-hw:hover::after {
  clip-path: inset(0 0 0 0);
}
#footer .foot .container .f-t .ft-c form .all-btn-hw span {
  position: relative;
  z-index: 2;
}
#footer .foot .container .f-t .ft-c form textarea {
  line-height: 1.3;
}
#footer .foot .container .f-t .ft-c form .all-btn {
  width: 187px;
}
#footer .foot .container .f-t .ft-c.ft-c2 {
  width: 440px;
}
#footer .foot .container .f-t .ft-c.ft-c2 .ftc2-l-ch {
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
}
#footer .foot .container .f-t .ft-c.ft-c2 .ftc2-l-cp {
  font-weight: 500;
  color: #999999;
  line-height: calc(28 / 18);
}
#footer .foot .container .f-t .ft-c.ft-c2 .ftc2 {
  display: flex;
  justify-content: space-between;
}
#footer .foot .container .f-t .ft-c.ft-c2 .ftc2 .ftc2-l {
  max-width: 240px;
}
#footer .foot .container .f-t .ft-c.ft-c1 {
  width: 317px;
}
#footer .foot .container .f-t .ft-c-logo {
  max-width: 311px;
}
#footer .foot .container .f-t .ft-c-logo .logo {
  display: flex;
  align-items: center;
}
#footer .foot .container .f-t .ft-c-logo #ewm {
  width: 99px;
  height: 99px;
  background: #FFFFFF;
  border-radius: 10px;
  border-radius: 5px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .foot .container .f-t .ft-c-logo #ewm img,
#footer .foot .container .f-t .ft-c-logo #ewm svg,
#footer .foot .container .f-t .ft-c-logo #ewm canvas {
  width: 89px;
  height: 89px;
}
#footer .foot .container .f-t .ft-c-logo .fgh1 {
  margin-top: calc(var(--px60) - 3px);
  margin-bottom: calc(var(--px70) - 6px);
  font-size: var(--ft16);
  color: #585757;
  line-height: 2.4;
  font-weight: 300;
  max-width: 311px;
}
#footer .foot .share {
  font-size: var(--ft18);
  display: flex;
  margin-top: var(--ft24);
}
#footer .foot .share div i {
  width: 30px;
  height: 30px;
  background: #888888;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#footer .foot .share div:hover i {
  background: var(--color);
}
#footer .share1 {
  color: rgba(255, 255, 255, 0.5);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  font-size: 24px;
}
#footer .share1 a {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: flex;
  align-items: end;
  justify-content: start;
}
#footer .share1 a:hover {
  color: white;
}
#footer .lll5 {
  width: 100%;
  height: 1px;
  background: #dedede;
}
#footer .copyright {
  position: relative;
  font-size: var(--ft16);
  font-weight: bold;
  overflow: hidden;
  color: #111111;
  background: transparent;
}
#footer .copyright .container {
  padding-top: var(--ft18);
  padding-bottom: calc(var(--px40) - 5px);
}
#footer .copyright .container .share {
  display: flex;
}
#footer .copyright .container .share a {
  display: flex;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 19px;
  justify-content: center;
  align-items: center;
  font-size: var(--ft18);
  font-weight: 400;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .copyright .container .share a:hover {
  background: #fff;
  color: var(--color);
}
#footer .copyright .container svg {
  height: 24px;
  width: auto;
  fill: #686868;
  position: relative;
  vertical-align: middle;
}
#footer .copyright .container a {
  margin: 0 5px;
}
#footer .copyright .container a img {
  margin-top: 8px;
  height: 16px;
}
#footer .copyright .container .left {
  justify-content: center;
  position: relative;
  top: 0;
  color: #404040;
  font-weight: 300;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1800px) {
  .container {
    width: 1400px;
  }
}
@media (max-width: 1500px) {
  .container {
    width: 1200px;
  }
}
@media (max-width: 1250px) {
  #index-body .init-6 .container form .add {
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
  }
  #index-body .init-6 .container form {
    flex-wrap: wrap;
  }
  #index-body .init-3 .container .i3-t .i3t-r {
    width: 100%;
    margin-top: 15px;
  }
  #index-body .init-2 .container .i2-m .i2-c > img {
    width: 100%;
  }
  #index-body .init-2 .container .i2-m {
    grid-template-columns: 1fr;
  }
  #index-body .init-1 .container .i1-t .i1t-l {
    max-width: 100%;
    margin-bottom: 20px;
  }
  #index-body .init-1 .container .i1-t {
    flex-wrap: wrap;
  }
  .container {
    width: 970px;
  }
}
@media (max-width: 1000px) {
  #index-body .init-5 .container .i5-b .i5b-r .swiper5 {
    overflow: hidden;
    height: calc(180px * 3);
    display: none;
  }
  #index-body .init-5 .container .i5-b {
    flex-wrap: wrap;
  }
  #index-body .init-5 .container .i5-b > div {
    width: 100%;
  }
  #index-body .init-5 .container .i5-b .i5b-l {
    padding: 0;
    margin-bottom: 15px;
  }
  #index-body .init-4 {
    padding: var(--px70) 0;
  }
  #index-body .init-4 .swiper4 .i4-box .i4-tb2,
  #index-body .init-4 .swiper4 .i4-box .i4-tb1 {
    color: #fff;
  }
  #index-body .init-4 .swiper4 .i4-box,
  #index-body .init-4 .swiper4 .i4-box .i4-tb {
    background: rgba(0, 0, 0, 0.13);
    transform: none;
  }
  #index-body .init-4 .swiper4 .i4-box::before {
    display: none !important;
  }
  .hide-1000 {
    display: none !important;
  }
  #index-body .init-3 .container .i3-t .i3t-r .i3t-rbtn {
    margin-left: 10px;
  }
  #index-body .init-1 .container .i1-b .i1-f {
    flex-wrap: wrap;
  }
  #index-body .init-1 .container .i1-b .i1-f li {
    width: 33.33%;
    margin-bottom: 15px;
  }
  .container {
    width: 700px;
  }
}
@media (max-width: 700px) {
  #index-body .init-1 .container .i1-b .i1-f li{
     width: 50%;
  }
  #index-body .init-5 .container .i5-b .i5b-r .swiper5 {
    overflow: hidden;
    height: calc(140px * 3);
    display: none;
  }
  #index-body .init-3 .i3-b {
    padding-left: 0;
  }
  #index-body .init-3 .container .i3-t .i3t-r {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #index-body .init-3 .container .i3-t .i3t-r .i3t-rbtn:first-child{
    width: 0;
    font-size: 0;
  }
  #index-body .init-3 .container .i3-t .i3t-r .i3t-rbtn {
    margin-left: 0;
    width: 43%;
    margin-bottom: 10px;
  }
  #index-body .init-2 .container .i2-t .gy_btn {
    margin-bottom: 15px;
  }
  .hide-700 {
    display: none !important;
  }
  .container {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #index-body .init-2 .container .i2-m .i2-c .i2-c-b .i2-c-bc .i2b-p2 > div {
    padding-bottom: 0;
  }
  #index-body .init-2 .container .i2-m .i2-c .i2-c-b .i2-c-bc .i2b-p2 {
    display: block;
    padding-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 10px;
  }
  #index-body .init-1 .container .i1-b .i1-f li {
    width: 100%;
    margin-bottom: 10px;
  }
  .hide-500 {
    display: none !important;
  }
}
/*inner css add end*/
/*qiliangbufen */
.inner-banner {
  height:450px;
  background-position: center top;
  /*background-attachment: fixed;*/
  position: relative;
  background-repeat: no-repeat;
  color: #fff;
  z-index: 1;
  margin-top: 77px;
}
.inner-banner:not(.inner-banner-pr){
  background-size: cover;
  background-position: center bottom;
}
.inner-banner h2.tit {
  font-size: 66px;
  color: #fff;
  position: absolute;
  font-weight: 700;
  left: 8%;
  top: 60%;
  text-align: left;
  max-width: 1000px;
}
.inner-banner h2.tit::after {
  position: absolute;
  content: "";
  width: 108px;
  /*height: 1px;*/
  background: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}
.product-banner.inner-banner {
  height: 500px;
  padding-bottom: 120px;
}
.product-banner.inner-banner h2 {
  text-align: left;
}
.product-banner.inner-banner h2::after {
  left: 0;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.inner-page .mbx-box {
  padding: 30px 0 30px;
}
.inner-page .mbx {
  font-size: 14px;
  line-height: 28px;
  color: transparent;
  padding-left: 35px;
  position: relative;
}
.inner-page .mbx::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  border-bottom: 1px solid #000;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.inner-page .mbx a {
  color: #000;
  padding: 0 16px 0 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.6);
}
.inner-page .mbx a:first-child {
  padding-left: 0;
}
.inner-page .mbx span {
  color: #000;
  padding-left: 12px;
}
.inner-page .sidebar-box {
  max-width: 1620px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.inner-page .sidebar-box .sidebar-left {
  width: 69%;
}
.inner-page .sidebar-box .sidebar-right {
  width: 31%;
  padding-left: 60px;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav {
  padding: 28px 50px 40px;
  background: var(--color);
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav h3 {
  font-size: 24px;
  line-height: 44px;
  color: #ffffff;
  position: relative;
  padding-bottom: 20px;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav h3::after {
  position: absolute;
  content: "";
  width: 68px;
  height: 2px;
  border-bottom: 1px solid #fff;
  left: 0;
  bottom: 0;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul {
  margin-top: 25px;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 22px;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li:last-child {
  margin-bottom: 0;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li a {
  display: inline-block;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li a:hover {
  color: var(--color1);
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li a:hover::after {
  width: 100%;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  border-bottom: 1px solid #df9c37;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  left: 0;
  bottom: -3px;
}
.inner-page .sidebar-box .sidebar-right .like-list {
  margin-top: 36px;
}
.inner-page .sidebar-box .sidebar-right .like-list h4 {
  font-size: 16px;
  line-height: 30px;
  color: #141414;
  font-weight: bold;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
.inner-page .sidebar-box .sidebar-right .like-list ul {
  margin-top: 15px;
}
.inner-page .sidebar-box .sidebar-right .like-list ul li {
  padding-left: 21px;
  position: relative;
  margin-bottom: 25px;
}
.inner-page .sidebar-box .sidebar-right .like-list ul li::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 1px;
  background: #000;
  left: 0;
  top: 13px;
}
.inner-page .sidebar-box .sidebar-right .like-list ul li h5 {
  font-size: 16px;
  line-height: 30px;
  color: #000000;
}
.inner-page .sidebar-box .sidebar-right .like-list ul li h5:hover {
  color: var(--color);
}
.inner-page .sidebar-box .sidebar-right .like-list ul li p {
  font-size: 14px;
  line-height: 2;
  color: rgba(20, 20, 20, 0.5);
  margin-top: 12px;
}
.inner-page .about-link {
  padding: 70px 0;
  background: var(--color);
}

.inner-page .about-link .a-box {
  max-width: 1620px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 0;
}
.inner-page .about-link .a-box h3 {
  font-size: 24px;
  line-height: 44px;
  color: #ffffff;
  font-weight: bold;
}

.inner-page .about-link .a-box a {
  padding: 15px 80px 15px 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}
.inner-page .about-link .a-box a:hover {
  color: var(--color);
  background: #fff;
}
.inner-page .about-link .a-box a:hover:after {
  background: #fff;
}
/*.inner-page .about-link .a-box a img{
  display: none;
}*/
.inner-page .more {
  display: inline-block;
  padding: 15px 60px 15px 32px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  font-size: var(--ft18);
  color: #000;
  position: relative;
  z-index: 2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .more img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -35px;
}
.inner-page .more:hover {
  border: 1px solid var(--color);
  color: #fff;
}
.inner-page .more:hover img {
  right: -55px;
}
.inner-page .more:hover::after {
  width: 100%;
}
.inner-page .more::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background: var(--color);
  left: 0;
  top: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: -1;
}
.inner-page .m-page {
  text-align: center;
  margin-top: 50px;
}
.inner-page .m-page span,
.inner-page .m-page a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  text-align: center;
  line-height: 42px;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.4);
  margin-right: 10px;
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page span:hover,
.inner-page .m-page a:hover {
  color: #fff;
  background: #000;
}
.inner-page .m-page .current {
  color: #fff;
  background: #000;
}
.contact-page {
  background: url(../images/contact-banner.jpg) no-repeat center top;
  padding-top: 200px;
  background-size: 100%;
}
.contact-page h2.tit {
  font-size: 42px;
  line-height: 1;
  color: #fff;
  position: relative;
  text-align: center;
  padding-bottom: 23px;
}
.contact-page h2.tit::after {
  position: absolute;
  content: "";
  width: 108px;
  height: 1px;
  background: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}
.contact-page .contact-1 {
  margin-top:  calc(2.6067vw + 20px);
}
.contact-page .contact-1 .contact-box {
  max-width: 1512px;
 border-radius: 30px;
  background: #fff;
  padding: 20px calc(6.77vw + 5px) ;
  margin: 0 auto;
}
.contact-page .contact-1 .contact-box .contact-content {
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-page .contact-1 .contact-box .contact-content p {
  font-size: 16px;
  line-height: 30px;
  color: #000;
}
.contact-page .contact-1 .contact-box .contact-content .left {
  width: 50%;
  padding-right: calc(1.46vw + 14px);
}
.contact-page .contact-1 .contact-box .contact-content .left h2 {
  font-size: calc(2.0835vw + 14px);
  line-height: 1.1;
  color: var(--color);
  font-weight: bold;
  margin-bottom: calc(1.3555vw + 14px);
}
.contact-page .contact-1 .contact-box .contact-content .left ul {
  margin-top: calc(3.1805vw + 14px);
}
.contact-page .contact-1 .contact-box .contact-content .left ul li {
  margin-bottom: calc(1.5805vw + 14px);
}
.contact-page .contact-1 .contact-box .contact-content .left ul li:last-child {
  margin-bottom: 0;
}
.contact-page .contact-1 .contact-box .contact-content .left ul li h5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 20px;
}
.contact-page .contact-1 .contact-box .contact-content .left ul li h5 img {
  margin-right: 15px;
}
.contact-page .contact-1 .contact-box .contact-content .left ul li h4 {
  font-size: var(--ft18);
  line-height: 32px;
  color: #000000;
}
.contact-page .contact-1 .contact-box .contact-content .left ul li h4.h4 {
  margin-bottom: 12px;
}
.contact-page .contact-1 .contact-box .contact-content .right {
  width: 50%;
  padding-left: calc(1.46vw + 14px);
}
.contact-page .contact-1 .contact-box .contact-content .right p.p {
  margin-top: 35px;
  /*letter-spacing: 1.5px;*/
}
.contact-page .contact-1 .contact-box .contact-content .right form {
  margin-top: 0px !important;
}
.contact-page .contact-1 .contact-box .contact-content .right form p {
  line-height: 1;
  margin-bottom: 15px;
}
.contact-page .contact-1 .contact-box .contact-content .right form input[type="text"],
.contact-page .contact-1 .contact-box .contact-content .right form textarea {
  width: 100%;
  height: 43px;
  background: #e8e8e8;
  border: none;
  padding: 0 10px;
  font-size: 16px;
  line-height: 30px;
  color: #000;
  margin-bottom: 22px;
}
.contact-page .contact-1 .contact-box .contact-content .right form textarea {
  height: 92px;
  padding: 10px;
  margin-bottom: 52px;
}
.contact-page .contact-1 .contact-box .contact-content .right form input[type="submit"] {
  padding: 18px 56px 18px 95px;
  border: none;
  background: url(../images/submit.png) no-repeat left 40px center var(--color);
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.contact-page .contact-1 .contact-box .contact-content .right form input[type="submit"]:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: url(../images/submit.png) no-repeat left 40px center #333;
}
.contact-page .contact-2 {
  padding: calc(3.959vw + 14px) 0 calc(3.1805vw + 14px);
}
.contact-page .contact-2 .icon {
  text-align: center;
}
.contact-page .contact-2 .icon i {
  font-size: 28px;
  color: #000;
  margin: 0 30px;
}
.contact-page .contact-2 p {
  text-align: center;
  margin-top: 32px;
  color: #242120;
  font-size: 16px;
  line-height: 30px;
}
.news-page .news-list {
  padding-bottom: 90px;
}
.news-page .news-list ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4.1667vw !important;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.0455vw;
}
.news-page .news-list ul li .left {
  width: 42.5%;
}
.news-page .news-list ul li .left a {
  display: block;
  overflow: hidden;
}
.news-page .news-list ul li .left a img {
  width: 100%;
}
.news-page .news-list ul li .right {
  width: 100%;
  /*padding-left: 26px;*/
}
.news-page .news-list ul li .right span {
  font-size: 14px;
  line-height: 28px;
  color: rgba(20, 20, 20, 0.5);
}
.news-page .news-list ul li .right h4 {
  font-size: 24px;
  line-height: 44px;
  color: #000000;
  font-weight: bold;
  margin: 20px 0;
}
.news-page .news-list ul li .right h4:hover {
  color: var(--color);
}
.news-page .news-list ul li .right p {
  font-size: 16px;
  line-height: 30px;
  color: #303030;
  display: -webkit-box;
}
.news-page .news-list ul li .right .more {
  display: inline-block;
  padding: 8px 32px;
  background: #1f1f1f;
  font-size: 14px;
  color: #fff;
  line-height: 2;
  margin-top: 28px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-list ul li .right .more:hover {
  background: var(--color);
}

.newdet-page .news-content {
  padding-bottom: 135px;
}
.newdet-page .news-content .title {
  padding: 15px 0 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.newdet-page .news-content .title span {
  font-size: 14px;
  line-height: 2;
  color: rgba(20, 20, 20, 0.5);
}
.newdet-page .news-content .title h1 {
  font-size: calc(0.8345vw + 14px);
  line-height: 1.4;
  color: #000000;
  font-weight: bold;
  margin-top: 20px;
}
.newdet-page .news-content .content {
  padding: 45px 0 200px;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 2;
  color: #303030;
}
.newdet-page .news-content .m-link h3 {
  font-size: 24px;
  line-height: 1;
  color: #1f1f1f;
  font-weight: bold;
  position: relative;
  margin-bottom: 25px;
}
.newdet-page .news-content .m-link h3::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.newdet-page .news-content .m-link .next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.newdet-page .news-content .m-link .next .left {
  width: 42.5%;
}
.newdet-page .news-content .m-link .next .left a {
  display: block;
  overflow: hidden;
}
.newdet-page .news-content .m-link .next .left a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.newdet-page .news-content .m-link .next .left a img {
  width: 100%;
}
.newdet-page .news-content .m-link .next .right {
  width: 57.5%;
  padding-left: 26px;
}
.newdet-page .news-content .m-link .next .right span {
  font-size: 14px;
  line-height: 1;
  color: rgba(20, 20, 20, 0.5);
}
.newdet-page .news-content .m-link .next .right h4 {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 20px;
}
.newdet-page .news-content .m-link .next .right h4:hover {
  color: var(--color);
}
.newdet-page .news-content .m-link .next .right p {
  font-size: 14px;
  line-height: 1.8;
  color: #303030;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.newdet-page .news-content .m-link .next .right .more {
  display: inline-block;
  padding: 8px 32px;
  background: #1f1f1f;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  margin-top: 28px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .news-content .m-link .next .right .more:hover {
  background: var(--color);
}
.category-page .container {
  max-width: 1570px;
}
.category-page .mbx-box .container {
  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;
}
.category-page .mbx-box .container .p-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;
  font-size: 14px;
  line-height: 1;
  color: #000000;
  position: relative;
}
.category-page .mbx-box .container .p-btn a:hover::after {
  width: 100%;
}
.category-page .mbx-box .container .p-btn a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  border-bottom: 1px solid #000;
  left: 0;
  top: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.category-page .mbx-box .container .p-btn a img {
  margin-right: 10px;
}
.category-page .category-box {
  padding-bottom: 70px;
}
.category-page .category-box .category-list .item-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;
  background: #f6f6f6;
  padding: 0 5%;
}
.category-page .category-box .category-list:nth-child(1) .item-box .item-img1 {
  position: relative;
  z-index: 10;
}
.category-page .category-box .category-list:nth-child(1) .item-box .item-img1 a {
  display: block;
  overflow: inherit;
  position: relative;
  height: auto;
}
/*.category-page .category-box .category-list:nth-child(1) .item-box .item-img1 img{
  position: absolute;
  max-width: none;
  width: 500px !important;
  left: 10*10px;
  bottom: -6.6*10px;
}*/
.category-page .category-box .category-list .item-box .item {
  width: 50%;
  position: relative;
  background: #f6f6f6;
  max-height: 400px;
}
.category-page .category-box .category-list .item-box .item .item-img {
  display: block;
  overflow: hidden;
}
.category-page .category-box .category-list .item-box .item .item-img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.category-page .category-box .category-list .item-box .item .item-img img {
  width: auto;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
.category-page .category-box .category-list .item-box .item-text {
  padding: 80px 60px;
  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;
  background: #f8f8f8;
}
.category-page .category-box .category-list .item-box .item-text .content {
  width: 100%;
}
.category-page .category-box .category-list .item-box .item-text .content h4 {
  font-size: 55px;
  line-height: 1;
  font-weight: bold;
  color: #121212;
}
.category-page .category-box .category-list .item-box .item-text .content h4:hover {
  color: var(--color);
}
.category-page .category-box .category-list .item-box .item-text .content p {
  font-size: 14px;
  line-height: 1.6;
  color: #202020;
  margin: 25px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.category-page .category-box .category-list .product-box {
  /*padding: 3*10px;*/
}
.category-page .category-box .category-list .product-box h3 {
  font-size: 22px;
  line-height: 1;
  color: #000000;
  padding-left: 85px;
  position: relative;
}
.category-page .category-box .category-list .product-box h3::after {
  position: absolute;
  content: "";
  width: 53px;
  height: 2px;
  border-bottom: 1px solid #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 13px;
}
.category-page .category-box .category-list .product-box .productBox {
  margin-top: 40px;
  padding: 0 50px;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a {
  display: block;
  text-align: center;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a:hover .p-img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a:hover h4::after {
  width: 100%;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a .p-img {
  overflow: hidden;
  height: 195px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a .p-img img {
  width: 100%;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a h5 {
  font-size: 20px;
  line-height: 1;
  color: #121212;
  text-transform: uppercase;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a h4 {
  font-size: 14px;
  line-height: 1;
  color: #121212;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a h4::after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  border-bottom: 1px solid #121212;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
/*.category-page .category-box .category-list:nth-child(4n-2) .item-box .item-text {
  left: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n-2) .item-box .item-img1 {
  left: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n-2) .item-box .item-img2 {
  right: 66.6666%;
}
.category-page .category-box .category-list:nth-child(4n-1) .item-box .item-text {
  left: 66.6666%;
}
.category-page .category-box .category-list:nth-child(4n-1) .item-box .item-img1 {
  right: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n-1) .item-box .item-img2 {
  right: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n) .item-box .item-text {
  left: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n) .item-box .item-img1 {
  left: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n) .item-box .item-img2 {
  right: 66.6666%;
}*/

.prodet-page{
  overflow: hidden;
  background: #f7f7f8;
  padding-top: 80px;
}

.prodet-page .prodet-box .prodet-1 {
  padding: 20px 0 80px;
}
.prodet-page .prodet-box .prodet-1 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align:flex-start;
  -webkit-align-items: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.prodet-page .prodet-box .prodet-1 .container .left {
  width: 41%;
  padding-right: 90px;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-big,
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-slide a,
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a .p-img{
background: #fff;
display: block;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll {
  padding: 20px 0;
  position: relative;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll i{
  font-size: var(--ft32);
  color: #000;
  position: absolute;
  z-index: 5;
  top: 50%;
  font-weight: 900;
  transform: translateY(-50%);
  cursor: pointer;
    -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll i:hover{
  color: var(--color);
}
.isl{
  left: -40px;
}
.isr{
  right: -27px;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-wrapper{
  margin: -10px;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-slide {
  padding: 10px;
}

.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-button-prev,
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-button-next {
  width: 16px;
  height: 29px;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-button-prev {
  background: url(../images/ped-left.png) no-repeat center center;
  background-size: 100% 100%;
  left: 0;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-button-next {
  background: url(../images/ped-right.png) no-repeat center center;
  background-size: 100% 100%;
  right: 0;
}
.prodet-page .prodet-box .prodet-1 .container .right {
  width: 50%;
  padding-left: 25px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box h3.tit {
  font-size: var(--ft38);
  line-height: 44px;
  color: var(--color);
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box h1 {
  font-size: var(--ft24);
  line-height: 1.4;
  color: #121212;
  font-weight: 600;
  /*text-transform: uppercase;*/
  margin: 15px 0;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box p {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  padding-bottom: 20px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box p:nth-last-of-type(1){
  border-bottom:  none;
}

.prodet-page .prodet-box .prodet-1 .container .right .text-box p:nth-last-of-type(2){
  border-bottom:none;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .content {
  font-size: 16px;
  line-height: 30px;
  margin-top: 40px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .product-color {
  margin-top: 30px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .product-color span {
  font-size: 14px;
  line-height: 1;
  color: #444444;
  display: block;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .product-color .colorBox {
  margin-top: 20px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .product-color .colorBox .swiper-slide {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .product-color .colorBox .swiper-slide:hover {
  background: #f4f4f4;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box {
  margin-top: 35px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box a {
  display: inline-block;
  padding: 16px 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: var(--ft18);
  line-height: 1;
  color: #121212;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box a:hover {
  border: 1px solid var(--color);
  color: #fff;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box a:hover::after {
  width: 100%;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background: var(--color);
  left: 0;
  top: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: -1;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box .inquiry {
  padding: 16px 60px;
  border: 1px solid #000000;
  margin-left: 18px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .share {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .share .icon {
  font-size: 14px;
  line-height: 2;
  font-weight: 100;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .share .icon a {
  padding: 0 18px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .share .icon a:hover {
  color: var(--color);
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .share .icon a:last-child {
  border-right: none;
}
.prodet-page .prodet-box .prodet-2 h3 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.prodet-page .prodet-box .prodet-2 h3 span {
  display: inline-block;
  font-size: var(--ft18);
  line-height: 1;
  color: #000;
  padding: 12px 25px;
  background: #ccc;
  position: relative;
  cursor: pointer;
}
.prodet-page .prodet-box .prodet-2 h3 span.active {
  color: #fff;
  background: var(--color);
}
.prodet-page .prodet-box .prodet-2 h3 span.active::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 100%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--color);
}
.prodet-page .prodet-box .prodet-2 .content {
  padding: 60px 0 50px;
  font-size: var(--ft18);
}

.prodet-page .prodet-box .prodet-2 .content strong {
  font-weight: bold;
  display: block;
}

.prodet-page .prodet-box .prodet-3 {
  padding: 40px 0 45px;
  background: #f5f5f5;
}
.prodet-page .prodet-box .prodet-3 h3 {
  font-size: 20px;
  line-height: 1;
  color: #1f1f1f;
  font-weight: bold;
}
.prodet-page .prodet-box .prodet-3 .reportBox {
  margin: 45px -10px 0;
}
.prodet-page .prodet-box .prodet-3 .reportBox .swiper-container {
  padding: 10px;
}
.prodet-page .prodet-box .prodet-3 .reportBox .swiper-container .swiper-slide a {
  display: block;
  overflow: hidden;
  -webkit-box-shadow: 2px 3px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 2px 3px 5px 0 rgba(0, 0, 0, 0.3);
}
.prodet-page .prodet-box .prodet-3 .reportBox .swiper-container .swiper-slide a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.prodet-page .prodet-box .prodet-3 .reportBox .swiper-container .swiper-slide a img {
  width: 100%;
}
.prodet-page .prodet-box .prodet-4 {
  padding: 60px 0;
}
.prodet-page .prodet-box .prodet-4 h3 {
  font-size: 35px;
  color: #080808;
  font-weight: 600;
  text-align: center;
}
.prodet-page .prodet-box .prodet-4 .recommendBox {
  margin-top: 40px;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-wrapper {
  margin: -15px;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide {
  padding: 15px;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a {
  display: block;
  text-align: center;
}

.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a:hover h4::after {
  width: 100%;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a .p-img {
  overflow: hidden;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a .p-img img {
  width: 100%;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a h5 {
  font-size: 20px;
  line-height: 36px;
  color: #121212;
  /*text-transform: uppercase;*/
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a h4 {
  font-size: 14px;
  line-height: 2;
  color: #121212;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  font-weight: 500;
  padding-bottom: 4px;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a h4::after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  border-bottom: 1px solid var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page.prodet2-page .prodet-box .container {
  max-width: 1605px;
}
.prodet-page.prodet2-page .prodet-box .prodet-1 .left {
  width: 55%;
}
.prodet-page.prodet2-page .prodet-box .prodet-1 .right {
  width: 45%;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 {
  border-top: 1px solid #d9d9d9;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .title {
  padding: 40px 0 85px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .title h3 {
  font-size: 28px;
  line-height: 1;
  color: #000000;
  font-weight: bold;
  margin-bottom: 14px;
  border: none;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .title p {
  font-size: var(--ft18);
  line-height: 1.8;
  color: #000000;
  font-weight: 100;
  max-width: 1150px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li .left {
  width: 58%;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li .right {
  width: 42%;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li .right .tit {
  width: 100%;
  padding: 0 30px;
  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;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li .right .tit h4 {
  font-size: 24px;
  color: #000000;
  padding-top: 25px;
  position: relative;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li .right .tit h4::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  top: 0;
  left: 0;
  border-top: 1px solid #d9d9d9;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box {
  margin-top: 50px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container {
  max-width: 1230px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content {
  padding: 110px 0 100px;
  /*border-top: 1px solid #a3a3a3;*/
  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;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .left {
  width: 42%;
  padding: 15px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right {
  width: 58%;
  padding-left: 5%;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right h5 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  padding: 0 6px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list {
  margin-top: 40px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item {
  margin-bottom: 15px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 6px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .title h6 {
  font-size: var(--ft18);
  color: #000;
  line-height: 1;
  font-weight: 400;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .title i {
  font-size: var(--ft18);
  color: #000;
  font-weight: bold;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .title i::before {
  content: "+";
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box {
  display: none;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box ul {
  padding: 15px;
  margin-left: 40px;
  margin-bottom: 20px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box ul li {
  font-size: 16px;
  color: #565656;
  margin-bottom: 5px;
  list-style-type: disc;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box .box {
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box .box p {
  width: 50%;
  margin-bottom: 20px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box .box p .spec-title {
  display: block;
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
  font-weight: 500;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box .box p .spec-value {
  display: block;
  font-size: 16px;
  color: #565656;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item.active .title {
  border: 2px solid #000;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item.active .title i::before {
  content: "-";
}
.prodet-page.prodet2-page .prodet-box .prodet-3 {
  padding: 60px 0;
  background: #000;
  text-align: center;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .container {
  max-width: 1230px;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 h5 {
  margin: 0;
  text-align: center;
  color: #fff;
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox {
  margin-top: 30px;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .e-img {
  overflow: hidden;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .e-img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .e-img img {
  width: 100%;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .content {
  padding: 15px 5px;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .content h6 {
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .05em;
  font-weight: 700;
  margin-bottom: 20px;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .content p {
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 a {
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  text-transform: uppercase;
  line-height: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 100;
  margin-top: 50px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 {
  background: #f1f1f1;
  padding: 30px 0 50px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 .top {
  text-align: center;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 .top h4 {
  font-size: 26px;
  line-height: 1;
  color: #1e1e1e;
  font-weight: 600;
  letter-spacing: 1px;
  padding-top: 17px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 .top p {
  font-size: 16px;
  line-height: 1;
  color: #1e1e1e;
  margin-top: 35px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form {
  margin-top: 42px;
  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;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form input[type="text"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 0px 0px 0px 16px;
  height: 48px;
  text-align: left;
  color: #242424;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  background-color: #ffffff;
  border: 1px solid #242424;
  margin-left: 5px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form input[name="name"] {
  width: 140px;
  margin-left: 0;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form input[name="mail"] {
  width: 240px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form input[name="content"] {
  width: 300px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form input[type="submit"] {
  background: #000000;
  border-radius: 0px;
  border-style: solid;
  border-color: #000000;
  border-width: 5px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  white-space: normal;
  padding: 11px 10px;
  text-align: center;
  word-break: break-word;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  cursor: pointer;
  height: auto;
}

/*.about-page .about-1 {
  padding-top: 15px;
}*/
.about-page .about-1 .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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-page .about-1 .about-box .left {
  width: 53%;
  position: relative;
}
/*.about-page .about-1 .about-box .left::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  background: var(--color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}*/
.about-page .about-1 .about-box .right {
  width: 47%;
  /*padding-left: 5%;*/
}
.about-page .about-1 .about-box .right h2 {
  font-size: 45px;
  line-height: 1;
  color: #1c1c1c;
  font-weight: bold;
  margin-bottom: calc(1.88vw + 14px);
}
.about-page .about-1 .about-box .right .h3 {
  font-size: calc(0.8345vw + 14px);
  line-height: 1.6;
  color: var(--color);
  font-weight: bold;
  margin-top: 30px;
}
.about-page .about-1 .about-box .right p {
  font-size: 16px;

  color: #000000;
  
      text-indent: 2em;
    line-height: 2;
}
.about-page .about-1 .text {
  padding: 100px 0 100px;
  text-align: center;
  color: #000;
}
.about-page .about-1 .text h2 {
  font-size: 45px;
  font-weight: bold;
      text-transform: uppercase;
}
.about-page .about-1 .text p {
  font-size: 16px;
  margin-top: 20px;
}
.about-page .about-1-2 {
  padding: calc(7.759vw + 6px) 0 145px;
background: url(../images/about-2-bg2.2.jpg) no-repeat center center;
     

}
.about-page .about-1-2 .left{width: 50%}
.about-page .about-1-2 .left h2{font-size: calc(1.77vw + 14px); color: #111; font-weight: 700;}
.about-page .about-1-2 .right{width: 50%}
.about-page .about-1-2 .right p{font-size: var(--ft18); }
.about-page .about-1-2 .left p{font-size: var(--ft18);color: #585757; line-height: 2;}
.about-page .about-1-2 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -15px;
}

.about-page .about-1-2 ul li {
  width: 20%;
  text-align: center;
  position: relative;
  padding: 15px;
}
.about-page .about-1-2 ul li:last-child::after {
  display: none;
}

.about-page .about-1-2 ul li h4 {
  font-size: calc(3.0225vw + 14px);
  line-height: 1;
  color: #eda432;
  font-weight: bold;
}
.about-page .about-1-2 ul li h4 span {
  font-weight: 100;
  font-size: 22px;
}
.about-page .about-1-2 ul li p {
  font-size: var(--ft18);
  /*line-height: 32px;*/
  color: #242424;
  margin-top: 12px;
}
.about-page .about-3 {

  background-size: cover;
}
.about-page .about-3 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-page .about-3 .top .left {
  width: 50%;
  text-align: right;
  padding: 100px 0 100px 0;
}
.about-page .about-3 .top .left img {
  margin-right: 70px;
}
.about-page .about-3 .top .right {
  width: 50%;
  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;
  padding: 40px 20px;
}
.about-page .about-3 .top .right ul li {
  padding-left: 125px;
  position: relative;
  font-size: 24px;
  color: #5e5e5e;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-bottom: 40px;
}
.about-page .about-3 .top .right ul li:hover {
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
}
.about-page .about-3 .top .right ul li:last-child {
  margin-bottom: 0;
}
.about-page .about-3 .top .right ul li::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  border-bottom: 1px solid #000;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about-page .about-3 .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*-webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;*/
  align-items: flex-start;
  padding-bottom: 130px;
}
.about-page .about-3 .bottom .left {
  width: 50%;
  padding-left: 120px;
}
.about-page .about-3 .bottom .left h2 {
  font-size: 45px;
  color: #000000;
  font-weight: bold;
  max-width: 700px;
}
.about-page .about-3 .bottom .left .more {
  margin: 45px 0;
}
.about-page .about-3 .bottom .left p {
  font-size: 24px;
  color: #676767;
  letter-spacing: 3px;
  line-height: 2;
}
.about-page .about-3 .bottom .right {
  width: 50%;
  text-align: right;
  padding-left: 30px;
}
.about-page .about-4 {
  padding: 100px 0 147px;
  background: url(../images/about-4-bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.about-page .about-4 .container {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-page .about-4 .container .left {
  width: 50%;
  text-align: center;
}
.about-page .about-4 .container .left .content {
  display: inline-block;
  position: relative;
}
.about-page .about-4 .container .left .content .ball {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-page .about-4 .container .left .content .ball .box {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  -webkit-animation: kz 20s infinite linear;
  -moz-animation: kz 20s infinite linear;
  animation: kz 20s infinite linear;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  position: relative;
}
.about-page .about-4 .container .left .content .ball .box .text1 {
  position: absolute;
  top: 0;
  left: -20px;
  border-radius: 100%;
  width: 140px;
  height: 140px;
  line-height: 140px;
  font-size: 26px;
  text-align: center;
  color: #fff;
  background: #a6a6a6;
  -webkit-animation: kzs 20s infinite linear;
  -moz-animation: kzs 20s infinite linear;
  animation: kzs 20s infinite linear;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
.about-page .about-4 .container .left .content .ball .box .text2 {
  position: absolute;
  top: -40px;
  right: 65px;
  border-radius: 100%;
  width: 125px;
  height: 125px;
  line-height: 125px;
  font-size: 26px;
  color: #fff;
  text-align: center;
  background: #8a8a8a;
  -webkit-animation: kzs 20s infinite linear;
  -moz-animation: kzs 20s infinite linear;
  animation: kzs 20s infinite linear;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
.about-page .about-4 .container .left .content .ball .box .text3 {
  position: absolute;
  top: 155px;
  right: -75px;
  border-radius: 100%;
  width: 175px;
  height: 175px;
  line-height: 175px;
  font-size: 36.5px;
  color: #fff;
  text-align: center;
  background: #bbbbbb;
  -webkit-animation: kzs 20s infinite linear;
  -moz-animation: kzs 20s infinite linear;
  animation: kzs 20s infinite linear;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
.about-page .about-4 .container .left .content .ball .box .text4 {
  position: absolute;
  bottom: -40px;
  right: 35px;
  border-radius: 100%;
  width: 170px;
  height: 170px;
  line-height: 170px;
  font-size: 26px;
  color: #fff;
  text-align: center;
  background: #565656;
  -webkit-animation: kzs 20s infinite linear;
  -moz-animation: kzs 20s infinite linear;
  animation: kzs 20s infinite linear;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
.about-page .about-4 .container .left .content .ball .box .text5 {
  position: absolute;
  bottom: 32px;
  left: -50px;
  border-radius: 100%;
  width: 195px;
  height: 195px;
  line-height: 195px;
  font-size: 35px;
  color: #fff;
  text-align: center;
  background: #363636;
  -webkit-animation: kzs 20s infinite linear;
  -moz-animation: kzs 20s infinite linear;
  animation: kzs 20s infinite linear;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
.about-page .about-4 .container .right {
  width: 50%;
}
.about-page .about-4 .container .right .text {
  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;
}
.about-page .about-4 .container .right h2 {
  font-size: 161px;
  line-height: .8;
  color: #ffffff;
  font-weight: bold;
}
.about-page .about-4 .container .right h3 {
  font-size: 62px;
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
  margin-left: 10px;
}
.about-page .about-4 .container .right p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 40px;
}
.about-page .about-5 {
  padding: 55px 0 72px;
  background: url(../images/about-5.jpg) no-repeat center center;
  background-size: cover;
}
.about-page .about-5 h3 {
  font-size: calc(0.8345vw + 14px);
  line-height: 1;
  color: #ffffff;
}
.about-page .about-5 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-top: 40px;
}
.about-page .about-5 ul li {
  width: 50%;
  padding-left: 28px;
  border-left: 1px solid #fff;
}
.about-page .about-5 ul li:hover img {
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
.about-page .about-5 ul li h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 36px;
  line-height: 1;
  color: #ffffff;
}
.about-page .about-5 ul li h2 img {
  margin-left: 45px;
}
.about-page .about-5 ul li p {
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  margin-top: 20px;
}
.about-page .about-6 {
  background: #ebebeb;
  background-size: cover;
  background-attachment: fixed;
  padding: 85px 0 85px;
}
.about-page .about-6 h2 {
  font-size: 45px;
  color: #181818;
  font-weight: bold;
  text-align: center;
}
.about-page .about-6 .historyBox {
  margin-top: 70px;
}
.about-page .about-6 .historyBox ul {
  margin: 0 -20px;
}
.about-page .about-6 .historyBox ul li {
  padding: 0 20px;
}
.about-page .about-6 .historyBox .swiper-container {
  height: 470px;
}
.about-page .about-6 .historyBox .swiper-slide {
  text-align: center;
  padding: 75px 0 15px;
  position: relative;
}
.about-page .about-6 .historyBox .swiper-slide::after {
  position: absolute;
  content: "";
  width: 2px;
  border-left: 1px solid #181818;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 30px;
  height: 48px;
}
.about-page .about-6 .historyBox .swiper-slide h4 {
  font-size: 36px;
  line-height: 1;
  color: #181818;
  font-weight: bold;
}
.about-page .about-6 .historyBox .swiper-slide p {
  font-size: 20px;
  line-height: 1;
  color: #181818;
  margin-top: 18px;
}
.about-page .about-7 {
  padding: 100px 0 100px;
  text-align: center;
  color: #fff;
  background: var(--color);
}
.about-page .about-7 .top h2 {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 30px;
}
.about-page .about-7 .top p {
  font-size: 16px;
  line-height: 30px;
}
.about-page .about-7 .top p.p {
  font-size: 14px;
}
.about-page .about-7 .top .txt {
  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-top: 36px;
  padding: 0 55px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.about-page .about-7 .top .txt::after {
  position: absolute;
  content: "";
  width: 780px;
  height: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}
.about-page .about-7 .top .txt img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  margin-top: 15px;
}
.about-page .about-7 .top .txt h4 {
  font-size: 26px;
  line-height: 1;
}
.about-page .about-7 .top .txt h4 span {
  font-size: calc(1.77vw + 14px);
  line-height: 1;
  font-weight: bold;
}
.about-page .about-7 .map-box {
  margin-top: 45px;
}
.about-page .about-7 .map-box .map {
  display: inline-block;
  position: relative;
}
.about-page .about-7 .map-box .map .item {
  position: absolute;
  text-align: left;
}
.about-page .about-7 .map-box .map .item h5 {
  font-size: 25px;
  color: #f9f9f9;
  font-weight: bold;
}
.about-page .about-7 .map-box .map .item li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #ffffff;
  font-size: 12px;
  line-height: 1;
  color: #000;
  margin-right: 2px;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 6;
}
.about-page .about-7 .map-box .map .item li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  display: block;
  z-index: -1;
}
.about-page .about-7 .map-box .map .item li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  z-index: -1;
}
.about-page .about-7 .map-box .map .item li:hover {
  background: #242424;
  color: #fff;
}
.about-page .about-7 .map-box .map .item li:hover::before {
  -webkit-animation: ks 2s infinite;
  -moz-animation: ks 2s infinite;
  animation: ks 2s infinite;
}
.about-page .about-7 .map-box .map .item li:hover::after {
  -webkit-animation: ks 2s infinite;
  -moz-animation: ks 2s infinite;
  animation: ks 2s infinite;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}
.about-page .about-7 .map-box .map .item 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;
  -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;
  margin-top: 14px;
}
.about-page .about-7 .map-box .map .item:nth-child(1) {
  left: 73%;
  top: 30%;
}
.about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1) {
  width: 80px;
  height: 80px;
}
.about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1) span {
  position: relative;
  z-index: 5;
  width: 100%;
  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;
  background: var(--color);
  color: #fff;
  border-radius: 100%;
}
.about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
}
.about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}
.about-page .about-7 .map-box .map .item:nth-child(2) {
  left: 41%;
  top: 15%;
  text-align: center;
}
.about-page .about-7 .map-box .map .item:nth-child(2) ul {
  max-width: 186px;
}
.about-page .about-7 .map-box .map .item:nth-child(2) ul li:nth-child(1) {
  margin-right: 3px;
}
.about-page .about-7 .map-box .map .item:nth-child(3) {
  left: 15%;
  top: 22%;
}
.production-page .production-1 {
  padding: 52px 0 120px;
  background: url(../images/production-1-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.production-page .production-1::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 118px;
  border-right: 1px solid #a5a5a5;
  bottom: -59px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.production-page .production-1 .production-box {
  padding-top: 80px;
}
.production-page .production-1 .production-box h2 {
  font-size: calc(1.77vw + 14px);
  line-height: 1;
  color: #202020;
  text-align: center;
  font-weight: bold;
}
.production-page .production-1 .production-box .content-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 55px;
}
.production-page .production-1 .production-box .content-box h4 {
  font-size: 20px;
  line-height: 1;
  color: #000000;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}
.production-page .production-1 .production-box .content-box .box {
  width: 125px;
  height: 125px;
  font-size: var(--ft18);
  line-height: 1;
  text-align: center;
  color: #191919;
  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;
  font-weight: bold;
  border: 5px solid #2c2c2c;
  outline: 2px solid rgba(0, 0, 0, 0.2);
  outline-offset: -20px;
  border-radius: 100%;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 6;
}
.production-page .production-1 .production-box .content-box .box:hover {
  color: #fff;
  background: #2e2e2e;
  outline: 0px solid rgba(0, 0, 0, 0.2);
}
.production-page .production-1 .production-box .content-box .box:hover::before {
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
}
.production-page .production-1 .production-box .content-box .box:hover::after {
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}
.production-page .production-1 .production-box .content-box .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(46, 46, 46, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  display: block;
  z-index: -1;
}
.production-page .production-1 .production-box .content-box .box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(46, 46, 46, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  z-index: -1;
}
.production-page .production-1 .production-box .content-box .left {
  padding-right: 60px;
  position: relative;
}
.production-page .production-1 .production-box .content-box .right {
  padding-left: 60px;
  position: relative;
}
.production-page .production-1 .production-box .content-box .centre ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 38px;
  position: relative;
}
.production-page .production-1 .production-box .content-box .centre ul::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 80px;
  border-left: 1px solid #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.production-page .production-1 .production-box .content-box .centre ul::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 80px;
  border-left: 1px solid #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.production-page .production-1 .production-box .content-box .centre ul li {
  padding: 0 22px;
  position: relative;
}
.production-page .production-1 .production-box .content-box .centre ul li .box {
  background: #f0f0f0;
}
.production-page .production-1 .production-box .content-box .centre ul li .box:hover {
  background: #2e2e2e;
  outline: 0px solid rgba(0, 0, 0, 0.2);
}
.production-page .production-1 .production-box .content-box .centre ul li:last-child::after {
  display: none;
}
.production-page .production-1 .production-box .content-box .centre ul li::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  border-bottom: 1px solid #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -12px;
}
.production-page .production-1 .production-box p {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: #191919;
  margin-top: 43px;
}
.production-page .production-2 {
  padding: 85px 0 200px;
  position: relative;
  background: url(../images/production-2-bg.jpg) no-repeat center center;
  background-size: cover;
}
.production-page .production-2 .container {
  max-width: 1375px;
}
.production-page .production-2::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 118px;
  border-right: 1px solid #a5a5a5;
  bottom: -59px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.production-page .production-2 h2 {
  text-align: center;
  font-size: calc(1.77vw + 14px);
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 40px;
}
.production-page .production-2 .item {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.production-page .production-2 .item .left {
  width: 50%;
  position: relative;
  z-index: 5;
}
.production-page .production-2 .item .left h3 {
  font-size: 64px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  padding-bottom: 90px;
  position: relative;
}
.production-page .production-2 .item .left h3::after {
  content: attr(data-shadow);
  position: absolute;
  left: 0;
  bottom: 15px;
  z-index: -1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  font-size: 88px;
  line-height: 1;
  font-weight: bold;
}
.production-page .production-2 .item .left h4 {
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
}
.production-page .production-2 .item .left p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin-top: 15px;
}
.production-page .production-2 .item .left .more {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 45px;
}
.production-page .production-2 .item .right {
  width: 50%;
  text-align: right;
  position: relative;
  z-index: 2;
}
.production-page .production-2 .item .right .e-img {
  padding: 0 27px 30px 0;
  position: relative;
  display: inline-block;
}
.production-page .production-2 .item .right .e-img .box {
  position: relative;
}
.production-page .production-2 .item .right .e-img .box::after {
  position: absolute;
  content: "";
  width: 95%;
  height: 95%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  right: -27px;
  bottom: -30px;
}
.production-page .production-2 .tit {
  text-align: center;
  font-size: 44px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  margin: 88px 0 95px;
}
.production-page .production-2 .item.item2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.production-page .production-2 .item.item2 .left {
  padding-left: 110px;
}
.production-page .production-2 .item.item2 .left h4 {
  line-height: 1.4;
}
.production-page .production-2 .item.item2 .right {
  text-align: left;
}
.production-page .production-2 .item.item2 .right .e-img {
  padding: 25px 22px 0 0;
}
.production-page .production-2 .item.item2 .right .e-img .box::after {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: none;
  right: -22px;
  bottom: auto;
  top: -25px;
}
.production-page .production-3 {
  padding: 105px 0 150px;
}
.production-page .production-3 .container {
  max-width: 1360px;
}
.production-page .production-3 .container h2 {
  text-align: center;
  font-size: calc(1.77vw + 14px);
  line-height: 1;
  color: #000;
  font-weight: bold;
  margin-bottom: 53px;
}
.production-page .production-3 .container .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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.production-page .production-3 .container .box .left {
  width: 44%;
  padding-right: 50px;
}
.production-page .production-3 .container .box .left p {
  font-size: 16px;
  line-height: 1.8;
  color: #202020;
  max-width: 475px;
  margin-bottom: 35px;
  letter-spacing: 4px;
}
.production-page .production-3 .container .box .right {
  width: 56%;
}
.production-page .production-3 .container .box .right .swiper-slide a {
  display: block;
  overflow: hidden;
}
.production-page .production-3 .container .box .right .swiper-slide a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.production-page .production-3 .container .box .right .swiper-slide a img {
  width: 100%;
}
.production-page .production-4 {
  background: #040404;
}
.production-page .production-4 h2 {
  width: 25%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 80px;
  font-size: calc(1.77vw + 14px);
  line-height: 1;
  color: #fff;
  font-weight: bold;
  z-index: 2;
}
.production-page .production-4 .honorBox {
  position: relative;
}
.production-page .production-4 .honorBox .swiper-slide {
  background: url(../images/honor-bg.png) no-repeat center center;
  background-size: cover;
  padding: 180px 20px 65px;
}
.production-page .production-4 .honorBox .swiper-slide a {
  display: block;
  text-align: center;
}
.production-page .production-4 .honorBox .swiper-slide a:hover img {
  -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}
.production-page .production-4 .honorBox .swiper-slide a:hover .see {
  color: #fff;
}
.production-page .production-4 .honorBox .swiper-slide a:hover .see::after {
  width: 70px;
}
.production-page .production-4 .honorBox .swiper-slide a span {
  display: inline-block;
  margin-bottom: 30px;
}
.production-page .production-4 .honorBox .swiper-slide a span img {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
.production-page .production-4 .honorBox .swiper-slide a p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.production-page .production-4 .honorBox .swiper-slide a .see {
  display: inline-block;
  padding-top: 30px;
  margin-top: 40px;
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.production-page .production-4 .honorBox .swiper-slide a .see::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.production-page .production-4 .honorBox .swiper-slide a .see::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  bottom: -4px;
  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;
}
.production-page .production-4 .honorBox .swiper-button-prev,
.production-page .production-4 .honorBox .swiper-button-next {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  margin-top: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.production-page .production-4 .honorBox .swiper-button-prev {
  left: -50px;
}
.production-page .production-4 .honorBox .swiper-button-next {
  right: -50px;
}
.product-page {
  background: #f7f7f8;

}
.product-page11{
  padding-top: 77px;
}
.product-page .title h1 {
  font-size: 45px;
  line-height: 1;
  color: #000;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.product-page .title p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  max-width: 1200px;
}
.product-page .product-box {
  margin-top: 30px;
  padding-bottom: 100px;
}
.product-page .product-box .product-list {
  margin-top: 50px;
}
.product-page .product-box .product-list666{
  margin-top: 0;
}
.product-page .product-box .product-list ul {
  margin: -15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.li_o {
  width: 25%;
  padding: 15px;
  margin-bottom: 60px;
}
.li_o a {
  border-radius: 10px;
  padding: 0 24px 35px;
  background: #fff;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.li_o a:hover {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}

.li_o a .p-img {
  overflow: hidden;
  position: relative;
  margin-bottom: 0px;
  /*max-height: 223px;*/
}
.li_o a h4 {
  font-size: 24px;
  line-height: 1;
  color: #000;
}
.li_o a h5 {
  font-size: var(--ft18);
  line-height: 1;
  color: #000;
  margin-top: 12px;
}
.li_o a p {
  text-align: center;
  font-size: var(--ft16);
  color: #000;
  margin-bottom: var(--ft24);
}


/*.li_o > div i {
  position: absolute;
  z-index: 1;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  width: 0;
  height: 0;
}*/
.li_o > div i.ie1 {
  width: 2px;
  top: 0;
  left: 0;
}
.li_o > div i.ie2 {
  width: 2px;
  bottom: 0;
  right: 0;
}
.li_o > div i.ie3 {
  height: 2px;
  top: 0;
  right: 0;
}
.li_o > div i.ie4 {
  height: 2px;
  bottom: 0;
  left: 0;
}
.li_o > div:hover i.ie1 {
  height: 100%;
  bottom: 0;
  top: auto;
}
.li_o > div:hover i.ie2 {
  height: 100%;
  top: 0;
}
.li_o > div:hover i.ie3 {
  width: 100%;
  left: 0;
}
.li_o > div:hover i.ie4 {
  width: 100%;
  right: 0;
  left: auto;
}


.product-page .product-box .product-list .m-page {
  margin-top: 60px;
}


.product-page .product-box .cate-list{
  margin-top: 70px;
}
.product-page .product-box .cate-list ul{
  margin: -15px -25px;
}
.product-page .product-box .cate-list ul li{
  padding: 15px 25px;
}

.product-page .product-box .cate-list ul li > div{
  background-color: white;
  display: flex;
  flex-wrap: wrap;
}

.product-page .product-box .cate-list ul li .img{
  width: 40%;
}

.product-page .product-box .cate-list ul li .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page .product-box .cate-list ul li .content{
  width: 60%;
  padding: 30px;
  margin: auto 0;
}

.product-page .product-box .cate-list ul li .content a.moreBtn{
  color: #2451a0;
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 1250px) {
  .li_o {
  width: 33.33%;
  padding: 15px;
  margin-bottom: 60px;
}
}

@media screen and (max-width: 1000px) {
  .product-page .product-box .cate-list ul li{
    width: 100%!important;
  }
}

@media screen and (max-width: 500px) {
  .product-page .product-box .cate-list ul li .img{
    width: 100%;
  }
  .product-page .product-box .cate-list ul li .content{
    width: 100%;
  }
}


.research-page .research-1 {
  padding: 50px 0 27px;
  background: url(../images/research-1-bg.jpg) no-repeat center center;
}
.research-page .research-1 .text {
  padding: 135px 0 105px;
}
.research-page .research-1 .text h2 {
  font-size: 36px;
  line-height: 1;
  color: #070707;
  font-weight: bold;
}
.research-page .research-1 .text p {
  font-size: 14px;
  line-height: 2;
  color: #070707;
  max-width: 575px;
  margin-top: 30px;
}
.research-page .research-1 ul {
  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;
}
.research-page .research-1 ul li {
  font-size: 16px;
  line-height: 1;
  color: #2e2e2e;
  padding: 12px 68px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.research-page .research-1 ul li:hover {
  background: #000000;
  color: #fff;
}
.research-page .research-2 {
  padding: 0 0 145px;
}
.research-page .research-2 .research-list .item {
  padding-top: 40px;
}
.research-page .research-2 .research-list .item:last-child {
  margin-bottom: 0;
}
.research-page .research-2 .research-list .item h3 {
  font-size: 28px;
  line-height: 1;
  color: #0a0a0a;
  font-weight: bold;
  padding-top: 28px;
  position: relative;
  margin-bottom: 15px;
}
.research-page .research-2 .research-list .item h3::after {
  position: absolute;
  content: "";
  width: 83px;
  height: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
}
.research-page .research-2 .research-list .item p {
  font-size: 16px;
  line-height: 1.8;
  color: #0a0a0a;
}
.research-page .research-2 .research-list .item .researchBox {
  margin-top: 50px;
}
.research-page .research-2 .research-list .item .researchBox .swiper-slide a {
  display: block;
  overflow: hidden;
}
.research-page .research-2 .research-list .item .researchBox .swiper-slide a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.research-page .research-2 .research-list .item .researchBox .swiper-slide a img {
  width: 100%;
}
.research-page .research-2 .research-list .item .researchBox ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.research-page .research-2 .research-list .item .researchBox ul li {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 40px;
}
.research-page .research-2 .research-list .item .researchBox ul li a {
  display: block;
  overflow: hidden;
}
.research-page .research-2 .research-list .item .researchBox ul li a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.research-page .research-2 .research-list .item .researchBox ul li a img {
  width: 100%;
}
.research-page .research-2 .research-list .item .researchBox ul li .content {
  margin-top: 25px;
}
.research-page .research-2 .research-list .item .researchBox ul li .content h4 {
  padding-left: 10px;
  border-left: 2px solid #000;
  font-size: var(--ft18);
  line-height: 1;
  color: #0a0a0a;
  margin-bottom: 10px;
}
.research-page .research-2 .research-list .item .researchBox ul li .content h4:nth-child(3) {
  display: none;
}
.research-page .research-2 .research-list .item .researchBox ul li .content p {
  font-size: 16px;
  line-height: 1.5;
  color: #0a0a0a;
  padding-left: 10px;
}
.research-page .research-2 .research-list .item .researchBox ul li .content p:nth-child(4) {
  display: none;
}
.research-page .research-2 .research-list .item:nth-child(1) .researchBox ul li {
  width: 33.333%;
}
.research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li {
  width: 33.3333%;
}
.research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li:nth-child(1),
.research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li:nth-child(2) {
  width: 50%;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li {
  width: 33.3333%;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) a {
  display: block;
  width: 33.3333%;
  padding: 0 15px;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) a:hover img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content {
  width: 66.6666%;
  padding: 0 15px;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content p {
  line-height: 1.8;
  margin-bottom: 40px;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content p:last-child {
  margin-bottom: 0;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content h4:nth-child(3) {
  display: block;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content p:nth-child(4) {
  display: block;
}
.research-page.research2-page .research-1 {
  background: url(../images/research2-1-bg.jpg) no-repeat center center;
}
.research-page.research2-page .research-1 ul li {
  width: 19.5%;
  padding: 12px 0;
  text-align: center;
}
.sustainability-page .sustainability-box h2.title {
  font-size: calc(1.77vw + 14px);
  line-height: 1;
  color: #000000;
  font-weight: bold;
}
.sustainability-page .sustainability-box span.tit {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 1;
  color: #1c1c1c;
  padding-right: 24px;
}
.sustainability-page .sustainability-box span.tit::after {
  position: absolute;
  content: "";
  width: 82px;
  height: 2px;
  border-bottom: 1px solid #1c1c1c;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sustainability-page .sustainability-box p {
  font-size: 16px;
  color: #1c1c1c;
}
.sustainability-page .sustainability-box h4 {
  font-size: 24px;
  line-height: 1;
  color: #000000;
}
.sustainability-page .sustainability-box .left .content h2 {
  margin: 30px 0;
}
.sustainability-page .sustainability-box .left .content h4 {
  margin-bottom: 30px;
}
.sustainability-page .sustainability-box .left .content p {
  line-height: 2;
}
.sustainability-page .sustainability-box .sustainability-1 {
  padding: 35px 0 150px;
}
.sustainability-page .sustainability-box .sustainability-1 .container {
  max-width: 1365px;
}
.sustainability-page .sustainability-box .sustainability-1 .container .text-box {
  margin-bottom: 35px;
}
.sustainability-page .sustainability-box .sustainability-1 .container .text-box .text {
  width: 52%;
}
.sustainability-page .sustainability-box .sustainability-1 .container .text-box .text h2 {
  position: relative;
  padding-bottom: 27px;
  display: inline-block;
  border-bottom: 1px solid #439836;
  margin-bottom: 30px;
  letter-spacing: 4px;
}
.sustainability-page .sustainability-box .sustainability-1 .container .text-box .text h4 {
  margin-bottom: 23px;
}
.sustainability-page .sustainability-box .sustainability-1 .container .text-box .text p {
  line-height: 1.5;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
  position: relative;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li {
  width: 14.285%;
  padding: 10px;
  position: relative;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li .box {
  position: relative;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li .box:hover .img2 {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  opacity: 0;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li .box:hover .img {
  opacity: 1;
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  transform: rotateY(0);
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li .box .img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(1) {
  position: absolute;
  right: 28.57%;
  bottom: 100%;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(2) {
  position: absolute;
  right: 14.285%;
  bottom: 100%;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(3) {
  position: absolute;
  right: 0;
  bottom: 100%;
}
.sustainability-page .sustainability-box .sustainability-2 {
  padding: 90px 0 160px;
  background: url(../images/sustainability-2-bg.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
}
.sustainability-page .sustainability-box .sustainability-2 h3 {
  font-size: calc(1.77vw + 14px);
  line-height: 1;
  color: #fff;
  margin-bottom: 70px;
}
.sustainability-page .sustainability-box .sustainability-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: url(../images/sustainability-3-bg.jpg) no-repeat left center;
  position: relative;
}
.sustainability-page .sustainability-box .sustainability-3 .bg {
  width: 50%;
}
.sustainability-page .sustainability-box .sustainability-3 .img {
  width: 50%;
  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;
}
.sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box .left {
  padding-left: 45px;
}
.sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box .content {
  max-width: 605px;
}
.sustainability-page .sustainability-box .sustainability-4 {
  padding: 65px 0 605px;
  position: relative;
}
.sustainability-page .sustainability-box .sustainability-4 .box {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}
.sustainability-page .sustainability-box .sustainability-4 .box .img1 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../images/sustainability-4.png) no-repeat center center;
  background-size: cover;
  z-index: 10;
}
.sustainability-page .sustainability-box .sustainability-4 .box .img2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../images/beijing.jpg) no-repeat center center;
  background-size: cover;
  z-index: 1;
}
.sustainability-page .sustainability-box .sustainability-4 .container {
  position: relative;
  z-index: 20;
}
.sustainability-page .sustainability-box .sustainability-4 .content {
  text-align: center;
}
.sustainability-page .sustainability-box .sustainability-4 .content h2 {
  color: #fff;
  padding-bottom: 40px;
  position: relative;
  margin-bottom: 30px;
}
.sustainability-page .sustainability-box .sustainability-4 .content h2::after {
  position: absolute;
  content: "";
  width: 380px;
  height: 2px;
  border-bottom: 1px solid #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}
.sustainability-page .sustainability-box .sustainability-4 .content p {
  color: #fff;
  max-width: 980px;
  line-height: 2;
  margin: 0 auto;
  letter-spacing: 1px;
}
.sustainability-page .sustainability-box .sustainability-4 .content h3 {
  font-size: 52px;
  line-height: 1;
  color: #ffffff;
  margin-top: 30px;
  letter-spacing: 3px;
}
.sustainability-page .sustainability-box .sustainability-5 {
  padding: 175px 0 150px;
}
.sustainability-page .sustainability-box .sustainability-5 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sustainability-page .sustainability-box .sustainability-5 .container .left {
  width: 31.5%;
  padding: 0 40px;
}
.sustainability-page .sustainability-box .sustainability-5 .container .left ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
}
.sustainability-page .sustainability-box .sustainability-5 .container .left ul li {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 15px;
  font-size: 22px;
  line-height: 1;
  color: #1c1c1c;
}
.sustainability-page .sustainability-box .sustainability-5 .container .left ul li:hover img {
  -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}
.sustainability-page .sustainability-box .sustainability-5 .container .left ul li img {
  margin-right: 10px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right {
  width: 68.5%;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul li {
  padding: 8px;
  border-radius: 100%;
  margin-left: -80px;
  position: relative;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul li::after {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  border: 1px solid rgba(98, 168, 54, 0.3);
  top: 0;
  left: 0;
  border-radius: 100%;
  -webkit-animation: yz 3.5s linear infinite;
  -moz-animation: yz 3.5s linear infinite;
  animation: yz 3.5s linear infinite;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul li:first-child {
  margin-left: 0;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul li:nth-child(2)::after {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul li:nth-child(3)::after {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}
.sustainability-page .sustainability-box .sustainability-6 {
  background: #e9e9e9;
  padding-top: 100px;
  position: relative;
}
.sustainability-page .sustainability-box .sustainability-6 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-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;
}
.sustainability-page .sustainability-box .sustainability-6 .container .left {
  width: 28%;
  padding-left: 40px;
}
.sustainability-page .sustainability-box .sustainability-6 .container .left span {
  color: #439836;
}
.sustainability-page .sustainability-box .sustainability-6 .container .left h2 {
  color: #439836;
}
.sustainability-page .sustainability-box .sustainability-6 .container .left h4 {
  letter-spacing: 3px;
  margin-bottom: 0;
}
.sustainability-page .sustainability-box .sustainability-6 .container .centre {
  width: 40%;
  text-align: center;
}
.sustainability-page .sustainability-box .sustainability-6 .container .right {
  width: 28%;
  padding: 0 30px;
}
.sustainability-page .sustainability-box .sustainability-6 .container .right p {
  line-height: 2.2;
}
.sustainability-page .sustainability-box .sustainability-6 .container .bird {
  position: absolute;
}
.sustainability-page .sustainability-box .sustainability-6 .container .bird1 {
  left: 10%;
  top: -44px;
}
.sustainability-page .sustainability-box .sustainability-6 .container .bird2 {
  left: 24%;
  top: 90px;
}
.sustainability-page .sustainability-box .sustainability-6 .container .bird3 {
  left: 73%;
  top: -54px;
}
.r-d-page h2 {
  font-size: calc(1.77vw + 14px);
  line-height: 1;
  color: #202020;
}
.r-d-page h3 {
  font-size: 56px;
  line-height: 1;
  color: #202020;
}
.r-d-page p {
  font-size: 16px;
  color: #202020;
}
.r-d-page .r-d-1 {
  text-align: center;
  padding: 50px 0 80px;
}
.r-d-page .r-d-1 .top h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 685px;
  margin: 0 auto;
}
.r-d-page .r-d-1 .top h3 {
  margin-top: 60px;
}
.r-d-page .r-d-1 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 132px 0;
}
.r-d-page .r-d-1 ul li {
  position: relative;
}
.r-d-page .r-d-1 ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(230, 230, 230, 0.8);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
}
.r-d-page .r-d-1 ul li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(230, 230, 230, 0.8);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}
.r-d-page .r-d-1 ul li:nth-child(1) {
  margin-right: -30px;
}
.r-d-page .r-d-1 ul li:nth-child(2) {
  z-index: 2;
}
.r-d-page .r-d-1 ul li:nth-child(3) {
  margin-left: -30px;
}
.r-d-page .r-d-1 .bottom .text h3 {
  margin-bottom: 40px;
}
.r-d-page .r-d-1 .bottom .text p {
  max-width: 740px;
  margin: 0 auto;
  letter-spacing: 2px;
}
.r-d-page .r-d-1 .bottom .img {
  margin: 50px 0;
}
.r-d-page .r-d-1 .bottom .link {
  display: inline-block;
  padding: 18px 50px;
  border: 1px solid #8b8b8b;
  color: #202020;
  font-size: var(--ft18);
  line-height: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.r-d-page .r-d-2 .link {
  display: inline-block;
  padding: 18px 50px;
  border: 1px solid #8b8b8b;
  color: #202020;
  font-size: var(--ft18);
  line-height: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.r-d-page .r-d-2 .link:hover {
  border: 1px solid var(--color);
  color: #fff;
}
.r-d-page .r-d-2 .link:hover::after {
  width: 100%;
}
.r-d-page .r-d-1 .bottom .link:hover {
  border: 1px solid var(--color);
  color: #fff;
}
.r-d-page .r-d-1 .bottom .link:hover::after {
  width: 100%;
}
.r-d-page .r-d-1 .bottom .link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  left: 0;
  top: 0;
  z-index: -1;
}
.r-d-page .r-d-2 .link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  left: 0;
  top: 0;
  z-index: -1;
}
.r-d-page .r-d-1 .bottom .dwo {
  margin-top: 30px;
  margin-bottom: -60px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.r-d-page .r-d-1 .bottom .dwo img {
  cursor: pointer;
}
.r-d-page .r-d-1 .bottom .dwo img:hover {
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
.r-d-page .r-d-2 {
  text-align: center;
  padding: 110px 0 145px;
  background: url(../images/r-d-1-2-bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.r-d-page .r-d-2 ul {
  margin: 83px 0;
  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;
}
.r-d-page .r-d-2 ul li {
  border-radius: 100%;
  border: 12px solid rgba(255, 255, 255, 0.57);
  width: 280px;
  height: 280px;
  position: relative;
}
.r-d-page .r-d-2 ul li .box {
  background: #292929;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  position: relative;
}
.r-d-page .r-d-2 ul li .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
}
.r-d-page .r-d-2 ul li .box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}
.r-d-page .r-d-2 ul li .box h4 {
  font-size: 30.4px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: bold;
}
.r-d-page .r-d-2 ul li:nth-child(1),
.r-d-page .r-d-2 ul li:nth-child(2) {
  margin-right: -60px;
  z-index: 1;
}
.r-d-page .r-d-2 ul li:nth-child(2) .box,
.r-d-page .r-d-2 ul li:nth-child(4) .box {
  background: #494949;
}
.r-d-page .r-d-2 ul li:nth-child(3) {
  z-index: 2;
}
.r-d-page .r-d-2 ul li:nth-child(4),
.r-d-page .r-d-2 ul li:nth-child(5) {
  margin-left: -60px;
  z-index: 1;
}
.r-d-page .r-d-2 ul li:nth-child(1) .box,
.r-d-page .r-d-2 ul li:nth-child(5) .box {
  background: rgba(41, 41, 41, 0.5);
}
.r-d-page .r-d-2 ul li:nth-child(5) {
  z-index: 0;
}
.r-d-page .r-d-2 h5 {
  font-size: calc(0.8345vw + 14px);
  line-height: 1;
  color: #202020;
  margin-bottom: 30px;
}
.r-d-page .r-d-2 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 65px;
}
.r-d-page .r-d-2 .box h6 {
  width: 30px;
  font-size: 24px;
  line-height: 2;
  color: #000000;
  margin-right: 90px;
}
.r-d-page .r-d-2 h3 {
  margin-bottom: 30px;
}
.r-d-page .r-d-2 p {
  line-height: 1.8;
  color: #202020;
  max-width: 875px;
  letter-spacing: 2px;
  margin: 0 auto;
}
.r-d-page .r-d-2 .dwo {
  margin-top: 30px;
  margin-bottom: -100px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.r-d-page .r-d-2 .dwo img {
  cursor: pointer;
}
.r-d-page .r-d-2 .dwo img:hover {
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
.r-d-page .r-d-3 {
  padding: 100px 0 250px;
}
.r-d-page .r-d-3 h2 {
  text-align: center;
}
.r-d-page .r-d-3 .box {
  margin-top: 140px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.r-d-page .r-d-3 .box .left {
  width: 50%;
  text-align: right;
}
.r-d-page .r-d-3 .box .right {
  width: 50%;
  padding-left: 70px;
}
.r-d-page .r-d-3 .box .right h6 {
  font-size: calc(0.8345vw + 14px);
  line-height: 1;
  color: #202020;
  margin-bottom: 20px;
}
.r-d-page .r-d-3 .box .right p {
  line-height: 1.8;
  max-width: 530px;
  letter-spacing: 1.5px;
}
.r-d-page .rd-3 {
  padding: 180px 0 105px;
}
.r-d-page .rd-3 .container {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.r-d-page .rd-3 .container .ams {
  position: absolute;
  top: -42px;
  left: 50%;
  -webkit-transform: translateX(-60%);
  -moz-transform: translateX(-60%);
  -ms-transform: translateX(-60%);
  transform: translateX(-60%);
  z-index: 3;
}
.r-d-page .rd-3 .container .img {
  display: inline-block;
  position: relative;
  padding-bottom: 30px;
}
.r-d-page .rd-3 .container .img::after {
  position: absolute;
  content: "";
  width: 175px;
  height: 2px;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #a5a5a5;
}
.r-d-page .rd-3 .container .content {
  max-width: 544px;
}
.r-d-page .rd-3 .container .content p {
  line-height: 2;
  letter-spacing: 2px;
}
.r-d-page .rd-3 .container .left {
  width: 50%;
  padding: 0 65px;
}
.r-d-page .rd-3 .container .left h3 {
  margin: 38px 0 25px;
}
.r-d-page .rd-3 .container .right {
  width: 50%;
  padding: 0 60px;
}
.r-d-page .rd-3 .container .right .content {
  margin: 0 0 0 auto;
}
.r-d-page .rd-3 .container .right .content h2 {
  padding-left: 12%;
  margin-bottom: 25px;
}
.r-d-page .rd-3 .container .right .content p {
  padding-left: 12%;
}
.r-d-page .rd-3 .container .right .content .img {
  margin-top: 45px;
  margin-bottom: 10px;
}
.r-d-page .rd-3 .container .bg-1 {
  position: absolute;
  z-index: -1;
  top: -35px;
  left: 44%;
}
.r-d-page .rd-3 .container .bg-2 {
  position: absolute;
  z-index: -1;
  right: 20px;
  top: 60px;
}
@media screen and (max-width: 1605px) {
  .product-banner.inner-banner {
    height: 500px;
    padding-bottom: 180px;
  }
  .sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box .content {
    max-width: 45%;
  }
  .sustainability-page .sustainability-box .sustainability-3 .img img {
    width: 50%;
  }
}
@media screen and (max-width: 1400px) {
  .product-banner.inner-banner {
    height: 400px;
    padding-bottom: 130px;
  }
  .production-page .production-1 .production-box .content-box .centre ul {
    padding: 0 28px;
  }
  .production-page .production-1 .production-box .content-box .right {
    padding-left: 30px;
  }
  .production-page .production-1 .production-box .content-box .left {
    padding-right: 30px;
    position: relative;
  }
  .research-page .research-1 ul li {
    padding: 12px 50px;
  }
  .sustainability-page .sustainability-box .sustainability-5 .container .left ul li {
    font-size: 14px;
  }

  .prodet-page .prodet-box .prodet-1 .container .right .text-box h1{
    font-size: calc(0.8345vw + 14px);
  }
}
@media screen and (max-width: 1230px) {
  .about-page .about-1 .about-box .right p {
    font-size: 14px;
  }
  .about-page .about-3 .bottom .left h2 {
    font-size: 45px;
  }
  .about-page .about-4 .container .right h2 {
    font-size: 120px;
  }
  .about-page .about-4 .container .left .content .ball .box .text3 {
    width: 140px;
    height: 140px;
    line-height: 140px;
  }
  .about-page .about-4 .container .left .content .ball .box .text5 {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }
  .about-page .about-4 .container .left .content .ball .box .text4 {
    width: 120px;
    height: 120px;
    font-size: 15px;
    line-height: 120px;
  }
  .about-page .about-4 .container .left .content .ball .box .text2 {
    width: 110px;
    height: 110px;
    line-height: 110px;
  }
  .about-page .about-4 .container .left .content .ball .box .text1 {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }

  .about-page .about-1-2 ul li h4{
    font-size: 45px;
  }
  .about-page .about-1-2 ul li h4 span{
    font-size: var(--ft18);
  }

  .about-page .about-3 .top .right ul li{
    font-size: 24px;
  }

  .about-page .about-3 .bottom .left h2 {
    font-size: calc(0.8345vw + 14px);
  }

  .about-page .about-6 h2{
    font-size: calc(0.8345vw + 14px);
  }

  .about-page .about-7 .top h2{
    font-size: calc(0.8345vw + 14px);
  }

  .inner-page .about-link .a-box h3 {
    font-size: var(--ft18);
  }
  .contact-page .contact-1 .contact-box {
    padding: 63px 75px 130px;
  }
  .li_o a h4 {
    font-size: 20px;
  }
  .li_o a h5 {
    font-size: 16px;
  }
  .production-page .production-1 .production-box .content-box .box {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }
  .research-page .research-1 ul li {
    padding: 12px 33px;
    font-size: 14px;
  }
  .research-page .research-2 .research-list .item .researchBox ul li .content p {
    line-height: 1.5;
  }
  .sustainability-page .sustainability-box h4 {
    font-size: 20px;
  }
  .sustainability-page .sustainability-box h4 {
    font-size: var(--ft18);
  }
  .sustainability-page .sustainability-box p {
    font-size: 14px;
  }
}

@media screen and (max-width: 1000px) {
  .inner-banner{
    display: none;
  }
  .about-page .about-1 .about-box .left {
    width: 100%;
  }
  .about-page .about-1 .about-box .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .about-page .about-1 .about-box .right h2 {
    font-size: calc(0.8345vw + 14px);
  }
  .about-page .about-1 .about-box .right .h3{
    font-size: 24px;
  }
  .about-page .about-1-2 ul li h4 {
    font-size: calc(0.8345vw + 14px);
  }
  .about-page .about-3 .bottom .left h2 {
    font-size: 24px;
  }
  .about-page .about-3 .bottom .left p {
    font-size: 14px;
  }
  .about-page .about-3 .top .right ul li {
    font-size: var(--ft18);
  }
  .about-page .about-4 .container .right p {
    font-size: 14px;
  }
  .about-page .about-4 .container .left .content .ball .box .text3 {
    display: none;
  }
  .about-page .about-4 .container .left .content .ball .box .text2 {
    display: none;
  }
  .about-page .about-4 .container .left .content .ball .box .text1 {
    display: none;
  }
  .about-page .about-4 .container .left .content .ball .box .text4 {
    display: none;
  }
  .about-page .about-4 .container .left .content .ball .box .text5 {
    display: none;
  }
  .about-page .about-5 ul li p {
    font-size: 14px;
  }
  .about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1) {
    width: 60px;
    height: 60px;
  }
  .about-page .about-7 .map-box .map .item li {
    width: 40px;
    height: 40px;
  }
  .about-page .about-7 .map-box .map .item:nth-child(2) ul {
    max-width: 126px;
  }
  .about-page .about-7 .map-box .map .item:nth-child(2) {
    top: 11%;
  }
  .inner-page .more {
    font-size: 14px;
    line-height: 28px;
    padding: 12px 30px;
  }
  .inner-page .more img {
    display: none;
  }
  .inner-page .about-link .a-box a {
    padding: 12px 25px;
  }
  .inner-page .about-link .a-box h3 {
    font-size: 16px;
    line-height: 30px;
  }
  .product-banner.inner-banner {
    height: 260px;
    padding-bottom: 100px;
  }
  .inner-page .sidebar-box .sidebar-right {
    display: none;
  }
  .inner-page .sidebar-box .sidebar-left {
    width: 100%;
  }
  .inner-page .m-page span,
  .inner-page .m-page a {
    margin-bottom: 10px;
  }
  .newdet-page .news-content .title h1 {
    font-size: 24px;
  }
  .prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box a {
    padding: 12px 20px;
    font-size: 14px;
  }
  .prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box .inquiry {
    padding: 12px 20px;
  }
  .prodet-page .prodet-box .prodet-1 .container .right .text-box h3.tit {
    font-size: 24px;
  }
  .li_o {
    width: 50%;
  }
  .product-page .title p {
    font-size: 14px;
  }
  .production-page .production-1 .production-box .content-box .box {
    width: 70px;
    height: 70px;
  }
  .r-d-page .r-d-2 h5 {
    font-size: 24px;
  }
  .r-d-page p {
    font-size: 14px;
  }
  .r-d-page .rd-3 .container .ams {
    display: none;
  }
  .research-page .research-1 ul li {
    padding: 12px 5px;
  }
  .research-page .research-2 .research-list .item p {
    font-size: 14px;
  }
  .research-page .research-2 .research-list .item h3 {
    font-size: 24px;
  }
  .research-page .research-2 .research-list .item:nth-child(1) .researchBox ul li {
    width: 50%;
  }
  .research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li {
    width: 50%;
  }
  .research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li {
    width: 50%;
  }
  .research-page .research-2 .research-list .item .researchBox ul li .content p {
    font-size: 14px;
  }
  .research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) a {
    width: 100%;
  }
  .research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content {
    width: 100%;
  }
  .sustainability-page .sustainability-box .sustainability-6 .container .bird {
    display: none;
  }
  .sustainability-page .sustainability-box .sustainability-5 .container .left {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .sustainability-page .sustainability-box .sustainability-5 .container .right {
    width: 100%;
  }
  .sustainability-page .sustainability-box .sustainability-6 .container .left {
    width: 28%;
    padding-left: 0;
  }

  .prodet-page .prodet-box .prodet-1 .container .left {
    width: 100%;
    padding-right: 0;
  }
  .prodet-page .prodet-box .prodet-1 .container .right {
    width: 100%;
    padding-left: 0px;
    margin-top: 30px;
  }


  .prodet-page .prodet-box .prodet-1 .container .right .text-box h1{
    font-size: 24px;
  }
}
@media screen and (max-width: 700px) {
  .about-page .about-1-2 ul li{
    width: 50%;
    padding: 15px;
  }

  .about-page .about-1-2 ul li:nth-child(2n)::after{
    display: none;
  }

  .about-page .about-3 .top{
    display: block;
  }

  .about-page .about-3 .top .left{
    width: 100%;
    padding: 0;
  }

  .about-page .about-3 .top .left img{
    margin: 0;
  }

  .about-page .about-3 .top .right{
    width: 100%;
    display: block;
  }

  .about-page .about-3 .bottom{
    padding-top: 60px;
    padding-bottom: 60px;
    display: block;
  }

  .about-page .about-4 .container .left {
    display: none;
  }
  .about-page .about-4 .container .right {
    width: 100%;
  }
  .about-page .about-1-2 ul li p {
    font-size: 14px;
  }

  .about-page .about-3 .bottom .left {
    width: 100%;
    padding-left: 0;
  }
  .about-page .about-3 .bottom .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }

  .category-page .category-box .category-list .item-box .item.item-img2 {
    display: none;
  }
  .category-page .category-box .category-list .item-box .item {
    width: 50%;
  }
  .category-page .category-box .category-list:nth-child(4n-2) .item-box .item-text {
    left: 50%;
  }
  .category-page .category-box .category-list:nth-child(4n-2) .item-box .item-img1 {
    left: auto;
    right: 50%;
  }
  .category-page .category-box .category-list:nth-child(4n-1) .item-box .item-text {
    left: 0;
  }
  .category-page .category-box .category-list:nth-child(4n-1) .item-box .item-img1 {
    right: 0;
  }
  .category-page .category-box .category-list:nth-child(4n) .item-box .item-text {
    left: 50%;
  }
  .category-page .category-box .category-list:nth-child(4n) .item-box .item-img1 {
    left: auto;
    right: 50%;
  }
  .inner-page .about-link .a-box a {
    display: none;
  }
  .contact-page .contact-1 .contact-box .contact-content .left {
    width: 100%;
    padding-right: 0;
  }
  .contact-page .contact-1 .contact-box .contact-content .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .newdet-page .news-content .m-link .next .right h4 {
    font-size: var(--ft18);
  }
  
  .prodet-page .prodet-box .prodet-1 .container .right .text-box h3.tit {
    font-size: 20px;
  }
  
  .prodet-page .prodet-box .prodet-1 .container .right .text-box p {
    font-size: 14px;
  }
  .production-page .production-1 .production-box .content-box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .production-page .production-1 .production-box .content-box .left {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .production-page .production-1 .production-box .content-box .right {
    padding-left: 0;
    margin-top: 20px;
  }
  .production-page .production-2 .item .left {
    width: 100%;
  }
  .production-page .production-2 .item .right {
    width: 100%;
    margin-top: 20px;
  }
  .production-page .production-2 .item.item2 .left {
    padding-left: 0;
  }
  .production-page .production-3 .container .box .left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .production-page .production-3 .container .box .right {
    width: 100%;
  }
  .r-d-page .r-d-2 ul li {
    width: 230px;
    height: 230px;
  }
  .r-d-page .r-d-2 h5 {
    font-size: 20px;
  }
  .r-d-page .r-d-3 .box .left {
    width: 100%;
  }
  .r-d-page .r-d-3 .box .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .r-d-page .r-d-2 .box {
    width: 100%;
  }
  .research-page .research-1 ul {
    display: none;
  }
  .sustainability-page .sustainability-box .sustainability-1 .container .text-box .text {
    width: 100%;
  }
  .sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(1) {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(2) {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(3) {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .sustainability-page .sustainability-box .sustainability-1 .container ul li {
    width: 20%;
  }
  .sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box {
    position: relative;
  }
  .sustainability-page .sustainability-box .sustainability-3 .img {
    width: 100%;
  }
  .sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box .content {
    max-width: 100%;
    padding: 30px 0;
  }
  .sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box .left {
    padding-left: 0;
  }
  .sustainability-page .sustainability-box .sustainability-6 .container .left {
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
  }
  .sustainability-page .sustainability-box .sustainability-6 .container .right {
    display: none;
  }
  .sustainability-page .sustainability-box .sustainability-6 .container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }


  .prodet-page .prodet-box .prodet-2 h3 span{
    font-size: 14px;
    padding: 10px;
  }
}
@media screen and (max-width: 500px) {
  .category-page .category-box .category-list:nth-child(1) .item-box .item-img1 img {
    position: static;
    width: 185px!important;
  }
  .about-page .about-1-2 ul li p {
    font-size: 14px;
    line-height: 28px;
  }
  .about-page .about-3 .top .right ul li {
    font-size: 14px;
    line-height: 2;
  }
  
  .about-page .about-5 ul li {
    width: 100%;
    margin-bottom: 15px;
  }
  .about-page .about-6 .historyBox .swiper-slide::after {
    display: none;
  }
  .about-page .about-6 .historyBox .swiper-slide p {
    font-size: 15px;
  }
  .about-page .about-7 .map-box .map .item li {
    display: none;
  }
  .about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1) {
    display: block;
  }
  .about-page .about-7 .map-box .map .item h5 {
    display: none;
  }
  .about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1) {
    width: 30px;
    height: 30px;
  }
  .about-page .about-7 .top .txt {
    padding: 0 0px 20px;
  }
  .product-banner.inner-banner {
    height: 140px;
    padding-bottom: 50px;
  }
  .category-page .category-box .category-list .item-box .item {
    width: 100%;
  }
  .category-page .category-box .category-list:nth-child(4n-2) .item-box .item-text {
    left: 0%;
  }
  .category-page .category-box .category-list:nth-child(4n-2) .item-box .item-img1 {
    left: auto;
    right: 0%;
  }
  .category-page .category-box .category-list:nth-child(4n) .item-box .item-text {
    left: 0%;
  }
  .category-page .category-box .category-list:nth-child(4n) .item-box .item-img1 {
    left: auto;
    right: 0%;
  }
  .category-page .category-box .category-list .item-box .item-text {
    padding: 25px 15px;
  }
  .contact-page .contact-1 .contact-box {
    padding: calc(2.3955vw + 14px) 20px calc(4.1667vw + 20px);
  }
  .contact-page .contact-1 .contact-box .contact-content .right form input[type="submit"] {
    font-size: 14px;
    padding: 18px 56px 18px 125px;
  }
  .news-page .news-list ul li:nth-child(1) .right h4 {
    font-size: 20px;
    line-height: 36px;
  }
  .news-page .news-list ul li:nth-child(1) .left a span {
    font-size: 14px;
  }
  .news-page .news-list ul li .left {
    width: 100%;
  }
  .news-page .news-list ul li .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .news-page .news-list ul li .right h4 {
    font-size: var(--ft18);
  }
  .newdet-page .news-content .m-link .next .left {
    width: 100%;
  }
  .newdet-page .news-content .m-link .next .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .li_o {
    width: 100%;
  }
  .production-page .production-4 h2 {
    width: 35%;
  }
  .production-page .production-1 .production-box .content-box .centre ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .production-page .production-1 .production-box .content-box .centre ul li {
    margin-bottom: 10px;
  }
  .r-d-page .rd-3 .container .left {
    width: 100%;
    padding: 0 ;
  }
  .r-d-page .rd-3 .container .right {
    width: 100%;
    padding: 0 ;
  }
  .r-d-page .rd-3 .container .right .content p {
    padding-left: 0%;
    margin-top: 30px;
  }
  .research-page .research-2 .research-list .item:nth-child(1) .researchBox ul li {
    width: 100%;
  }
  .research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li:nth-child(1),
  .research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li:nth-child(2) {
    width: 100%;
  }
  .research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li {
    width: 100%;
  }
  .research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li {
    width: 100%;
  }
  .sustainability-page .sustainability-box .sustainability-1 .container ul li {
    width: 33.333%;
  }
}
/*.about-7{
  padding:65px 0 38px;
  background: url(../images/about7-map_bg.jpg) no-repeat center;
  background-repeat: cover;
  text-align: center;
}
.about-7 h2{
  color: #fff;
  font-size: 45px;
  font-weight: bold;
}
.about-7 p.intro{
  margin: 14px 0 20px;
  color: #cbcbcb;
  font-size: 16px;
}
.about-7 h3{
  display: inline-block;
  font-size: 26px;
  color: #fff;
  padding-left: 50px;
  position: relative;
  background: url(../images/about7-ico.png) no-repeat left 27px;
}
.about-7 h3 em{
  font-size: calc(1.77vw + 14px);
  font-weight: bold;
}
.about-7 h3:after{
  content:'';
  position: absolute;
  bottom: -12px;
  left: 0;
  width:120%;
  margin-left: -10%;
  background: #717171;
  height: 1px;
}
.about-7 .the_map{
  margin-top:56px;
}*/
@media screen and (max-width: 500px) {
  .about-page .about-6 .historyBox .swiper-slide,
  .about-page .about-6 .historyBox .swiper-container,
  .r-d-page .r-d-2 .box img {
    height: auto!important;
  }
  .r-d-page .r-d-2 .box img {
    width: auto!important;
  }
  .r-d-page .r-d-2 .box {
    display: block;
  }
  .r-d-page .r-d-2 .box h6 {
    width: 100%;
    font-size: 20px;
  }
  .sustainability-page .sustainability-box p {
    font-size: 12px;
  }
}
/*other*/
.factory-page .navList {
  margin-top: 10px;
}
.factory-page .navList 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.factory-page .navList ul li {
  font-weight: 300;
  font-size: 24px;
  color: #373330;
  width: auto;
  text-transform: capitalize;
  display: inline-block;
  margin-right: 20px;
}
.factory-page .navList ul li a {
  display: block;
  padding: 0 30px;
  position: relative;
  font-size: 20px;
}
.factory-page .navList ul li a:after {
  content: '';
  width: 0;
  height: 1px;
  background: #000;
  position: absolute;
  top: 110%;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.factory-page .navList ul li a:hover:after,
.factory-page .navList ul li a.active:after {
  width: 100%;
}
.factory-page .imgList {
  padding:calc(2.0925vw + 20px) 0 calc(4.1667vw + 20px);
}
.factory-page .imgList .list ul {
  margin: -10px;
}
.factory-page .imgList .list ul li {
  padding: 10px;
}
.factory-page .imgList .list ul li a {
  display: block;
  position: relative;
}
.factory-page .imgList .list ul li a h6 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.factory-page .imgList .list ul li a img {
  display: block;
  width: 100%;
}
.factory-page .imgList .list ul li a:hover h6 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.service-page .service-1 span.tag {
  font-weight: 500;
  font-size: 24px;
  color: var(--color);
  line-height: 1.2;
  display: block;
}
.service-page .service-1 h2 {
  font-weight: bold;
  font-size: 44px;
  color: #191919;
  line-height: 1.2;
  margin: 15px 0;
}
.service-page .service-1 .text {
  font-weight: 300;
  font-size: 16px;
  color: #101010;
  line-height: 1.8;
  margin-bottom: 60px;
}
.service-page .service-1 .ui.container > img {
  width: 100%;
}
.service-page .service-1 .list {
  margin-top: 75px;
}
.service-page .service-1 .list ul {
  margin: -20px;
}
.service-page .service-1 .list ul li {
  padding: 20px;
}
.service-page .service-1 .list ul li .box {
  -o-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.07);
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.07);
  border-bottom: 4px solid var(--color);
}
.service-page .service-1 .list ul li .box a.img-box {
  display: block;
}
.service-page .service-1 .list ul li .box a.img-box img {
  width: 100%;
}
.service-page .service-1 .list ul li .box .content {
  padding: 25px 15px 10px;
}
.service-page .service-1 .list ul li .box .content h4 {
  font-weight: 600;
  font-size: 24px;
  color: #191919;
  display: block;
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  min-height: 2.4em;
}
.service-page .service-1 .list ul li .box .content h4:hover {
  color: var(--color);
}
.service-page .service-1 .list ul li .box .content p {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: #191919;
  margin: 10px 0 30px;
}
.service-page .service-1 .list ul li .box .content a.more {
  display: inline-block;
}
.service-page .service-2 {
  padding: 80px 0 70px;
  text-align: center;
  background: #fbfbfb;
}
.service-page .service-2 .list {
  text-align: left;
}
.service-page .service-2 .list ul {
  counter-reset: number;
}
.service-page .service-2 .list ul li .left {
  vertical-align: middle;
  padding-right: 2%;
  position: relative;
}
.service-page .service-2 .list ul li .left:before {
  content: '0' counter(number);
  counter-increment: number;
  font-weight: 400;
  color: #cdcdcd;
  display: block;
  line-height: 1;
  font-size: 20px;
}
.service-page .service-2 .list ul li .left h4,
.service-page .service-new .box ul h4 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: var(--color);
  margin: 10px 0 25px;
  display: block;
}
.service-page .service-2 .list ul li .left p,
.service-page .service-new .box ul p {
  font-size: 16px;
  color: #101010;
  line-height: 1.8;
  max-width: 600px;
}
.service-page .service-2 .list ul li .left:after {
  content: '';
  width: 15%;
  height: 1px;
  background: var(--color);
  margin-top: 15px;
  display: block;
}
.service-page .service-2 .list ul li .left div.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  border-radius: 3px;
  background: var(--color);
  color: white;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-2 .list ul li .left div.btn:hover {
  background: #222;
}
.service-page div.formBox {
  padding: 35px 60px;
  display: inline-block;
  width: 100%;
  background: #f8f8f8;
  /*-moz-box-shadow: 0 0 10px rgba(0,0,0,.1);
-o-box-shadow: 0 0 10px rgba(0,0,0,.1);
box-shadow: 0 0 10px rgba(0,0,0,.1);*/
}
.service-page div.formBox h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.service-page div.formBox ul {
  margin: -10px;
}
.service-page div.formBox ul li {
  width: 50%;
  float: left;
  padding: 10px;
}
.service-page div.formBox ul li label {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 5px;
  display: block;
  color: #525252;
}
.service-page div.formBox ul li input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  padding: 0 10px;
  font-size: 16px;
  color: black;
  border: 1px solid #e3e3e3;
  background: #fff;
}
.service-page div.formBox ul li:last-child {
  text-align: center;
  width: 100%;
}
.service-page div.formBox ul li input[type="submit"] {
  max-width: 200px;
  margin-left: auto;
  padding: 0 20px;
  height: 50px;
  background: var(--color);
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--ft18);
}

.service-page div.formBox ul li .file{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    right: 0;
    top: 0;
    /*background-color: #eee;*/
}
.service-page div.formBox ul li input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.service-page .service-new .box ul {
  margin: -15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.service-page .service-new .box ul li {
  padding: 15px;
}
.service-page .service-new .box ul li .box2 {
  padding: 30px;
  background: #fff;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /*border: 1px solid #e3e3e3;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);*/
  /* box-shadow: 0 0 10px rgb(0 0 0 / 10%); */
  height: 100%;
}
.service-page .service-2 .list ul li .right {
  padding-left: 2%;
  vertical-align: middle;
  position: relative;
}
.service-page .service-2 .list ul li .right .img {
  background-size: cover;
  background-position: center center;
  height: 390px;
}
.service-page .service-2 .list ul li:nth-child(even) {
  margin: 80px 0;
}
.service-page .service-2 .list ul li:nth-child(even) .left {
  left: 50%;
  padding-left: 2%;
  padding-right: 0;
}
.service-page .service-2 .list ul li:nth-child(even) .right {
  left: -50%;
  padding-right: 2%;
  padding-left: 0;
}
.service-page .service-2 a.more {
  display: inline-block;
  text-align: center;
  margin-top: 70px;
  font-weight: 300;
  font-size: 24px;
  color: var(--color);
  line-height: 1.2;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.service-page .service-2 a.more i {
  margin-right: 10px;
}
.service-page .service-2 a.more:after {
  content: '';
  width: 95%;
  height: 1px;
  background: var(--color);
  display: block;
  margin-left: auto;
}
.service-page .service-3 {
  padding: 90px 0 150px;
  background-color: #fff;
}
.service-page .service-3 h2 {
  font-weight: bold;
  font-size: 40px;
  color: #191919;
  text-transform: capitalize;
  line-height: 1;
  text-align: center;
}
.service-page .service-3 h2:after {
  content: '';
  display: block;
  margin: 23px auto 0;
  width: 10%;
  height: 4px;
  background: var(--color);
}
.service-page .service-3 .list {
  margin: 65px 0 85px;
}
.service-page .service-3 .list .slide ul {
  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;
}
.service-page .service-3 .list .slide ul li {
  margin-bottom: 15px;
  width: 48%;
}
.service-page .service-3 .list .slide ul li h6 {
  padding: 12px 0;
  font-size: 20px;
  line-height: 36px;
  /*font-weight: 300;*/
  border-bottom: 2px solid #efefef;
  /*text-transform: uppercase;*/
  padding-right: 30px;
  position: relative;
}
.service-page .service-3 .list .slide ul li h6 i {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 17px;
  right: 10px;
  cursor: pointer;
  cursor: hand;
}
.service-page .service-3 .list .slide ul li h6 i:after,
.service-page .service-3 .list .slide ul li h6 i:before {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--color);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.service-page .service-3 .list .slide ul li h6 i:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.service-page .service-3 .list .slide ul li h6 i.active:after {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.service-page .service-3 .list .slide ul li .text {
  font-size: 16px;
  line-height: 30px;
  padding: 15px 0;
  /*font-weight: 300;*/
  color: var(--color);
  display: none;
}
.service-page .service-3 .list .slide ul li:last-child {
  margin-bottom: 0;
}
.service-page .service-3 .content {
  font-weight: 600;
  font-size: var(--ft18);
  line-height: 32px;
  max-width: 70%;
  display: inline-block;
}
.service-page .service-3 a.more {
  line-height: 50px;
  height: 50px;
  padding: 0 35px;
  /*border-radius: 5px;*/
  background: var(--color);
  /*font-weight: bold;*/
  font-size: 20px;
  color: white;
  display: inline-block;
  float: right;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-3 a.more:hover {
  opacity: .7;
}
.why-page .why-1 {
  padding-top: 0px;
}
.why-page .why-1 .left {
  vertical-align: middle;
}
.why-page .why-1 .left .img {
  height: 360px;
  background-position: center center;
  background-repeat: no-repeat;
  background-position-x: left;
}
.why-page .why-1 .right {
  vertical-align: middle;
}
.why-page .why-1 .right h3 {
  font-weight: bold;
  font-size: 40px;
  line-height: 1.4;
  color: var(--color);
}
.why-page .why-1 .right .content {
  margin-top: 45px;
  font-size: 16px;
  line-height: 30px;
}
.why-page .why-2 {
  padding: 110px 0;
}
.why-page .why-2 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;
}
.why-page .why-2 ul li {
  padding: 20px;
}
.why-page .why-2 ul li .box {
  -o-box-shadow: 2px 0 9px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 2px 0 9px rgba(0, 0, 0, 0.07);
  box-shadow: 2px 0 9px rgba(0, 0, 0, 0.07);
  padding: 55px 35px 50px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  height: 100%;
}
.why-page .why-2 ul li .box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, var(--color)), color-stop(100%, #64a5da));
  /* 兼容Safari4-5, chrome1-9 */
  background: -moz-linear-gradient(-45deg, var(--color) 0%, #64a5da 100%);
  /* firefox */
  background: -webkit-linear-gradient(45deg, var(--color) 0%, #64a5da 100%);
  /* chrome */
  /* opera */
  /* ie */
  background: -webkit-gradient(linear, -45deg, from(var(--color)), to(#64a5da));
  background: -webkit-linear-gradient(-45deg, var(--color), #64a5da);
  background: -moz-linear-gradient(-45deg, var(--color), #64a5da);
  background: linear-gradient(to -45deg, var(--color), #64a5da);
  /* firefox */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='#64a5da',GradientType=1)";
  /* 兼容IE8~IE9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='#64a5da', GradientType=1);
  /* 兼容IE5~IE9 */
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
  background: var(--color);
}
.why-page .why-2 ul li .box i {
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  height: 67px;
}
.why-page .why-2 ul li .box h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  margin: 30px 0 15px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.why-page .why-2 ul li .box p {
  font-size: 16px;
  /*font-weight: 300;*/
  line-height: 1.8;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.why-page .why-2 ul li .box:hover:after {
  opacity: 1;
}
.why-page .why-2 ul li .box:hover i {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.why-page .why-2 ul li .box:hover h4,
.why-page .why-2 ul li .box:hover p {
  color: white;
}
.why-page .why-3 {
  background: #fff;
  padding: 0px 0 100px;
}
.why-page .why-3 .left {
  width: 66%;
  vertical-align: middle;
  position: relative;
}
.why-page .why-3 .left ul {
  margin: -7px;
}
.why-page .why-3 .left ul li {
  padding: 7px;
}
.why-page .why-3 .left ul li a.img-box {
  display: block;
}
.why-page .why-3 .left ul li a.img-box img {
  display: block;
  width: 100%;
}
.why-page .why-3 .right {
  width: 34%;
  vertical-align: middle;
  position: relative;
  padding-left: 4%;
}
.why-page .why-3 .right h3 {
  font-weight: bold;
  font-size: calc(0.8345vw + 14px);
  color: #1b1b1b;
  line-height: 1.2;
  text-transform: capitalize;
}
.why-page .why-3 .right .text {
  font-size: 16px;
  line-height: 1.6;
  margin: 15px 0 20px;
}
.why-page .why-3 .right a.more {
  line-height: 35px;
  height: 35px;
  padding: 0 17px;
  border-radius: 17px;
  background: var(--color);
  color: white;
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: inline-block;
  text-transform: capitalize;
}
.why-page .why-3 .right a.more:hover {
  opacity: .7;
}
.why-page .why-3 .box {
  margin-top: 95px;
}
.why-page .why-3 .box:first-child {
  margin-top: 0;
}
.why-page .why-3 .box:nth-child(even) .left {
  left: 33.5%;
}
.why-page .why-3 .box:nth-child(even) .right {
  left: -66%;
  padding-left: 0;
  padding-right: 4%;
}
.why-page .why-4 {
  padding: 100px 0 120px;
}
.why-page .why-4 .list ul {
  margin: -40px;
}
.why-page .why-4 .list ul li {
  padding: 40px;
}
.why-page .why-4 .list ul li img {
  display: block;
}
.why-page .why-4 .list ul li p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 25px;
}
.why-page .why-4 .list ul .slick-dots {
  padding-top: 40px;
  text-align: center;
}
.why-page .why-4 .list ul .slick-dots li {
  width: 9px;
  height: 9px;
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  background: #d4d4d4;
  cursor: pointer;
  cursor: hand;
  padding: 0;
}
.why-page .why-4 .list ul .slick-dots li button {
  display: none;
}
.why-page .why-4 .list ul .slick-dots li.slick-active {
  background: var(--color);
}
.application-page {
  background: #f7f7f7;
  padding: 0 0 120px;
}
.application-page .application-list ul li {
  margin-bottom: 20px;
  padding: 25px;
  background: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.application-page .application-list ul li .left {
  width: 50%;
  vertical-align: middle;
}
.application-page .application-list ul li .right {
  width: 50%;
  vertical-align: middle;
  padding-left: 30px;
}
.application-page .application-list ul li .right h4 {
  font-size: calc(0.8345vw + 14px);
  color: var(--color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}
.application-page .application-list ul li .right .text {
  display: block;
  font-size: 15px;
  color: #757272;
  line-height: 1.8;
  margin-top: 10px;
}
.application-page .application-list ul li:last-child {
  margin-bottom: 0;
}
.application-page .application-list ul li:hover {
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1700px) {
  .why-page .why-1 .right h3 {
    font-size: 32px;
  }
  .why-page .why-1 .right .content {
    margin-top: 20px;
  }
  .why-page .why-1 {
    padding-top: 70px;
  }
  .why-page .why-2 {
    padding: 60px 0;
  }
  .why-page .why-2 ul li .box {
    padding: 25px;
  }
  .why-page .why-2 ul li .box h4 {
    font-size: 20px;
    margin: 20px 0 10px;
  }
  .why-page .why-2 ul li .box i {
    height: auto;
  }
  .why-page .why-2 ul li .box i img {
    max-height: 48px;
  }
  .why-page .why-2 ul li .box p {
    font-size: 14px;
    line-height: 2!important;
  }
  .why-page .why-3 {
    padding: 70px 0;
  }
  .why-page .why-3 .box {
    margin-top: 50px;
  }
  .why-page .why-4 {
    padding: 60px 0 80px;
  }
  .service-page .service-1 {
    padding: 60px 0;
  }
  .service-page .service-1 span.tag {
    font-size: 20px;
  }
  .service-page .service-1 h2 {
    font-size: 36px;
  }
  .service-page .service-1 .list {
    margin-top: 50px;
  }
  .service-page .service-1 .list ul li .box .content h4,
  .service-page .service-2 a.more {
    font-size: 20px;
  }
  .service-page .service-1 .list ul li .box .content p {
    font-size: 14px;
  }
  .service-page .service-1 .list ul li .box .content a.more img {
    max-width: 40px;
  }
  .service-page .service-2 .list ul li .left h4,
  .service-page .service-3 h2 {
    font-size: 32px;
  }
  .service-page .service-2 .list ul li .left:before,
  .contact-page .contact-1 .left span.tag {
    font-size: 20px;
  }
  .service-page .service-3 {
    padding: 70px 0;
  }
  .service-page .service-3 a.more {
    line-height: 44px;
    height: 44px;
    padding: 0 25px;
    font-size: 20px;
  }
  .application-page .application-list ul li .right .text {
    font-size: 14px;
  }
  .application-page .application-list ul li .right h4 {
    font-size: 26px;
  }
  .application-page {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1500px) {
  .why-page .why-3 .right .text {
    font-size: 14px;
    line-height: 2;
    margin: 10px 0;
  }
  .factory-page .navList {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1250px) {
  .why-page .why-4 .list ul li {
    padding: 15px;
  }
  .why-page .why-4 .list ul {
    margin: -15px;
  }
  .why-page .why-3 .right h3 {
    font-size: 24px;
  }
  .why-page .why-2 ul li .box h4 {
    font-size: var(--ft18);
  }
  .why-page .why-2 ul li .box {
    padding: 10px;
  }
  .why-page .why-2 ul li {
    padding: 10px;
  }
  .why-page .why-2 ul {
    margin: -10px;
  }
  .why-page .why-1 .right h3 {
    font-size: 26px;
  }
  .service-page .service-3 h2:after {
    margin-top: 15px;
  }
  .service-page .service-3 .list {
    margin: 30px 0 50px;
  }
  .service-page .service-1 h2,
  .service-page .service-2 .list ul li .left h4,
  .service-page .service-3 h2 {
    font-size: 28px;
  }

  .service-page .service-2 .list ul li .left h4,
  .service-page .service-new .box ul h4{
    font-size: 24px;
  }

  .prodet-page .prodet-box .prodet-4 h3{
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .factory-page .navList {
    display: none;
  }
  .service-page .service-1 h2,
  .service-page .service-2 .list ul li .left h4,
  .service-page .service-3 h2 {
    font-size: 24px;
    line-height: 1.6;
  }
  .service-page .service-2 .list ul li .right {
    width: 100%;
    padding: 0 !important;
    left: 0 !important;
  }
  .service-page .service-2 .list ul li .left {
    width: 100%;
    padding: 0 !important;
    left: 0 !important;
  }
  .service-page .service-2 .list ul li:nth-child(even) {
    margin: 25px 0;
  }
  .service-page .service-2 .list ul li .right .img {
    height: 200px;
  }
  .service-page .service-2 a.more {
    margin-top: 40px;
  }
  .service-page .service-3 .list .slide {
    width: 100%;
    padding: 0 !important;
  }
  .service-page .service-3 .list .slide ul li {
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  

  .service-page .service-new .box ul li .box2{
    padding: 0;
  }

  .service-page .service-3 .list .slide ul{
    display: block;
  }

  .service-page .service-3 .list .slide ul li{
    width: 100%;
  }

  .service-page .service-3 .list .slide ul li h6{
    font-size: 16px;
    line-height: 30px;
  }

  .why-page .why-3 .right {
    width: 100%;
    left: 0 !important;
    padding: 0 !important;
    margin-top: 25px;
  }
  .why-page .why-3 .left {
    width: 100%;
    left: 0 !important;
  }
  .why-page .why-3 {
    padding: 40px 0;
  }
  .why-page .why-2 ul li {
    width: 50% !important;
  }
  .why-page .why-1 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  .why-page .why-1 .left {
    width: 100%;
  }
  .why-page .why-1 .left .img {
    height: 240px;
  }
  .application-page .application-list ul li .right {
    width: 100%;
    padding: 30px 0 0;
  }
  .application-page .application-list ul li .left {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .service-page .service-1 .list ul li {
    padding: 10px;
  }
  .service-page .service-1 .list ul {
    margin: -10px;
  }
  .service-page .service-1 .list ul li .box .content {
    padding: 10px;
  }
  .why-page .why-2 ul li {
    width: 100% !important;
  }
  .why-page .why-1 .right h3 {
    font-size: 22px;
    line-height: 40px;
  }
  .why-page .why-1 {
    padding-top: 20px;
  }
  .service-page .service-3 .content {
    max-width: none;
  }
  .service-page .service-3 a.more {
    margin-top: 20px;
    float: none;
  }
  .service-page .service-2 a.more {
    font-size: 16px;
  }

  .service-page div.formBox{
    padding: 30px;
  }

  .service-page div.formBox ul li{
    width: 100%;
  }
}
/*inner css add end*/
@-webkit-keyframes ro {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes ro {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ro {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes tx {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    transform: translateX(3px);
  }
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes tx {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    transform: translateX(3px);
  }
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes tx {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    transform: translateX(3px);
  }
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}





/* about-play-btn */
.about-page .about-1 .about-box .left .video{
  display: inline-block;
}
.about-page .about-1 .about-box .left .video img{border-radius: 20px;}
.about-page .about-1 .about-box .left .play {
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 100%;
  text-align: center;
  background: var(--color);
  cursor: pointer;
  cursor: hand;
}
.about-page .about-1 .about-box .left .play i {
  display: inline-block;
  vertical-align: middle;
  font-size: calc(0.8345vw + 14px);
  color: white;
  position: relative;
  left: 3px;
}
.about-page .about-1 .about-box .left .play::before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(4, 83, 162, 0.41);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
/* end */



.btn_pro_det{
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  line-height: 60px;
  width: 60px;
  color: #656b6f;
  text-align: center;
  cursor: pointer;
  background-color: #c0c6ca;
  font-size: 14px;
  transition: all .5s ease;
}
.btn_pro_det i{
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  transition: all .5s ease;
}
.btn_pro_det .det_more{
  display: block;
  width: 300%;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  transition: all .5s ease;
}
.btn_pro_det .hover_more{
  width: 0;
  height: 0;
  overflow: hidden;
  color: #fff;
  bottom: 0;
  font-weight: 700;
  transform: translateX(-50%);
  display: inline-block;
  white-space:nowrap;
  text-overflow:ellipsis;
  left: 50%;
}

.pro_box:hover .btn_pro_det{
  background: var(--color)!important;
  box-shadow: 0 2px 10px -2px rgba(0, 101, 59, 0.6);
  color: #fff !important;
  width: 200px;
  margin-left: -100px;
}


.pro_box:hover .det_more{
  opacity: 0;
  width: 100%;
}
.pro_box:hover .hover_more{
  width: auto;
  height: auto;
  margin-right: 10px;
  padding-right: 30px;
  position: absolute;
}

.pro_box:hover .btn_pro_det i{
  margin-left: 3.5em;
}






/* 整点人用的 */
.colorf {
    color: #fff;
}
.bgImg {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important; }
.poa50 {
    position: absolute;
    left: 50%;
    top: 50%; }
.flexBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }

.ability-list2 {
    padding: 60px 0;
    flex-wrap: nowrap; }
.ability-list2 .list-left {
 vertical-align: middle;}
.ability-list2 .list-right {
 vertical-align: middle;}
.ability-list2 .ability-list2-man {
   
}
.ability-list2 .cn-font18 {
    margin: 36px 0 80px; }
.ability-list2 .num-item {
    text-align: center;
    flex: 1;
    line-height: 1.1;
    font-size: var(--ft18);
    border-left: 1px solid rgba(255, 255, 255, 0.1); }
.ability-list2 .num-item:first-child {
    border-left: none; }
.ability-list2 .num-txts {
    display: block; }
.ability-list2 .num-num0 {
    margin-bottom: 10px;
    display: block; }

.in-about-about-text .down-box{
    display: inline-block;
    text-align: center;
}
.in-about-about-text .down-box h4{
    font-size: var(--ft18);
}
.in-about-about-text .down-box .d-more a{
    width: 125px;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    background-color: #f8ce67;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
}

.recruits-list2 {
    min-height: 400px;
    padding-bottom:80px; }
.recruits-list2 .recruits-nav {
    flex: 0 0  300px;
    width: 300px; }
.recruits-list2 .recruits-nav-name {
    font-size: 24px;
    color: #fff;
    line-height: 80px;
    padding-left: 36px;
    background: #466ce9; }
.recruits-list2 .scroll-wrap {
    max-height: 640px; }
.recruits-list2 .recruits-nav-a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding: 20px 36px;
    border-bottom: 1px solid #fff;
    background: #f4f4f4;
    transition-duration: .5s; }
.recruits-list2 .recruits-nav-a:before{
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 6px;
    height: 0;
    transition-duration: .5s;
    background:#466ce9;
    position: absolute; }
.recruits-list2 .recruits-nav-a:hover, .recruits-list2 .recruits-nav-a.cur {
    background: #fff; }
.recruits-list2 .recruits-nav-a:hover:before, .recruits-list2 .recruits-nav-a.cur:before,
.recruits-list2 .recruits-nav-a.active:before{
    height: 100%; }

.recruits-list2 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #ee772b !important; }
.recruits-list2 .mCSB_scrollTools {
    width: 6px !important; }
.recruits-list2 .mCSB_inside > .mCSB_container {
    margin-right: 0 !important; }
.recruits-list2 .mCSB_scrollTools .mCSB_draggerRail {
    background: #f4f4f4 !important; }
.recruits-list2 .recruits-info {
    flex: 0 0 calc(100% - 324px);
    width: calc(100% - 324px);
    background: #f4f4f4; }
.recruits-list2 .recruits-info-contents {
    padding: 44px 64px 100px;
    display:none;
    opacity: 1;
    transform: translateY(20px);
    line-height: 1.8;
    font-size: 16px;
    transition-duration: .3s; }
.recruits-list2 .recruits-info-contents:nth-child(1){
    display:block;
}
.recruits-list2 .recruits-info-contents.cur {
    opacity: 1;
    transform: translateY(0); }
.recruits-list2 .recruits-position-name {
    font-size: 20px;
    line-height: 1.2;
    color: #444;
    padding-bottom: 4px; }
.recruits-list2 .recruits-para-wrap {
    justify-content: flex-start;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 30px; }
.recruits-list2 .para-item {
    flex: 0 0 auto;
    font-size: 14px;
    line-height: 24px;
    color: #444;
    position: relative;
    padding-left: 30px; }
.recruits-list2 .para-item:before {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #cfcfcf;
    left: 15px;
    top: 4px; }
.recruits-list2 .para-item:first-child {
    padding-left: 0; }
.recruits-list2 .para-item:first-child:before {
    display: none; }
.recruits-list2 .recruits-bot-item {
    font-size: 14px;
    line-height: 34px;
    padding-top: 30px; }
.recruits-list2 .recruits-bot-h5 {
    color: #444; }
.recruits-list2 .recruits-bot-detial {
    color: #888; }
.recruits-list2 .recruits-a {
    display: block;
    margin-top: 42px;
    width: 120px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
    padding-left: 24px;
    background: #ee772b url(../img/recruits-a.png) no-repeat right 24px center;
    transition-duration: .3s; }
.recruits-list2 .recruits-a:hover {
    background: #ee772b url(../img/recruits-a.png) no-repeat right 18px center; }


.recruits-list3 .m-img {
    display: none;
}

.recruits-list3 .swiper-slide:hover .txts-mains{
    height: auto;
    color: #fff;
}
.recruits-list3 .swiper-slide:hover .txts-mains p{
    color: #fff;
}

.recruits-list3 .list3-txts {
    padding: 28px;
    height: auto;
    width: 100%;
    max-height: 100%;
    transform: translate(-50%,-50%);
}
.recruits-list3 {
    padding: 72px 0;
}
.recruits-list3 .img-wrap {
    height: 355px;
        border-radius: 20px;
}
.recruits-list3 .swiper-wrapper{
    margin: -10px;
}
.recruits-list3 .swiper-slide {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.recruits-list3 .ico-wrap {
    width: 40px;
    margin: 0 auto 20px;
}
.recruits-list3 .list3-h5 {
    font-size: 20px;
    font-weight: 700;
}
.recruits-list3 .list3-h5:after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: #fff;
    margin: 20px auto;
}
.recruits-list3 .txts-mains {
    font-size: 14px;
    transition-duration: .3s;
    height: 0;
    overflow: hidden;
}
.recruits-list3 .scroll-wrap,.recruits-list3 .txts-mains.autoHeight {
    height: 168px;
}

@media screen and (max-width: 1000px) {
  .ability-list2 .list-left{
    padding: 0;
    width: 100%!important;
  }
  .ability-list2 .list-right{
    padding: 0;
    width: 100%!important;
    margin-top: 40px;
  }

  .recruits-list2 .recruits-nav{
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .recruits-list2 .recruits-info{
    flex: none;
    width: 100%;
  }

  .recruits-list2 .recruits-info-contents{
    padding: 20px 36px;
  }
}
/* end */




.inner-page h3.title{
    font-size: 40px;
    line-height: 1.2;
    font-weight: bold;
}
.inner-page h3.title em{
    color: #bc1b21;
}
.production-sec .pur-sec {
    padding: 48px 0;
}
.production-sec .pur-sec .mml-row {
    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;
}
.production-sec .pur-sec .mml-row .text-wrap {
    width: 100%;
    max-width: 800px;
    padding-top: 90px;
}
.production-sec .pur-sec .mml-row .text-wrap h2 {
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .pur-sec .mml-row .text-wrap p {
    font-size: var(--ft18);
    line-height: 1.8;
    color: #242424;
    letter-spacing: 0.2px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .pur-sec .mml-row .img-wrap {
    width: 60%;
    max-width: 760px;
}
.production-sec .fig-sec {
    padding-bottom: 55px;
}
.production-sec .fig-sec .mml-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-content: center;
}
.production-sec .fig-sec .mml-row h2 {
    font-weight: bold;
    font-style: normal;
    font-size: 38.4px;
    line-height: 1.2;
    color: #bc1b21;
    margin-bottom: 6px;
    width: 40%;
}
.production-sec .fig-sec .mml-row ul {
    width: 60%;
    max-width: 760px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 45px 0px 30px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.production-sec .fig-sec .mml-row ul li {
    max-width: 193px;
    text-align: center;
}
.production-sec .fig-sec .mml-row ul li .nums {
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
    color: #bc1b21;
}
.production-sec .fig-sec .mml-row ul li p {
    font-size: var(--ft18);
    line-height: 32px;
    color: #282828;
    margin-bottom: 0px;
    margin-top: 10px;
}
.production-sec .prints-sec {
    padding-bottom: 64px;
}
.production-sec .prints-sec .mml-row {
    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;
}
.production-sec .prints-sec .mml-row .img-wrap {
    width: 46%;
    /*max-width: 500px;*/
}
.production-sec .prints-sec .mml-row .text-wrap {
    width: 70%;
    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;
    max-width: 760px;
}
.production-sec .prints-sec .mml-row .text-wrap .text h2 {
    margin-bottom: 25px;
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .prints-sec .mml-row .text-wrap .text p {
    font-size: var(--ft18);
    line-height: 1.8;
    color: #242424;
    letter-spacing: 0.2px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li {
    padding: 25px 0px;
    font-style: normal;
    font-size: 14px;
    color: #888;
    border-bottom: 1px solid #d2d2d2;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li h4 {
    font-style: normal;
    font-size: 24px;
    line-height: 44px;
    color: #303030;
    margin-bottom: 10px;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li p {
    margin-bottom: 0px;
}
.production-sec .proto-sec h2 {
    font-weight: bold;
    font-style: normal;
    color: #000;
    font-size: 32px;
    line-height: 1.2;
    margin: 32px;
    text-align: center;
}
.production-sec .proto-sec ul {
    font-size: 0;
    margin: -15px;
}
.production-sec .proto-sec ul li {
    display: inline-block;
    width: 25%;
    padding: 15px;
}
.production-sec .proto-sec ul li img {
    display: block;
    max-width: 100%;
}
.production-sec .proto-sec h4 {
    font-weight: bold;
    font-style: normal;
    font-size: 40px;
    color: #242424;
    text-align: center;
}
.production-sec .proto-sec p {
    font-style: normal;
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-bottom: 0px;
}
.production-sec .p11-milestone {
    padding: 52px 0;
    background-color: whitesmoke;
}
.production-sec .p11-milestone .text h2 {
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .p11-milestone .title {
    margin-bottom: 32px;
}
.production-sec .p11-milestone .list ul {
    margin: -15px;
}
.production-sec .p11-milestone .list ul li {
    padding: 15px;
}
.production-sec .p11-milestone .galaxy {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.production-sec .p11-milestone .track {
    position: absolute;
    left: 0;
    top: 50%;
    margin-right: 200px;
    height: 5px;
    width: 1600px;
    -webkit-transform: translate3d(0, -2.5px, 0);
    -moz-transform: translate3d(0, -2.5px, 0);
    transform: translate3d(0, -2.5px, 0);
    will-change: transform;
}
.production-sec .p11-milestone .comet,
.production-sec .p11-milestone .historys {
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    will-change: transform;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.production-sec .p11-milestone .comet {
    position: relative;
    width: 0;
    border-radius: 3px;
    background-image: -webkit-gradient(linear, left top, right top, from(#bc1b21), color-stop(50%, #f35d2e), to(#f25743));
    background-image: -webkit-linear-gradient(left, #bc1b21 0%, #f35d2e 50%, #f25743 100%);
    background-image: -moz-linear-gradient(left, #bc1b21 0%, #f35d2e 50%, #f25743 100%);
    background-image: linear-gradient(90deg, #bc1b21 0%, #f35d2e 50%, #f25743 100%);
}
.production-sec .p11-milestone .comet::after {
    content: '\20';
    position: absolute;
    z-index: 3;
    right: -6px;
    top: -3px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    height: 12px;
    width: 12px;
    border-radius: 6px;
    background: #fff;
    -webkit-box-shadow: 0 0 80px #fff;
    box-shadow: 0 0 80px #fff;
}
.production-sec .p11-milestone .historys {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 260px;
}
.production-sec .p11-milestone .historys time,
.production-sec .p11-milestone .historys text {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.production-sec .p11-milestone .historys time {
    font-style: normal;
    color: #242424;
    font-size: 24px;
    line-height: 24px;
}
.production-sec .p11-milestone .historys .text p {
    font-style: normal;
    color: #242424;
    font-size: 16px;
    line-height: 24px;
}
.production-sec .p11-milestone .historys .text .pic {
    max-width: 400px;
    max-height: 250px;
    margin: 0 auto 15px;
    overflow: hidden;
}
.production-sec .p11-milestone .historys > li {
    position: relative;
    width: 400px;
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.production-sec .p11-milestone .historys > li:nth-child(even) time {
    bottom: 450%;
}
.production-sec .p11-milestone .historys > li:nth-child(even) time::before {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 10px;
    content: '';
    display: block;
    background-color: #fff;
    margin-left: -1px;
}
.production-sec .p11-milestone .historys > li:nth-child(even) .text {
    top: 1000%;
}
.production-sec .p11-milestone .historys > li:nth-child(odd) time {
    top: 450%;
}
.production-sec .p11-milestone .historys > li:nth-child(odd) time::before {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 10px;
    content: '';
    display: block;
    background-color: #fff;
    margin-left: -1px;
}
.production-sec .p11-milestone .historys > li:nth-child(odd) .text {
    bottom: 1000%;
}
.production-sec .p11-milestone .historys > li.mml-show {
    opacity: 1;
}
.production-sec .p11-milestone .historys > li.mml-show:nth-child(even) .text {
    -webkit-transform: translate(0, 12px);
    -moz-transform: translate(0, 12px);
    -ms-transform: translate(0, 12px);
    transform: translate(0, 12px);
}
.production-sec .p11-milestone .historys > li.mml-show:nth-child(odd) .text {
    -webkit-transform: translate(0, -12px);
    -moz-transform: translate(0, -12px);
    -ms-transform: translate(0, -12px);
    transform: translate(0, -12px);
}
.production-sec .p11-milestone .historys > li::before {
    content: '\20';
    position: absolute;
    left: 50%;
    top: 0;
    margin: -3px 0 0 -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bc1b21;
}
.production-sec .team-img {
    text-align: center;
}
.production-sec .team-img .text h2 {
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
@media screen and (max-width: 1500px) {
    .prints-sec .img-wrap {
        width: 35%;
    }
    .prints-sec .text-wrap {
        width: 60%;
    }
}
@media screen and (max-width: 1200px) {
    .text.mod-1 h2 {
        font-size: calc(0.8345vw + 14px);
        line-height: 1.4;
        margin-bottom: 20px !important;
        padding-top: 10px !important;
    }
    .production-sec .fig-sec h2 {
        font-size: calc(0.8345vw + 14px);
    }
    .production-sec .prints-sec .mml-row .img-wrap {
        width: 45%;
    }
    .production-sec .prints-sec .mml-row .text-wrap {
        width: 50%;
    }
    .production-sec .prints-sec .mml-row .text-wrap .text ul li h4 {
        font-size: 22px;
    }
}
@media screen and (max-width: 1000px) {
    .production-sec .pur-sec .mml-row {
        display: block;
    }
    .production-sec .fig-sec .mml-row ul {
        width: 100%;
    }
    .production-sec .prints-sec .mml-row .text-wrap {
        width: 100%;
    }
    .production-sec .pur-sec .container .text-wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .production-sec .pur-sec .container .img-wrap {
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }
    .production-sec .fig-sec .mml-row {
        display: block;
    }
    .production-sec .fig-sec h2 {
        width: 100%;
        margin-bottom: 30px;
    }
    .production-sec .fig-sec ul {
        width: 100%;
        max-width: 100%;
    }
    .prints-sec .img-wrap {
        display: none;
    }
    .prints-sec .text-wrap {
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .production-sec .pur-sec {
        padding: 20px 0 !important;
    }
    .production-sec .fig-sec ul {
        display: block;
    }
    .production-sec .fig-sec ul li {
        max-width: 100%;
        padding: 20px 0;
    }
    .production-sec .fig-sec {
        display: none;
    }
    .production-sec .pur-sec .mml-row .text-wrap p {
        font-size: 14px;
        line-height: 2;
    }
    .production-sec .prints-sec .mml-row .text-wrap .text p {
        font-size: 14px;
        line-height: 2;
    }
}






/* 应用 */
.solu-1 {
  background: var(--color);
  color: #fff;
  padding: 30px;
}

.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-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;
  font-weight: bold;
  font-size: calc(0.8345vw + 14px);
}
.solu-5 ul.solulist2 li .text span {
  text-transform: uppercase;
  color: #000;
  opacity: .7;
}
.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);
}

@media screen and (max-width: 1000px) {
  .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%;
  }
  .solu-2 {
    top: 40px;
  }
}

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

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

@media screen and (max-width: 500px) {
  .font-40 {
    font-size: 20px;
  }
  .solu-2 .navbox ul.navlist li {
    width: 100%;
  }

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






.transition_1 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.pb-150 {
  padding-bottom: 150px;
}
.pt-120 {
  padding-top: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pt-90 {
  padding-top: 90px;
}
.pb-90 {
  padding-bottom: 90px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-70 {
  padding-bottom: 70px;
}

.sustainable-page .init-1 .container .left {
  font-weight: 700;
  width: 530px;
  padding-right: 10px;
}
.sustainable-page .init-1 .container .right {
  width: -webkit-calc(-430%);
  width: -moz-calc(-430%);
  width: calc(100% - 530px);
  color: #838383;
}
.sustainable-page .init-1 .container .content {
  margin: 10px -25px 0;
}
.sustainable-page .init-1 .container .content .list {
  margin-top: 40px;
  padding: 0 25px;
}
.sustainable-page .init-1 .container .content .list .box {
  display: block;
  background-color: #f9f9f9;
  padding: 16px 60px 16px 16px;
}
.sustainable-page .init-1 .container .content .list .box .img {
  width: 166px;
  height: 166px;
  background-color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}
.sustainable-page .init-1 .container .content .list .box .img img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.sustainable-page .init-1 .container .content .list .box .text {
  width: -webkit-calc(-66%);
  width: -moz-calc(-66%);
  width: calc(100% - 166px);
  padding-left: 34px;
}
.sustainable-page .init-1 .container .content .list .box .text .title {
  font-weight: 500;
  margin-top: 10px;
}
.sustainable-page .init-1 .container .content .list .box .text .des {
  color: #898989;
  margin-top: 10px;
  line-height: 1.6;
}
.sustainable-page .init-1 .container .content .list .box:hover {
  background-color: #245e3e;
  color: #fff;
}
.sustainable-page .init-1 .container .content .list .box:hover .text .title {
  color: #ffff;
}
.sustainable-page .init-1 .container .content .list .box:hover .text .des {
  color: #fff;
}
.sustainable-page .init-2 {
  text-align: center;
  -o-background-size: cover;
  background-size: cover;
  padding: 200px 0;
  color: #fff;
}
.sustainable-page .init-2 .container .tips {
  font-weight: 500;
}
.sustainable-page .init-2 .container .des {
  max-width: 660px;
  margin: 30px auto 0;
}
.sustainable-page .init-3 .container .left {
  width: -webkit-calc(-410%);
  width: -moz-calc(-410%);
  width: calc(100% - 510px);
  padding-right: 90px;
}
.sustainable-page .init-3 .container .left .list {
  margin-top: 50px;
}
.sustainable-page .init-3 .container .left .list .img {
  width: 50px;
}
.sustainable-page .init-3 .container .left .list .text {
  width: -webkit-calc(50%);
  width: -moz-calc(50%);
  width: calc(100% - 50px);
  padding-left: 40px;
}
.sustainable-page .init-3 .container .left .list .text .title {
  font-weight: 700;
}
.sustainable-page .init-3 .container .left .list .text .des {
  margin-top: 10px;
  color: #8d8d8d;
}
.sustainable-page .init-3 .container .left .list:first-child {
  margin-top: 0;
}
.sustainable-page .init-3 .container .left .list:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.sustainable-page .init-3 .container .left .list:hover .img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.sustainable-page .init-3 .container .right {
  width: 510px;
}
.sustainable-page .init-3 .container .right img {
  width: 100%;
}
.sustainable-page .init-4 {
  background-color: #f9f9f9;
}
.sustainable-page .init-4 .container .img {
  width: 40%;
}
.sustainable-page .init-4 .container .right {
  width: 60%;
  padding-left: 120px;
}
.sustainable-page .init-4 .container .right .title {
  font-weight: 700;
}
.sustainable-page .init-4 .container .right .des {
  color: #878787;
  margin-top: 20px;
}
.sustainable-page .init-5 .container .top_c .left {
  width: 700px;
  padding-right: 100px;
}
.sustainable-page .init-5 .container .top_c .left .tips {
  font-weight: 700;
}
.sustainable-page .init-5 .container .top_c .left .des {
  color: #8a8a8a;
  margin-top: 10px;
}
.sustainable-page .init-5 .container .top_c .right {
  vertical-align: bottom;
  width: -webkit-calc(-600%);
  width: -moz-calc(-600%);
  width: calc(100% - 700px);
}
.sustainable-page .init-5 .container .top_c .right .list_cont .list {
  cursor: pointer;
  padding: 0 20px;
  width: 25%;
  text-align: center;
  color: #bfbfbf;
}
.sustainable-page .init-5 .container .top_c .right .list_cont .list .img {
  height: 50px;
}
.sustainable-page .init-5 .container .top_c .right .list_cont .list .img img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.sustainable-page .init-5 .container .top_c .right .list_cont .list .text {
  margin-top: 30px;
  font-weight: 500;
}
.sustainable-page .init-5 .container .top_c .right .list_cont .list:hover,
.sustainable-page .init-5 .container .top_c .right .list_cont .list.active {
  color: #328256;
}
.sustainable-page .init-5 .container .content {
  margin-top: 40px;
}
.sustainable-page .init-5 .container .content .slick li .box {
  background-color: #f9f9f9;
}
.sustainable-page .init-5 .container .content .slick li .box .left {
  width: -webkit-calc(-410%);
  width: -moz-calc(-410%);
  width: calc(100% - 510px);
  vertical-align: middle;
}
.sustainable-page .init-5 .container .content .slick li .box .left img {
  width: 100%;
}
.sustainable-page .init-5 .container .content .slick li .box .right {
  vertical-align: middle;
  width: 510px;
  padding: 40px 70px;
}
.sustainable-page .init-5 .container .content .slick li .box .right .title {
  font-weight: 700;

}
.sustainable-page .init-5 .container .content .slick li .box .right .des {
  margin-top: 20px;
  color: #8a8a8a;
}
.sustainable-page .init-6 {
  -o-background-size: cover;
  background-size: cover;
  color: #fff;
  padding-bottom: 230px;
}
.sustainable-page .init-6 .container .left {
  width: 410px;
}
.sustainable-page .init-6 .container .left .tips {
  font-weight: 500;
}
.sustainable-page .init-6 .container .left .des {
  margin-top: 20px;
}
.sustainable-page .init-6 .container .right {
  width: -webkit-calc(-310%);
  width: -moz-calc(-310%);
  width: calc(100% - 410px);
  padding-left: 280px;
}
.sustainable-page .init-6 .container .right .list {
  cursor: pointer;
  position: relative;
  margin-top: 36px;
}
.sustainable-page .init-6 .container .right .list .line_cont {
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 2px;
}
.sustainable-page .init-6 .container .right .list .line_cont .line {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #000;
}
.sustainable-page .init-6 .container .right .list .line_cont .line1 {
  width: 14px;
  height: 2px;
}
.sustainable-page .init-6 .container .right .list .line_cont .line2 {
  width: 2px;
  height: 14px;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.sustainable-page .init-6 .container .right .list .text {
  padding-left: 40px;
}
.sustainable-page .init-6 .container .right .list .text .title {
  font-weight: 500;
}
.sustainable-page .init-6 .container .right .list .des {
  display: none;
  margin-top: 20px;
}
.sustainable-page .init-6 .container .right .list:first-child {
  margin-top: 0;
}
.sustainable-page .init-6 .container .right .list.active .line_cont .line2 {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
}
.sustainable-page .init-7 {
  position: relative;
  z-index: 2;
  margin-top: -150px;
}
.sustainable-page .init-7 .container .cont {
  background-color: #fff;
  padding: 60px 180px 100px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.sustainable-page .init-7 .container .cont .tips {
  font-weight: 500;
  text-align: center;
}
.sustainable-page .init-7 .container .cont .tips_des {
  margin: 10px auto 0;
  color: #8e8e8e;
  text-align: center;
  max-width: 640px;
}
.sustainable-page .init-7 .container .cont .img {
  margin-top: 30px;
  display: block;
  width: 100%;
}
.sustainable-page .init-8 .container .tips {
  font-weight: 500;
  text-align: center;
}



.sustainable-page .init-8 .container .tips_des {
  max-width: 1000px;
  color: #8a8a8a;
  text-align: center;
  margin: 20px auto 0;
}
.sustainable-page .init-8 .container .content {
  margin-top: 50px;
}
.sustainable-page .init-8 .container .content .slick {
  margin: 0 -15px 0;
}
.sustainable-page .init-8 .container .content .slick .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.sustainable-page .init-8 .container .content .slick .slick-track .slick-slide {
  height: auto;
}
.sustainable-page .init-8 .container .content .slick .slick-track .slick-slide > div {
  height: 100%;
}
.sustainable-page .init-8 .container .content .slick li {
  height: 100%;
  padding: 0 15px;
}
.sustainable-page .init-8 .container .content .slick li .box {
  height: 100%;
  background-color: #f9f9f9;
  padding: 44px 60px;
}
.sustainable-page .init-8 .container .content .slick li .box .title {
  font-weight: 500;
}
.sustainable-page .init-8 .container .content .slick li .box .des {
  color: #8a8a8a;
  margin-top: 20px;
}
.sustainable-page .init-8 .container .content .slick li .box:hover {
  background-color: #328256;
}
.sustainable-page .init-8 .container .content .slick li .box:hover .title {
  color: #fff;
}
.sustainable-page .init-8 .container .content .slick li .box:hover .des {
  color: #fff;
}


@media (max-width: 1500px) {
  .sustainable-page .init-5 .container .top_c .left {
    width: 500px;
    padding-right: 20px;
  }
  .sustainable-page .init-5 .container .top_c .right {
    width: -webkit-calc(-400%);
    width: -moz-calc(-400%);
    width: calc(100% - 500px);
  }
}


@media (max-width: 1250px) {
  .sustainable-page .init-6 .container .right {
    padding-left: 20px;
  }
  .sustainable-page .init-8 .container .content .slick li .box {
    padding: 20px;
  }
}

@media (max-width: 1000px) {
  .sustainable-page .init-1 .container .left {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .sustainable-page .init-1 .container .right {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .sustainable-page .init-1 .container .content .list {
    width: 100%;
  }
  .sustainable-page .init-3 .container .left {
    width: 100%;
    padding-right: 0;
  }
  .sustainable-page .init-3 .container .right {
    display: none;
  }
  .sustainable-page .init-4 .container .img {
    display: none;
  }
  .sustainable-page .init-4 .container .right {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .sustainable-page .init-5 .container .top_c .left {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .sustainable-page .init-5 .container .top_c .right {
    width: 100%;
  }
  .sustainable-page .init-5 .container .top_c .right .list {
    margin-top: 20px;
  }
  .sustainable-page .init-5 .container .content .slick li .box {
    text-align: center;
  }
  .sustainable-page .init-5 .container .content .slick li .box .left {
    width: 100%;
    max-width: 420px;
    margin-top: 20px;
  }
  .sustainable-page .init-5 .container .content .slick li .box .right {
    width: 100%;
  }
  .sustainable-page .init-6 .container .left {
    width: 100%;
  }
  .sustainable-page .init-6 .container .right {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .sustainable-page .init-7 .container .cont {
    padding: 16px;
  }
}


@media (max-width: 700px) {
  .sustainable-page .init-6 {
    padding: 40px 0;
  }
  .sustainable-page .init-7 {
    display: none;
  }
}


@media (max-width: 500px) {
  .sustainable-page .init-1 .container .content .list {
    margin-top: 20px;
  }
  .sustainable-page .init-1 .container .content .list .box {
    text-align: center;
    padding: 20px 16px;
  }
  .sustainable-page .init-1 .container .content .list .box .text {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .sustainable-page .init-2 {
    padding: 40px 0;
  }
  .sustainable-page .init-3 .container .left .list {
    text-align: center;
  }
  .sustainable-page .init-3 .container .left .list .text {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .sustainable-page .init-5 .container .top_c .right .list_cont .list {
    width: 50%;
    padding: 0 5px;
  }
  .sustainable-page .init-5 .container .top_c .right .list_cont .list .text {
    margin-top: 10px;
  }
  .sustainable-page .init-5 .container .content .slick li .box .right {
    padding: 16px;
  }
  .sustainable-page .init-5 .container .content .slick li .box .right .des {
    margin-top: 10px;
  }
}




/* 工程中心 */
.patent-top {
    padding: calc(1.56vw + -30px) 0 calc(1.0385vw + 40px);
    align-items: self-start;
}

.patent-top .list1-left {
    flex: 0 0 auto;
}

.patent-top .title-cn,.tytitle {
    font-size: calc(2.3955vw + 14px);
    line-height: 1;
    color: #333;
}

.patent-top .title-en {
    text-transform: uppercase;
}

.patent-top .title-en {
    font-size: calc(0.8345vw + 14px);
    line-height: 1;
    color: #c5c5c5;
    margin-top: 8px;
}

.patent-top .list1-right {
    flex: 0 0 920px;
    margin-top: 20px;
    margin-right: calc(9.90vw + 53px);
}

.patent-top .nums-wrap {
    justify-content: left;
}

.patent-top .right-title {
    color: #333;
    font-size: calc(0.8345vw + 14px);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 18px;
}

.patent-top .nums-wrap {
    padding: 40px 0;
}

.patent-top .num-item {
    text-align: center;
    flex: 0 0 auto;
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid #dbdbdb;
}

.patent-top .num0 {
    display: block;
    font-size: 40px;
    line-height: 1;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.patent-top .num-txt {
    color: #888;
    font-size: 14px;
    line-height: 1;
    display: block;
}

.patent-top .num-item:last-child {
    border-right: none;
    margin-right: 0;
}

.patent-top .right-detail {
    color: #888;
    font-size: var(--ft18);
    font-weight: 300;
    line-height: 2;
}




@keyframes bounce-up-data-v-7e3caf58
{
	10% {
		transform: rotate(20deg);
	}
	20% {
		transform: rotate(-10deg);
	}
	30% {
		transform: rotate(5deg);
	}
	40% {
		transform: rotate(-5deg);
	}
	50%, 100% {
		transform: rotate(0deg);
	}
}

.hu_h3 {font-size: 44px;font-weight: bold;color: #333333;}
.hu_p {font-size: var(--ft18);color: #666666;line-height: 30px;}

@media screen and (max-width: 1600px){
  .hu_h3 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 768px){
  .hu_h3 {
    font-size: 26px;
  }
}


/* aft */
.aft01 {padding: 120px 0 100px; background: url(../images/aft01_bg.jpg);background-size: cover;position: relative;overflow: hidden;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.aft01  h4 {    font-size: calc(0.8345vw + 14px); color: #333333; margin: 16px 0 28px; font-weight: bold;}
.aft01 .box {display: flex;    margin-bottom: 60px;}
.aft01 .box .min {width: 350px;height: 350px;border-radius: 50%;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.aft01 .box .min:nth-of-type(1) {transition: 0.5s; background-color: rgb(71 110 236);position: relative;z-index: 1;left: 0px;}
.aft01 .box .min:nth-of-type(2) {transition: 0.5s; background-color: rgb(36 36 36 / 90%); margin-left: -42px;position: relative;right: 0px;}
.aft01 .box:hover .min:nth-of-type(1){left: 308px;}
.aft01 .box:hover .min:nth-of-type(2){right: 308px;}
.aft01 .box .min  h5 {font-size: 20px;font-weight: bold;margin-bottom: 30px;color: #fff;}
.aft01 .box .min  h6 {font-size: 24px;color: #fff;font-weight: bold;margin-bottom: 50px;text-align: center;}
.aft01 .box .min  img {width: 42px;}
.aft01 p {font-size: 20px;color: #333333;font-weight: bold;}
.aft02 {padding: 160px 0 120px;position: relative;overflow: hidden;}
.aft02 .bg_fix {position: absolute;top: 0px;left: 0px;width: 100%;height: 690px;}
.aft02 .bg_fix::after { content: ""; display: inline-block; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); position: absolute; left: 0; top: 0; }
.aft02 .bg_fix img {height: 100%;width: 100%;object-fit: cover;}
.aft02 .top {display: flex;justify-content: center;align-items: center;flex-direction: column;margin-bottom: 47px;    z-index: 1; position: relative;}
.aft02 .top .hu_h3 {color: #fff;}
.aft02 .top  p {font-size: var(--ft18);line-height: 34px;text-align: center;color: #fff;margin-top: 10px;}
.aft02 .top .line {height: 75px;width: 1px;background-color: rgba(255,255,255,0.4);margin: 28px 0 ;position: relative;}
.aft02 .top .line::after {content: "";  width: 7px; height: 7px; background-color: #fff; position: absolute; left: 50%; transform: translateX(-50%); top: 0px; animation: 2s linear 0.5s infinite hua2;}
@keyframes hua2 { from { top: 0%; } to { top: 95%; } }
.aft02 .top h4 {font-size: calc(0.8345vw + 14px);color: #fff;}
.aft02 .botF {padding: 0 90px;position: relative;}
.aft02 .botF .fa {    background-image: none; width: auto; height: auto; margin: 0; padding: 0; font-size: 74px; color: #cbcbcb; outline: none;}
.aft02 .botF .fa:hover {color: var(--color);;}
.aft02 .bot {position: relative;overflow: hidden;margin: auto;}
.aft02 .bot .box {    background-color: #fff; padding: 50px 0 138px; border-radius: 12px; box-shadow: 0px 5px 15px rgb(102 102 102 / 30%); display: flex; justify-content: center; align-items: center; flex-direction: column;}
.aft02 .bot .box  .icon {border-radius: 50%; position: relative; height: 111px; display: flex;justify-content: center;align-items: center; width: 111px;}
.aft02 .bot .box.active  .icon::before {   animation: img01anime 10s 0s linear infinite; }
.aft02 .bot .box.active  .icon::after{  animation: img02anime 10s 0s linear infinite;}
.aft02 .bot .box  .icon::before {   content: ""; position: absolute; width: 120%; height: 120%; border-radius: 50%;  border: 1.6px dashed #476eec;}
.aft02 .bot .box  .icon::after{ content: ""; position: absolute; width: 100%; height: 100%; border-radius: 50%;  border: 1.6px dashed #476eec;}
.aft02 .bot .box {
  position: relative;
}
.aft02 .bot .box p,
.aft02 .bot .box .icon,
.aft02 .bot .box h4,
.aft02 .bot .box h5{
  position: relative;
  z-index: 3;
}
.aft02 .bot .box .bg{
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.2);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.aft02 .bot .box.active .bg{
background: rgba(0,0,0,0.4);
}
@keyframes img01anime{
	0%{transform: rotate(0deg);}
	100%{transform: rotate(360deg);}
}
@keyframes img02anime{
	0%{transform: rotate(0deg);}
	100%{transform: rotate(-360deg);}
}

.aft02 .bot .box  .icon img {width: 56px;transition: 0s;}
.aft02 .bot .box h4 {font-size: calc(0.8345vw + 14px);font-weight: bold;color: #333333;margin-bottom: 5px;    margin-top: 54px;}
.aft02 .bot .box h5 {        width: 239px; font-size: var(--ft18); position: relative; color: #2c2c2c; text-align: center; line-height: 26px; height: 52px;}
.aft02 .bot .box h5::after {content: "";position: absolute;width: 20px;height: 4px;background-color: var(--color);left: 50%;transform: translateX(-50%);bottom: 0px;}
.aft02 .bot .box p{
  min-height: 77px;
}
.aft02 .bot .box p{padding:0px 40px; font-size: 17px;}
.aft02 .bot .box.active h5::after {background-color: #fff;}
.aft02 .bot .box.active h4,.aft02 .bot .box.active h5,.aft02 .bot .box.active p{color: #fff;}
.aft02 .bot .box.active  .icon img {filter: grayscale(10) brightness(10);}
.aft02 .bot .box.active  .icon,.aft02 .bot .box.active  .icon::before,.aft02 .bot .box.active  .icon::after {border-color: #fff;}

.aft02 .bot .box.active {background-color: var(--color);}
.aft02 .botF .fa::before{
  display: none;
}
.aft02 .bot .aft02Swiper {width: 1200px;margin: auto;padding-bottom: 30px;}
.aft02 .bot  {width: 1242px;margin: auto;    padding: 22px 0;} 
.aft03 {padding-bottom: 160px;position: relative;overflow: hidden;}
.aft03 .icenter2 {display: flex;justify-content: space-between;align-items:center;}
.aft03 .icenter2 .le {overflow: hidden;position: relative;width: 40%;    height: 695px;}
.aft03 .icenter2 .le::before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,.5); content: ''; -webkit-transition: -webkit-transform .6s; transition: transform .6s; -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0); transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0); z-index: 1; }
.aft03 .icenter2 .le:hover::before { -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0); transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0); }
.aft03 .icenter2 .le img{height: 100%;}
.aft03 .icenter2 .le:hover img {transform: scale(1.1);}
.aft03 .icenter2 .ri {width: 50%;}
.aft03 .icenter2 .ri ul {margin: 20px 0 0px;}
.aft03 .icenter2 .ri ul li {position: relative;padding-left: 15px;font-size: var(--ft18);color: #666666;line-height: 30px;}
.aft03 .icenter2 .ri ul li::before {    width: 5px; height: 5px; border-radius: 50%; background-color: #666666; position: absolute; left: 0px; top: 13px; content: "";}
.aft03 dl dd{ padding-top: 60px;  display: flex;align-items: center;padding-bottom: 20px;border-bottom: 1px solid #d5d5d5;}
.aft03 dl dd .icon {width: 86px;margin-right: 58px;}
.aft03 dl dd .text {}
.aft03 dl dd .text h4 {    position: relative; padding-bottom: 0px; font-size: var(--ft18); color: #333333; width: fit-content; margin-bottom: 10px;}
.aft03 dl dd .text h4 strong {font-size: 70px;font-weight: bold;}
.aft03 dl dd .text h4::after { position: absolute;content: "";left: 0px;bottom: 0px; width: 100%;height: 5px;background-color:#54b0bb;}
.aft03 dl dd .text  p {font-size: calc(0.415vw + 14px);color: #666666;}
.aft04 {background: url(../images/aft04_bg.jpg);background-size: cover;position: relative;overflow: hidden;background-attachment: fixed;padding: 130px 0 180px;}
.aft04  .icenter2 {position: relative; z-index: 1;}
.aft04::after { content: ""; display: inline-block; width: 100%; height: 100%; background-color: rgba(239, 241, 247, 0.65); position: absolute; left: 0; top: 0; }
.aft04 .hu_h3 {padding-left: 42px;}
.aft04 dl {margin-top: 50px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2;}
.aft04 dl dd {width: 48%;padding-left: 42px;padding-bottom: 42px;box-sizing: border-box;display: flex;align-items: center;position: relative;    justify-content: space-between;}
.aft04 dl dd .bg {position: absolute; width: 127px;left: 0px;bottom: 0px;transition: 0.5s;}
.aft04 dl dd:hover .bg {left: 30px;bottom: 30px;}
.aft04 dl dd .le {width: 38.5%;}
.aft04 dl dd .ri {width: 51%;}
.aft04 dl dd .ri .name {font-size: 20px;font-weight: bold;color: #333333;width: 156px;height: 43px;border: 1px solid #d3d3d4;display: flex;justify-content: center;align-items: center;    background-color: #fff;}
.aft04 dl dd:hover .ri .name {background-color: #cd161d;color: #fff;}
.aft04 dl dd .ri .number{margin-top: 78px;}
.aft04 dl dd .ri .number .t {display: flex;align-items: center; margin-bottom: 17px; }
.aft04 dl dd .ri .number .t .icon {width: 65px;    margin-right: 12px;animation: bounce-up-data-v-7e3caf58 1.5s linear infinite;}
.aft04 dl dd .ri .number .t a {font-size: 40px;font-weight: bold;color: #cd161d;position: relative;}
.aft04 dl dd .ri .number .t a::after {    content: ""; position: absolute; left: 5px; bottom: -7px; width: 50px; height: 3px; background-color: #cd161d;}
.aft04 dl dd .ri .number span {font-size: var(--ft18);color: #999999;}


@media screen and (max-width:1600px) {
  .aft01 {padding: 100px 0 90px;}
  .aft01 h4 { font-size: 25px; margin: 10px 0 22px; }
  .aft01 .box .min { width: 320px; height: 320px;}
  .aft01 .box:hover .min:nth-of-type(1) { left: 278px; }
  .aft01 .box:hover .min:nth-of-type(2) { right: 278px; }
  .aft01 .box .min h5 { font-size: 17px; margin-bottom: 26px; }
  .aft01 .box .min h6 { font-size: 22px; margin-bottom: 44px; }
  .aft01 .box .min img { width: 32px; }
  .aft01 .box { margin-bottom: 38px; }
  .aft02 .top p { font-size: 15px; line-height: 28px; margin-top: 8px; }
  .aft02 .top { margin-bottom: 30px;}
  .aft02 .top h4 { font-size: 24px; }
  .aft02 .top .line { height: 55px; margin: 20px 0; }
  .aft02 .bot .aft02Swiper { width: 1000px; }
  .aft02 .bot { width: 1032px; padding: 22px 0; }
  .aft02 .botF { padding: 0 13px;}
  .aft02 .botF .fa { font-size: 65px; }
  .aft02 .bot .box { padding: 43px 0 105px; box-shadow: 0 0 11px #d8d8d8;}
  .aft02 .bot .box .icon { height: 95px; width: 95px;}
  .aft02 .bot .box .icon img { width: 48px; }
  .aft02 .bot .box h4 { font-size: 26px; margin-bottom: 5px; margin-top: 44px; }
  .aft02 .bot .box h5 { width: 220px; font-size: 15px; line-height: 24px; height: 48px; }
  .aft02 .bot .box h5::after { width: 17px; height: 3px; bottom: -125px; }
  .aft02 .botF .fa-angle-left {left: -18px;}
  .aft02 .botF .fa-angle-right {right: -18px;}
  .aft02 { padding: 115px 0 90px; }
  .aft02 .bg_fix { height: 555px; }
  .aft03 .icenter2 .ri ul li { padding-left: 15px; font-size: 14px; line-height: 24px; }
  .aft03 .icenter2 .ri ul { margin: 16px 0 0px; }
  .aft03 dl dd { padding-top: 34px; padding-bottom: 12px; }
  .aft03 dl dd .icon { width: 74px; margin-right: 50px; }
  .aft03 dl dd .text h4 { font-size: 16px; margin-bottom: 8px; }
  .aft03 dl dd .text h4 strong { font-size: 58px; }
  .aft03 dl dd .text h4::after { height: 4px;}
  .aft03 dl dd .text p { font-size: var(--ft22) ; }
  .aft03 .icenter2 .le { height: 529px; }
  .aft04 { padding: 100px 0 155px; }
  .aft04 dl dd { padding-left: 36px; padding-bottom: 36px;}
  .aft04 .hu_h3 { padding-left: 36px; }
  .aft04 dl { margin-top: 38px;}
  .aft04 dl dd .ri .number .t .icon { width: 48px; margin-right: 10px;}
  .aft04 dl dd .ri .number .t a { font-size: calc(0.8345vw + 14px); }
  .aft04 dl dd .ri .number .t a::after { width: 41px;}
  .aft04 dl dd .ri .number span { font-size: 16px; }
  .aft04 dl dd .ri .name { font-size: 16px; width: 133px; height: 38px;}
  .aft04 dl dd .bg { width: 115px; }
  .aft04 dl dd .ri .number { margin-top: 70px; }
}

@media only screen and (max-width:768px){
  .aft01 { padding: 50px 0; }
  .aft01 h4 { font-size: 22px; margin: 10px 0 22px; }
  .aft01 .box .min {        width: 192px; height: 192px; }
  .aft01 .box .min h5 { font-size: 14px; margin-bottom: 20px; }
  .aft01 .box .min h6 {      font-size: 16px; margin-bottom: 34px; height: 40px; display: flex; align-items: center;}
  .aft01 p { font-size: 16px; }
  .aft01 .box .min:nth-of-type(2) { margin-left: -25px; }
  .aft02 .top p { font-size: 15px; line-height: 26px; margin-top: 8px; }
  .aft02 .top .line { height: 42px; margin: 14px 0;position: relative; }
  .aft02 .top h4 { font-size: 22px; }
  .aft02 .bot { width: 110%; }
  .aft02 .top { margin-bottom: 20px; }
  .aft02 .botF { padding: 0 0px; }
  @keyframes hua2 { from { top: 0%; } to { top: 95%; } }
  .aft02 .bot .aft02Swiper { width: 100%; }
  .aft02 .bot { width: 100%;padding: 20px; }
  .aft02 .botF .fa-angle-left { left: -8px; }
  .aft02 .botF .fa-angle-right{ right: -8px; }
  .aft02 { padding: 80px 0 40px; }
  .aft02 .bg_fix { height: 483px; }
  .aft03 .icenter2 {flex-flow: wrap;}
  .aft03 .icenter2 .le {width: 100%;height: auto;margin-bottom: 20px;}
  .aft03 .icenter2 .ri {width: 100%;}
  .aft03 dl dd .icon { width: 60px; margin-right: 31px; }
  .aft03 { padding-bottom: 50px; }
  .aft04 {    padding: 50px 0 20px; background-attachment: unset;}
  .aft04 .hu_h3 { padding-left: 0px; }
  .aft04 dl { margin-top: 26px; flex-flow: wrap;}
  .aft04 dl dd {     padding-left: 22px; padding-bottom: 22px; width: fit-content; margin-bottom: 30px; }
  .aft04 dl dd .bg {     width: 72px; bottom: 0px; }
  .aft04 dl dd .le .imgbox {    height: 153px; width: 123px;}
  .aft04 dl dd .ri .name { font-size: 14px; width: 114px; height: 33px; }
  .aft04 dl dd .ri .number { margin-top: 38px; }
  .aft04 dl dd .ri .number .t a { font-size: 24px; }
  .aft04 dl dd .ri .number .t .icon { width: 32px; margin-right: 6px; }
  .aft04 dl dd .ri .number span { font-size: 14px; }
  .aft04 dl dd .ri { width: 60%; margin-left: 8%; }
  .aft01 .box:hover .min:nth-of-type(1) { left: 168px; }
  .aft01 .box:hover .min:nth-of-type(2) { right: 168px; }
}




/* 文化 */

.col-page-culture h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.col-page-culture .col-1 {
    padding: 12vh 0;
}

.col-page-culture .col-1 .flex {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.col-page-culture .col-1 .flex .img {
    width: 51%;
}

.col-page-culture .col-1 .flex .content {
    width: 43%;
}

.col-page-culture .col-1 .flex .content .s-content {
    font-size: 16px;
    color: #142340;
    line-height: 2;
}

.col-page-culture .col-1 .flex .content .s-content strong {
    font-size: var(--ft18);
    font-weight: bold;
    display: block;
    margin: 4vh 0 15px;
}

.col-page-culture .col-1 .flex .content .s-content p {
    margin-bottom: 15px;
}

.col-page-culture .col-1 .flex .content .s-content p:last-child {
    margin-bottom: 0;
}

.col-page-culture .col-1 .flex .content .s-content h3 {
    font-size: 40px;
    font-weight: bold;
    color: #476eec;
    line-height: 1.282;
}

.col-page-culture .col-2 {
    padding: 0 0 12vh;
}

.col-page-culture .col-2 .imgList {
    margin-bottom: 8vh;
    display: flex;
    align-items: flex-start;
}

.col-page-culture .col-2 .imgList img:nth-child(1) {
    width: 100%;
}

.col-page-culture .col-2 .imgList img:nth-child(2) {
    width: 62.4%;
}

.col-page-culture .col-2 h2 {
    margin-bottom: 10px;
}

.col-page-culture .col-2 .namemark {
    font-size: 2.625rem;
    font-weight: bold;
    color: #476eec;
    margin-bottom: 5.5vh;
}

.col-page-culture .col-2 ul.list {
    display: flex;
    flex-wrap: wrap;
}

.col-page-culture .col-2 ul.list li {
    width: calc(33% - 3px);
    margin-right: 4px;
    margin-bottom: 4px;
    background: #f5f6fa;
    transition: 0.25s;
    color: #142340;
    text-align: center;
    padding: 4vh 10px 4.2vh;
}

.col-page-culture .col-2 ul.list li:nth-child(4n) {
    margin-right: 0;
}

.col-page-culture .col-2 ul.list li .img {
    line-height: 43px;
}

.col-page-culture .col-2 ul.list li .img img {
    transition: 0.25s;
}

.col-page-culture .col-2 ul.list li .title {
    font-size: 24px;
    font-weight: bold;
    margin: 12px 0 6px;
}

.col-page-culture .col-2 ul.list li .content {
    font-size: 16px;
}

.col-page-culture .col-2 ul.list li:hover {
    background: #476eec;
    color: #fff;
}
.col-page-culture .col-2 ul.list li:hover .img img{filter: grayscale(100%) brightness(10000%);}
@media (max-width: 1460px) {
  .col-page-layout1 .col-1 .wrap .content ul li,.col-page-layout1 .col-2 .content ul li p:nth-child(1),.col-page-layout2 .col-1 .wrap .content ul li:nth-child(1),.col-page-layout3 .col-1 .wrap .content>ul>li:nth-child(1) h3,.col-page-layout4 .col-2 .flex .content ul li p:nth-child(2),.col-page-layout6 .col-1 .wrap .content>ul li p:nth-child(2),.col-page-esg .col-2 ul.list li .content strong,.col-page-history .flex .content .s-content h4,.col-page-history .flex .content .namemark,.col-page-history .history-container .swiper-slide .flex .content ul li:nth-child(2) h3,.col-page-culture .col-2 ul.list li .title,.col-page-party .col-3 ul li .content .name,.col-page-investor .tongkun .flex .info h3 span.name,.col-page-contact .col-1 .flex .content h4,.col-page-contact .col-1 .flex .content a,.col-page-contact .col-2 .content,.col-page-contact .col-2 ul.list li .title,.col-page-innovation .col-1 .content>ul:nth-of-type(2)>li:nth-child(1) ul li,.col-page-party .col-2 .child .flex .content .s-content {
      font-size: var(--ft18);
  }
}

@media (max-width: 1200px) {
  .col-index-btn, .col-page-layout1 .col-3 ul li, .col-page-layout2 .col-1 .wrap, .col-page-layout3 .col-3 .child>li, .col-page-layout3 .col-3, .col-page-layout3 .col-1 .wrap, .col-page-layout4 .col-2, .col-page-layout4 .col-1 .wrap, .col-page-layout4 .col-3, .col-page-layout5 .col-1 .wrap, .col-page-layout5 .col-2 ul.list li, .col-page-layout6 .col-1 .wrap, .col-page-layout6 .col-2 ul.list li, .col-page-layout7 .col-1 .wrap, .col-page-layout8 .col-1 .wrap, .col-page-layout8 .col-2 .slide, .col-page-esg .col-1, .col-page-esg .col-3, .col-page-download, .col-page-news .news-top, .col-page-paper, .col-page-about .col-1, .col-page-about .col-3, .col-page-culture .col-1, .col-page-honor .col-1, .col-page-honor .col-2, .col-page-party .col-2 .child, .col-page-party .col-3, .col-page-digital, .col-page-investor .tongkun, .col-page-investor .col-1, .col-page-investor .col-2, .col-page-investor .col-3, .col-page-message, .col-page-career .col-1, .col-page-career .col-2, .col-page-career .col-3, .col-page-contact .col-1, .col-page-contact .col-2, .col-page-innovation .col-1 {
      padding-top: 6vh !important;
      padding-bottom: 6vh !important;
  }

  .home_banner .swiper_bg .swiper-container .swiper-slide,.col-index-product h2,#col-banner .swiper-slide .ban_cont .content h1,.col-page-layout1 .col-1 .wrap .content ul li strong, .col-page-layout1 .col-1 .wrap .content ul li strong .odometer,.col-page-layout1 .col-2 .content ul li p:nth-child(1) .odometer,.col-page .col-1 .wrap .flex .title .namemark,.col-page-layout2 .col-1 .wrap .content ul li:nth-child(1) #my_odometer1,.col-page-layout3 .col-1 .wrap .content>ul>li:nth-child(1) h3 strong, .col-page-layout3 .col-1 .wrap .content>ul>li:nth-child(1) h3 strong .odometer,.col-page-layout4 .col-2 .flex .content ul li p:nth-child(2) .odometer,.col-page-layout7 .col-1 .wrap .content>ul li h3,.col-page-layout8 .col-1 .wrap .content>ul li h3,.col-page-esg .col-1 .content ul li:nth-child(1) h3,.col-page-about .col-2 .wrap .flex .content .s-content,.col-page-about .col-3 .wrap .flex .content .s-content h2,.col-page-about .col-5 .wrap .flex .content h2,.col-page-history .flex .content .s-content h2,.col-page-history .flex .seven p,.col-page-culture .col-1 .flex .content .s-content h3,.col-page-honor .col-1 .flex .content .s-content h3,.col-page-party .col-1 .wrap .content .s-content strong,.col-page-party .col-2 .wrap .flex h2,.col-page-digital .development-container .swiper-slide .item.cur .title,.col-page-investor .tongkun .flex .info .title .name,.col-page-investor .tongkun .flex .info h3 .price,.col-page-career .col-1 .flex .content .s-content strong,.col-page-contact .col-1 .flex .content strong,.col-page-innovation .col-1 .content>ul:nth-of-type(1)>li:nth-child(1) strong,.col-page-party .col-1 .child .flex .content strong {
      font-size: 32.5px;
  }

  .home_banner2 .home_banner2a .logo .logo3 .logo3a,.col-index-link .wrap .swiper-slide a .content .s-content,.col-index-product .namemark,.col-index-product .content .swiper-slide .inner .s-content,.col-index-more ul li h3,.col-index-news .flex .title .namemark,footer .flex .footer-info h2,ul.download_list li .content .title,.col-page-about .col-4 .wrap .flex ul.list li .title .name,.col-page-about .col-4 .wrap .flex ul.list li .s-content h3,.col-page-culture h2,.col-page-party .col-1 .wrap .content .s-content,.col-page-party .col-2 .wrap ul.list li .title,.col-page-party .col-2 .child .flex .content strong,.col-page-digital .development-container .swiper-slide .item .title,.col-page-investor .tongkun .flex .info h3 .rmb,.col-page-investor .tongkun .flex .info h3 .percent,.col-page-career .col-4 .content h3 {
      font-size: var(--ft18);
  }

  .col-page-culture .col-2 ul.list li .img {
      line-height: 30px;
  }

  .col-page-culture .col-2 ul.list li .img img {
      height: 28px;
  }
}
@media (max-width: 992px) {
  .home_banner .swiper_bg .swiper-container .swiper-slide,.col-index-product h2,#col-banner .swiper-slide .ban_cont .content h1,.col-page .col-1 .wrap .flex .title .namemark,.col-page-layout2 .col-1 .wrap .content ul li:nth-child(1) #my_odometer1,.col-page-layout7 .col-1 .wrap .content>ul li h3,.col-page-layout8 .col-1 .wrap .content>ul li h3,.col-page-esg .col-1 .content ul li:nth-child(1) h3,.col-page-news .news-top .flex .right ul li a .date .d,.col-page-news .lists ul.list li a .date .d,.col-page-about .col-2 .wrap .flex .content .s-content,.col-page-about .col-3 .wrap .flex .content .s-content h2,.col-page-about .col-5 .wrap .flex .content h2,.col-page-history .flex .seven p,.col-page-culture .col-1 .flex .content .s-content h3,.col-page-honor .col-1 .flex .content .s-content h3,.col-page-party .col-1 .wrap .content .s-content strong,.col-page-party .col-2 .wrap .flex h2,.col-page-digital .development-container .swiper-slide .item.cur .title,.col-page-investor .tongkun .flex .info .title .name,.col-page-investor .tongkun .flex .info h3 .price,.col-page-career .col-1 .flex .content .s-content strong,.col-page-contact .col-1 .flex .content strong,.col-page-innovation .col-1 .content>ul:nth-of-type(1)>li:nth-child(1) strong {
      font-size: 27px;
  }

  .col-index-about .flex #parallax-counter,.col-index-about .flex .inner,.col-page-layout1 .col-3 ul li .flex .img,.col-page-layout1 .col-3 ul li .flex .content,.col-page-layout1 .col-1 .wrap .content ul li,.col-page-layout2 .col-1 .wrap .content ul li:nth-child(1),.col-page-layout2 .col-1 .wrap .content ul li:nth-child(2),.col-page-layout3 .col-1 .wrap .content>ul>li:nth-child(1),.col-page-layout3 .col-1 .wrap .content>ul>li:nth-child(2),.col-page-layout3 .col-3 .child>li .flex .content,.col-page-layout3 .col-3 .child>li .flex .img,.col-page-layout4 .col-1 .wrap .content>ul>li:nth-child(1),.col-page-layout4 .col-1 .wrap .content>ul>li:nth-child(2),.col-page-layout4 .col-2 .flex .img,.col-page-layout4 .col-2 .flex .content,.col-page-layout5 .col-1 .wrap .content>ul:nth-of-type(1)>li:nth-child(1),.col-page-layout5 .col-1 .wrap .content>ul:nth-of-type(1)>li:nth-child(2),.col-page-layout5 .col-2 ul li .flex .img,.col-page-layout5 .col-2 ul li .flex .content,.col-page-layout6 .col-2 ul li .flex .content,.col-page-layout6 .col-2 ul li .flex .img,.col-page-layout7 .col-2 .wrap .img,.col-page-layout7 .col-2 .wrap .content,.col-page-layout8 .col-1 .wrap .content>ul li,.col-page-layout9 .col-1 .wrap .content>ul li,.col-page-layout9 .col-2 ul li .flex .img,.col-page-layout9 .col-2 ul li .flex .content,.col-page-layout9 .col-1 .wrap .content>ul li:last-child,.col-page-esg .col-1 .content ul li:nth-child(1),.col-page-esg .col-1 .content ul li:nth-child(2),.col-page-news .news-top .flex .left,.col-page-news .news-top .flex .right,.col-page-about .col-2 .wrap .flex .img,.col-page-about .col-2 .wrap .flex .content,.col-page-about .col-3 .wrap .flex .content,.col-page-about .col-3 .wrap .flex .img,.col-page-about .col-4 .wrap .flex .content,.col-page-about .col-4 .wrap .flex ul.list,.col-page-about .col-5 .wrap .flex .img,.col-page-about .col-5 .wrap .flex .content,.col-page-history .flex .content,.col-page-history .flex .seven,.col-page-history .history-container .swiper-slide .flex .name,.col-page-history .history-container .swiper-slide .flex .content,.col-page-history .history-container .swiper-slide .flex .content ul li:nth-child(1),.col-page-history .history-container .swiper-slide .flex .content ul li:nth-child(2),.col-page-culture .col-1 .flex .content,.col-page-honor .col-1 .flex .content,.col-page-honor .col-1 .flex .img,.col-page-party .col-1 .child .flex .content,.col-page-party .col-1 .child .flex .img,.col-page-party .col-2 .wrap ul.list li:not(:first-child)::before,.col-page-party .col-2 .child .flex .img,.col-page-party .col-2 .child .flex .content,.col-page-party .col-3 ul li .content,.col-page-party .col-3 ul li .img,.col-page-digital .development-list .swiper-slide .flex .content,.col-page-digital .development-list .swiper-slide .flex .img,.col-page-investor .tongkun .flex .info,.col-page-investor .tongkun .flex .content,.col-page-investor .col-2 .flex .content,.col-page-investor .col-2 .flex .img,.col-page-investor .col-3 .flex .content,.col-page-investor .col-3 .flex .message,.col-page-career .col-1 .flex .content,.col-page-career .col-1 .flex .img,.col-page-career .col-3 .flex .img,.col-page-career .col-3 .flex .content,.col-page-contact .col-1 .flex .content,.col-page-contact .col-1 .flex .img,.col-page-innovation .col-1 .content>ul:nth-of-type(1)>li:nth-child(1),.col-page-innovation .col-1 .content>ul:nth-of-type(1)>li:nth-child(2),.col-page-innovation .col-1 .content>ul:nth-of-type(2)>li:nth-child(1),.col-page-innovation .col-1 .content>ul:nth-of-type(2)>li:nth-child(2) {
      width: 100%;
      margin-bottom: 30px;
      max-width: none;
      display: block;
  }

  .col-page-culture .col-1 .flex .img {
      width: 50%;
      margin: 0 auto 30px;
  }

  .col-page .col-1 .wrap .flex .img {
      max-width: 50px;
  }

  .col-page-culture .col-2 .namemark {
    font-size: 18.75px;
  }
}

@media (max-width: 768px) {
  .col-page-culture .col-2 ul.list li {
      width: calc(50% - 2px);
      margin-right: 4px;
  }

  .col-page-culture .col-2 ul.list li:nth-child(4n) {
      width: calc(50% - 2px);
      margin-right: 4px;
  }

  .col-page-culture .col-2 ul.list li:nth-child(2n) {
      margin-right: 0;
  }
}



.factory-list ul{
  margin: -15px;
}

.factory-list ul li{
  padding: 15px;
}
.gallery-1-page .tab{
  position: sticky;
  top: 80px;
  z-index: 10;
  background: #fff;
}
.gallery-1-page .tab ul{
  margin: -20px;
}
.gallery-1-page .tab ul li{
  padding: 10px;
}
.gallery-1-page .tab ul li a{
  font-size: 16px;
  line-height: 1.8;
  padding: 10px;
  background: #f6f6f6;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.gallery-1-page .tab ul li a:hover,
.gallery-1-page .tab ul li a.active{
  background: var(--color);
  color: #fff;
}
.gallery-1-page .content .box {
  text-align: center;
  padding-bottom: 90px;
}
.gallery-1-page .content .box h2 {
  color: #182333;
  font-size: 35px;
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.3;
}
.gallery-1-page .content .box p {
  /*max-width: 690px;*/
  text-align: center;
  color: #565969;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
  margin-top: 20px;
  /*margin-bottom: 50px;*/
}
.gallery-1-page .content .box div {
  color: #565969;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
  margin-top: 20px;
}
.gallery-1-page .content .box ul {
  margin: 0 -15px;
  text-align: left;
}
.gallery-1-page .content .box ul li {
  padding: 1px;
}
.gallery-1-page .content .box ul li .imgbox {
  overflow: hidden;
  position: relative;
  padding: 5px;
  border-radius: 5px;
}
.gallery-1-page .content .box ul li .imgbox .text {
  text-align: center;
  margin-top: 5px;
}
.gallery-1-page .content .box ul li .imgbox .text h5 {
  /*text-transform: uppercase;*/
  display: block;
  color: #ffffff;
  font-size: var(--ft18);
  padding: 15px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-radius: 0 15px 0 0;
  background-color: var(--color);
}
.gallery-1-page .content .box ul li .imgbox .text .con {
  margin-top: 20px;
  min-height: 90px;
  overflow: auto;
  padding-right: 10px;
  font-size: 16px;
  line-height: 1.7;
}
.gallery-1-page .content .box ul li .imgbox .text .con::-webkit-scrollbar-thumb {
  background: var(--color);
}
.gallery-1-page .content .box ul li .imgbox .textbox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gallery-1-page .content .box ul li .imgbox .textbox i {
  margin-bottom: 20px;
  font-size: 45px;
  color: var(--color);
}
.gallery-1-page .content .box ul li .imgbox .textbox i:hover {
  cursor: pointer;
}
.gallery-1-page .content .box ul li .imgbox .textbox h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--color);
  padding: 5px 20px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  min-width: 100px;
  text-align: center;
}
.gallery-1-page .content .box ul li .imgbox .textbox h4:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #000000;
}
.gallery-1-page .content .box ul li .imgbox:hover .text h5 {
  background: var(--color);
  color: #fff;
}
.gallery-1-page .content .box ul li:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gallery-1-page .content .box ul li:hover .imgbox .textbox {
  top: 0;
}
.gallery-1-page .content .box:nth-child(even) {
  background: #f8f8f8;
  padding: 90px 0;
}
@media screen and (max-width: 1440px) {
  .gallery-1-page .content .box ul li {
    width: 25%;
  }
}
@media screen and (max-width: 1100px) {
  .gallery-1-page .content .box ul li {
    width: 33.3333%;
  }
}
@media screen and (max-width: 992px) {
  .gallery-1-page .content .box ul li {
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .gallery-1-page .content .box p {
    font-size: 14px;
  }
  .gallery-1-page .content .box ul li {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
    .gallery-1-page .tab{
    display: none;
  }
}
/* seo-base-css-start */
.seo_title{
	font-size: calc(0.8345vw + 14px);
	font-weight: bold;
	text-transform: uppercase;
}

#seo_about ._box{
	margin: -15px;
}

#seo_about ._left,
#seo_about ._right{
	padding: 15px;
	vertical-align: middle;
}

#honor_list ul{
	margin: -15px;
}

#honor_list ul li{
	padding: 15px;
}

#news_list ul{
	margin: -15px;
}

#news_list ul li{
	padding: 15px;
}

#news_list ._time span{
	display: inline-block;
	padding: 5px;
}

#news_list ._time span._cate{
	color: #FFFFFF;
	background-color: #000000;
}

#news_list ._time span._date{
	background-color: #CCCCCC;
}

#news_list ._table{
	padding: 20px;
	border: 2px solid #CCCCCC;
}

#seo_public_from{padding:80px 0;background:#f9f9f9;}#seo_public_from h4{font-size:24px;font-weight:bold;color:#333;}#seo_public_from .seo_public_from{margin-top:30px;}#seo_public_from .seo_public_from ul{margin:-10px;}#seo_public_from .seo_public_from ul li{padding:10px;}#seo_public_from .seo_public_from ul li.wid-100{width:100%;}#seo_public_from .seo_public_from ul li input,#seo_public_from .seo_public_from ul li textarea{width:100%;line-height:24px;padding:10px;border:1px solid #eee;font-size:14px;color:black;background:white;-webkit-transition:.5s;-moz-transition:.5s;-ms-transition:.5s;-o-transition:.5s;transition:.5s;}#seo_public_from .seo_public_from ul li input:focus,#seo_public_from .seo_public_from ul li textarea:focus{border-color:black;}#seo_public_from .seo_public_from ul li textarea{height:120px;}#seo_public_from .seo_public_from ul li input[type="submit"]{width:auto;display:inline-block;padding:10px 30px;background:#222;color:white;}#seo_public_from .seo_public_from ul li input[type="submit"]:hover{opacity:.7;}


/* mobile-product-nav */
@media screen and (max-width: 1000px) {
	#seo_about ._left,
	#seo_about ._right{
		width: 100%!important;
	}
	
    #cp-Nav {
    	display: block;
    }
    #cp-Nav .nav {
    	padding: 0 15px;
    }
    #cp-Nav .nav h3.title {
    	font-size: var(--ft18);
    	font-weight: bold;
    	padding: 8px 10px;
    	background: var(--color);
    	border-radius: 5px;
    }
    #cp-Nav .nav i.mask {
    	width: 100%;
    	height: 100%;
    	position: fixed;
    	top: 0;
    	left: 0;
    	z-index: 230;
    	background: rgba(0, 0, 0, 0.2);
    }
    #cp-Nav .nav>ul {
    	display: none;
    }
    #cp-Nav .nav ul {
    	position: fixed;
    	top: 10%;
    	max-height: 80%;
    	left: 5%;
    	width: 90%;
    	padding: 20px;
    	border-radius: 5px;
    	background: white;
    	z-index: 300;
    	font-size: 16px;
    	overflow: auto;
    }
    #cp-Nav .nav ul ul {
    	padding: 0 10px;
    	font-size: 14px;
    	position: static;
    	max-height: none;
    	width: 100%;
    	margin: 10px 0;
    }
    #cp-Nav .nav ul li a {
    	display: block;
    	padding: 5px 0;
    	line-height: 28px;
    }
}
/* seo-base-css-end */
._time.grid-box {
    font-size: 0;
    letter-spacing: 0px;
    font-size: 12px;
}
.faq-page .box {
  padding: 10.472% 0 7.069%;
  position: relative;
  z-index: 1;
}
.faq-page .box span.bj {
  color: var(--color);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 300;
  text-transform: uppercase;
}
.faq-page .box .title {
  width: 32%;
  margin-top: 3px;
}
.faq-page .box .content {
  margin-top: 46px;
}
.faq-page .box .content ul {
  margin-bottom: -24px;
}
.faq-page .box .content ul li {
  padding-bottom: 24px;
}
.faq-page .box .content ul li .ig {
  background-color: #f8f8f9;
  border-radius: 50px;
  padding: 24px 41px 28px 50px;
  position: relative;
}
.faq-page .box .content ul li .ig .tit {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  padding-right: 50px;
}
.faq-page .box .content ul li .ig .tit i {
  width: 41px;
  height: 41px;
  border-radius: 100%;
  background: #000;
  cursor: pointer;
  position: absolute;
  display: block;
  right: 41px;
  top: 22px;
}
.faq-page .box .content ul li .ig .tit i::after,
.faq-page .box .content ul li .ig .tit i::before {
  content: '';
  width: 16px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.faq-page .box .content ul li .ig .tit i:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-page .box .content ul li .ig .con {
  font-size: 16px;
  line-height: 1.7;
  margin: 17px 0 32px;
  max-width: 1103px;
  display: none;
}
.faq-page .box .content ul li .ig.active .tit i {
  background: var(--color);
}
.faq-page .box .content ul li .ig.active .tit i::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}
.faq-page .box::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 457px;
  line-height: 1;
  font-weight:bold;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 241, 243, 0.5)), to(rgba(240, 241, 243, 0)));
  background-image: -webkit-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: -moz-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: linear-gradient(to bottom, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1680px) {
  .faq-page .box .title {
    width: 36%;
  }
}
@media screen and (max-width: 1440px) {
  .faq-page .box .title {
    width: 41%;
  }
}
@media screen and (max-width: 1280px) {
  .faq-page .box .title {
    width: 46%;
  }
  .faq-page .box .content ul li .ig .tit {
    font-size: 25px;
  }
}
@media screen and (max-width: 1100px) {
  .faq-page .box .title {
    width: 51%;
  }
  .faq-page .box .content ul li .ig .tit {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .font-60 {
    font-size: 50px;
  }
  .faq-page .box::after {
    display: none;
  }
  .faq-page .box .title {
    width: 61%;
  }
  .faq-page .box .content ul li .ig {
    padding: 24px 20px 28px 30px;
  }
  .faq-page .box .content ul li .ig .tit i {
    right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .font-60 {
    font-size: 40px;
  }
  .faq-page .box .title {
    width: 70%;
  }
  .faq-page .box .content ul li .ig {
    padding: 20px 10px 20px 20px;
  }
  .faq-page .box .content ul li .ig .tit {
    font-size: 20px;
  }
  .faq-page .box .content ul li .ig .tit i {
    right: 10px;
    top: 15px;
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 500px) {
  .faq-page .box span.bj {
    font-size: 16px;
  }
  .font-60 {
    font-size: calc(0.8345vw + 14px);
    line-height: 1.3;
  }
  .faq-page .box .title {
    width: 85%;
  }
  .faq-page .box .content {
    margin-top: 20px;
  }
  .faq-page .box .content ul li .ig .tit {
    font-size: var(--ft18);
    padding-right: 40px;
  }
  .faq-page .box .content ul li .ig .tit i {
    width: 30px;
    height: 30px;
  }
  .faq-page .box .content ul li .ig .con {
    font-size: 14px;
    line-height: 2;
    margin: 10px 0;
  }
}
.about-1-page .about-2 {
  margin-top: 60px;
  padding: 5.521% 0;
  background: #f6f6f6;
}
.about-1-page .about-22{
  margin-top: 0;
  background: #fff;
  padding: 0;
}
.about-1-page .about-2 .content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  margin: 113px 0 9.167%;
}
.about-1-page .about-2 .content ul li {
  padding: 0 36px 88px;
  position: relative;
  cursor: pointer;
}
.about-1-page .about-2 .content ul li .tit {
  color: var(--color);
  font-weight: bold;
}
.about-1-page .about-2 .content ul li .con {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 10px;
  height: 265px;
  overflow-y: auto;
  font-family: barlow;
}
.about-1-page .about-2 .content ul li::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 78px;
  background: #bfbfbf;
  bottom: 0;
  left: 36px;
}
.about-1-page .about-2 .content ul li::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  left: 25px;
  bottom: 0;
  background: #000;
  z-index: 8;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-1-page .about-2 .content ul li:hover::after {
  background: var(--color);
}
.about-1-page .about-2 .content::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 12px;
  background: #afafaf;
}
.about-1-page .about-2 .bottom {
  /*padding: 9.167% 0 0 0;*/
  overflow: hidden;
    /*width: calc(100% - 6.25vw);*/
    border-radius: 0 300px 300px 0;
    position: relative;
    z-index: 1;
}
.about-1-page .about-2 .bottom ul {
  margin-right: -16px;
}
.about-1-page .about-2 .bottom ul li {
  padding-right: 16px;
}
.about-1-page .about-2 .bottom ul li a img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
@media screen and (max-width: 1100px) {
  .about-1-page .about-2 .content {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
   .about-1-page .about-2 .content {
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
    .about-1-page .about-2 .content ul li {
    padding: 0 0 88px 0;
  }
  .about-1-page .about-2 .content ul li::after {
    left: 0;
    width: 20px;
    height: 20px;
  }
  .about-1-page .about-2 .content ul li::before {
    left: 11px;
  }
  .about-1-page .about-2 .bottom {
    padding-right: 0;
  }
}
.product-page .box .left {
  width: 17%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  background: #fff;
}
.product-page .box .left .title {
  font-size: 24px;
  line-height: 180px;
  height: 180px;
  padding-left: 90px;
  overflow: hidden;
  color: #000000;
  border-bottom: 1px solid #e1e5e5;
  font-weight: 600;
}
.product-page .box .left .title span {
  display: block;
  background: url(../images/pro-icon.png) left center no-repeat;
  background-size: 28px;
  padding-left: 40px;
}
.product-page .box .left .list {
  padding-right: 40px;
}
.product-page .box .left .list a {
  font-size: 16px;
  line-height: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 90px;
  padding-right: 0;
  color: #4e5769;
}
.product-page .box .left .list a:hover,
.product-page .box .left .list a.active {
  color: var(--color);
}
.product-page .box .left .list .icon-em {
  cursor: pointer;
  position: absolute;
  top: 33.5px;
  right: 0;
  width: 13px;
  height: 13px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  z-index: 3;
}
.product-page .box .left .list .icon-em::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #7b7b7b;
  position: absolute;
  top: 50%;
  left: 0;
}
.product-page .box .left .list .icon-em::before {
  content: '';
  width: 2px;
  height: 100%;
  background: #7b7b7b;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -1px;
}
.product-page .box .left .list .lia {
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  -webkit-transition: all .5s;
  border-top: 1px solid #e1e5e5;
  -moz-transition: all .5s;
  transition: all .5s;
  z-index: 0;
  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;
}
.product-page .box .left .list .lia span {
  width: 90%;
  display: block;
  position: relative;
  z-index: 1;
  line-height: 2;
}
.product-page .box .left .list ul li.active .icon-em::before {
  width: 0;
}
.product-page .box .left .list dl {
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  display: none;
}
.product-page .box .left .list dl dd a {
  font-size: 14px;
  line-height: 1.4;
  color: #4e5769;
  display: block;
}
.product-page .box .left .list dl::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background-color: #E5E7EB;
}
.product-page .box .right {
  width: 83%;
  padding-left: 62px;
}
@media screen and (max-width: 1440px) {
    .product-page .box .left .title,
  .product-page .box .left .list a {
    padding-left: 40px;
  }
  .product-page .box .right {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1230px) {
    .product-page .box .left .title,
  .product-page .box .left .list a {
    padding-left: 15px;
  }
  .product-page .box .left .title {
    font-size: 20px;
  }
  .product-page .box .left .list {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
    .product-page .box .left {
    display: none;
  }
  .product-page .box .right {
    width: 100%;
    padding-left: 0;
  }
}
.pr{
  position: relative;
}
@media screen and (max-width: 700px) {
  .gallery-1-page .content .box div{
    margin-top: 7px;
  }
  .about-page .about-1-2 .left{
    width: 100%;
  }
  .about-page .about-1-2 .right{
    width: 100%;
    margin-top: 15px;
  }
}
@media screen and (max-width: 1250px) {
  .contact-page .contact-1{
    margin-top: 0;
  }
  .contact-page h2.tit{
    display: none;
  }
  .contact-page{
    background: none;
    padding-top: 0;
  }
  .ft-c{
    margin-bottom: 10px;
  }
  .patent-top .list1-right{
    flex: none;
    width: 100%;
  }
}
.about-page .init-40 {
  -o-background-size: cover;
  background-size: cover;
}
.about-page .init-40 .container .tipsTitle {
  text-align: center;
  color: #000;
  font-weight:bold;
}
.about-page .init-40 .container .content {
  position: relative;
  width: -webkit-calc(-80%);
  width: -moz-calc(-80%);
  width: calc(100% - 180px);
  margin: 10px auto 0;
}
.about-page .init-40 .container .content .btn {
  cursor: pointer;
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  right: 0;
  -webkit-box-shadow: 0 0 20px rgba(87, 176, 189, 0.5);
  box-shadow: 0 0 20px rgba(87, 176, 189, 0.5);
  border-radius: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
}
.about-page .init-40 .container .content .btn.slick-disabled{
  opacity: 0;
  pointer-events: none;
}
.about-page .init-40 .container .content .btn i {
  width: 20px;
  height: 20px;
}
.about-page .init-40 .container .content .btn:hover {
  background-color: #57b0bd;
}
.about-page .init-40 .container .content .btn:hover i {
  -webkit-filter: grayscale(1) brightness(5);
  filter: grayscale(1) brightness(5);
}
.about-page .init-40 .container .content .prev {
  left: 0;
}
.about-page .init-40 .container .content ul li {
  padding: 0 20px;
}
.about-page .init-40 .container .content ul li .box {
  padding: 0 100px;
  text-align: center;
  position: relative;
}
.about-page .init-40 .container .content ul li .box .num {
  font-size: calc(15.62vw + 73px);
  font-weight: bold;
  text-align: center;
  color: rgba(229, 229, 229, 0.8);
  line-height: 1;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about-page .init-40 .container .content ul li .box .desC {
  height: 500px;
  padding-right: 10px;
  overflow-y: hidden;
}
.about-page .init-40 .container .content ul li .box .desC .des {
  position: relative;
  z-index: 2;
  font-size: 20px;
}
.about-page .init-40 .container .content2 {
  width: -webkit-calc(-80%);
  width: -moz-calc(-80%);
  width: calc(100% - 180px);
  margin: 20px auto 0;
  position: relative;
}
.about-page .init-40 .container .content2 .line {
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 5px;
  left: 0;
  background-color: #a6a6a6;
}
.about-page .init-40 .container .content2 ul .slick-track {
  margin-left: 0;
}
.about-page .init-40 .container .content2 ul .slick-current li .box .num {
  color: #57b0bd;
}
.about-page .init-40 .container .content2 ul .slick-current li .box .cir {
  background-color: #57b0bd;
}
.about-page .init-40 .container .content2 ul li .box {
  cursor: pointer;
  text-align: center;
}
.about-page .init-40 .container .content2 ul li .box .num {
  font-size: 24px;
  line-height: 1;
}
.about-page .init-40 .container .content2 ul li .box .cir {
  border-radius: 50%;
  background-color: #888888;
  width: 10px;
  height: 10px;
  margin: 16px auto 0;
}
@media (max-width: 1800px) {

  .about-page .init-40 .container .content ul li .box .num {
    font-size:  calc(14.62vw + 53px);
  }
}
@media (max-width: 1500px) {
  .about-page .init-40 .container .content ul li .box .num {
    font-size:  calc(13.62vw + 43px);
  }
}
@media (max-width: 1250px) {
    .about-page .init-40 .container .content ul li .box .num {
    font-size:  calc(12.62vw + 33px);
  }
}

@media (max-width: 1000px) {
    .about-page .init-40 .container .content ul li .box .num {
    font-size:  calc(11.62vw + 23px);
  }
  .about-page .init-40 .container .content {
    width: 100%;
  }
}
@media (max-width: 700px) {

  .about-page .init-40 .container .content ul li .box .num {
    font-size:  calc(10.62vw + 13px);
  }
}
@media (max-width: 500px) {
    .about-page .init-40 .container .content {
    padding-top: 80px;
  }
  .about-page .init-40 .container .content .btn {
    width: 40px;
    height: 40px;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    left: 50%;
  }
  .about-page .init-40 .container .content .prev {
    left: -webkit-calc(0%);
    left: -moz-calc(0%);
    left: calc(50% - 50px);
  }
  .about-page .init-40 .container .content .next {
    left: -webkit-calc(60%);
    left: -moz-calc(60%);
    left: calc(50% + 10px);
  }
  .about-page .init-40 .container .content ul li {
    padding: 0 10px;
  }
  .about-page .init-40 .container .content ul li .box {
    padding: 0;
  }
  .about-page .init-40 .container .content ul li .box .num {
    position: relative;
    top: 0;
    left: 0;
    text-align: left;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .about-page .init-40 .container .content ul li .box .desC {
    height: auto;
  }
  .about-page .init-40 .container .content ul li .box .num {
    font-size: 60px;
  }
  .about-page .init-40 .container .content ul li .box .desC {
    text-align: left;
    margin-top: 20px;
  }
  .about-page .init-40 .container .content ul li .box .desC .des {
    font-size: 16px;
    line-height: 2;
    width: 100%;
  }
  .about-page .init-40 .container .content2 {
    width: 100%;
  }
}
.mana-page .mana-3 ul .proce {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.mana-page .mana-3 ul .proce .text {
  padding: 0 calc(4.1667vw + 20px) 0 0;
}
.mana-page .mana-3 ul .proce .img {
  padding: 0 0 79px 22px;
  background: url(../images/about-dots1.png) no-repeat 20px 2px;
}
.mana-page .mana-3 ul li dl{
  width: 100%;
  /*margin: -20px;*/
}
.mana-page .mana-3 ul li dl dd{
  padding: 1.0455vw;
  border: 1px solid #ccc;
  margin-bottom: calc(1.8345vw + 14px);
}
.mana-page .mana-3 ul li dl dd span.num{
  font-size: calc(0.8345vw + 14px);
  /*font-family: 'BCB';*/
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.mana-page .mana-3 ul li dl dd .tit{
  font-size: calc(0.315vw + 14px);
  line-height: 1.5;
  /*font-family: 'Barlow';*/
  font-weight: 500;
  margin-top: calc(0.315vw + 14px);
}
.mana-page .mana-3 ul li dl dd .desc{
  font-size: calc(0.1055vw + 14px);
  line-height: 1.8;
  margin-top: 10px;
  color: #666;
}
.mana-page .mana-3 ul li dl dd .icon{
  font-size:  calc(0.8345vw + 14px);
  right: -24px;
  top: 50%;
  z-index: 55;
  transform: translateY(-50%);
}
.mana-page .mana-3 ul li dl dd:nth-child(4) .icon{
    top: 101%;
    right: 50%;
    transform: translateX(-50%) rotate(90deg);
}
.mana-page .mana-3 ul li dl dd:nth-child(5) .icon,
.mana-page .mana-3 ul li dl dd:nth-child(6) .icon,
.mana-page .mana-3 ul li dl dd:nth-child(7) .icon{
    transform:rotate(180deg);
}
.mana-page .mana-3 ul li dl dd:nth-child(8) .icon{
    display: none;
}
.pr {
    position: relative;
}

.pa {
    position: absolute;
}

.block {
    display: block;
}
@media screen and (max-width: 1440px) {

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

}
.proce .flex{
  justify-content: space-between;
}
  .mana-3 .flex-4>*{
    width: 22.9%;
  }
@media screen and (max-width: 1250px) {
  .mana-3 .flex-4>*{
    width: 49%;
  }
  .mana-page .mana-3 ul li dl dd .icon{
    display: none;
  }
}
@media screen and (max-width: 500px) {
    .mana-3 .flex-4>*{
    width: 100%;
  }
}
@media screen and (max-width: 1450px) {
  #index-body .init-4 .swiper4 .sw4-r {
  right: var(--ft30);
}
}
.a3m{
  display: flex;
  justify-content: space-between;
  padding: var(--px100) 0;
}
.a3m img{
  margin-bottom: var(--ft40);
}
.a3m .a3r{
  padding-left: var(--ft40);
}
.a3m ul li{
  font-size: var(--ft18);
  margin-bottom: var(--ft20);
  max-width: 588px;
}
.a3m .a3r ul li{
  max-width: 397px;
  margin: 0 auto var(--ft20);
}
@media screen and (max-width: 700px) {
  .a3m{
    flex-wrap: wrap;
  }
  .a3m .a3r{
  padding-left: 0;
}
}
.inner-banner-sp{
  background: #e7e7e7 !important;
}
.inner-banner-sp h2.tit{
  color: #000 !important;
}
.inner-banner-pr{
  background-attachment:unset;
margin-top: 77px;
background-position: center;
/*background-repeat: unset;*/
}
@media screen and (max-width: 1250px) {
  .inner-banner-pr{
    margin-top: 0;

  }
}
.ptitle{
  font-size: var(--ft20);
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 1250px) {
  .product-page11{
    padding-top: 0;
  }
}
.b5ec .pr>a{
  background: #918f9d !important;
}
.prodet-page .prodet-box .prodet-1 .container .right .cpcs{
  margin-top: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .img-scroll>i{
    display: none;
  }

}
.prodet-page{
  position: relative;
}
.pro_back{
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  top: 97px;
  right: 30px;
  padding: 15px;
  z-index: 2;
}
.bg_lan{
  background: #918f9d !important;
}
@media screen and (max-width: 1250px) {
  #banner i{
    display: none;
  }
  #index-body .init-6 .container form .add3{
    max-width: 100%;
    min-width: 100%;
  }
  
  .prodet-page{
  overflow: hidden;
  background: #f7f7f8;
  padding-top: var(--ft30);
}
.inner-page .mbx-box{
  display: none;
}
}
.bort{
  border-right:none !important; 
}
.bort:nth-last-of-type(1){
      border-right: 1px solid rgba(0, 0, 0, 0.6) !important;
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .contact-box .contact-content .left ul li{
    margin-bottom: 10px;
  }
  .contact-page .contact-1 .contact-box .contact-content .left ul li h5{
    margin-bottom: 5px;
  }
  .contact-page .contact-1 .contact-box .contact-content .left ul li{
    width: 100%;
  }
  #index-body .init-1 .container .i1-b .i1-f {
    
    padding: var(--ft24) 15px;
    display: flex;
    justify-content: space-between;
}
}
#banner{
  overflow: hidden;
}
@media screen and (max-width: 1250px) {
  .contact-page .contact-1 .contact-box{
    padding: 20px 0;
  }
}
@media screen and (max-width: 500px) {
  #banner .swiper-slide>img{
    height: 250px;
    object-fit: cover;
  }
}
.page-header02{
  position: fixed;
  width: 100%;
}
@media (max-width: 1250px) {
    #menuFull~#banner, #menuFull~#indexMobileBanner, #menuFull~#innerMobileBanner, #menuFull~.inner-banner, .mobile-menu-wrap01~#banner, .mobile-menu-wrap01~#indexMobileBanner, .mobile-menu-wrap01~#innerMobileBanner, .mobile-menu-wrap01~.inner-banner {
        margin-top: 60px !important;
    }
}