@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.eot") format("eot"),
    url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff"),
    url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.eot") format("eot"),
    url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff"),
    url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.eot") format("eot"),
    url("../fonts/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/Montserrat-Medium.woff") format("woff"),
    url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.eot") format("eot"),
    url("../fonts/Montserrat-Light.woff2") format("woff2"),
    url("../fonts/Montserrat-Light.woff") format("woff"),
    url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Montserrat";
  max-width: 1920px;
  --color: #0f509d;
  font-weight: normal;
  margin: 0 auto;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  /*overflow: hidden;*/
}
.container {
  padding: 0 15px;
  max-width: 1560px;
  margin: auto;
  width: 100%;
}
.lh-1{
  line-height: 1
}
#header {
  z-index: 999;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .ui.container {
  max-width: 1804px;
}
#header .nav {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255 255 255 / 10%);
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#header .nav .ui.menu .logo {
  vertical-align: middle;
  margin-left: 39px;
}
#header .nav .ui.menu .logo img {
  display: inline-block;
  vertical-align: middle;
  transition: .5s;
  width: 180px;
  /*filter: brightness(0) invert(1);*/
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  margin: 0 0 0 auto;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 19px;
  margin-right: 63px;
  font-weight: bold;
  color: #fff;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li > a:hover,
#header .nav .ui.menu .menu-box ul.menu > li > a.active {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  z-index: 1;
  font-size: 15px;
  font-weight: 400;
  background: #fff;
  top: 100%;
  left: 0;
  width: auto;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul.sub-menu{
  left: 100%;
  top: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 10px;
  line-height: 40px;
  color: black;
  -webkit-transition: .1s;
  -moz-transition: .1s;
  transition: .1s;
  text-transform: capitalize;
  position: relative;
  white-space: nowrap;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
  background: none;
  height: auto;
  padding: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover>ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li>ul.sub-menu li:hover ul.sub-menu{
    opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  cursor: pointer;
  margin-left: 55px;
}
#header .nav .ui.menu .h-search img {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .h-language {
  display: inline-block;
  position: relative;
  margin-left: 37px;
}
#header .nav .ui.menu .h-language span img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
#header .nav .ui.menu .h-language ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  top: 125%;
  right: 0;
  width: 130px;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .h-language ul.sub-menu li {
  display: block;
  padding: 0 15px;
  line-height: 40px;
  text-transform: capitalize;
}
#header .nav .ui.menu .h-language ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .h-language ul.sub-menu li a img {
  vertical-align: middle;
  width: auto;
  height: 20px;
  margin-right: 6px;
}
#header .nav .ui.menu .h-language ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .h-language:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

#header.active {
  position: fixed;
  top: 0;
  left: 0;
}
#header.active .nav .ui.menu .logo img{
  filter: none;
}
#header.active .nav .ui.menu .logo img{
  width: 120px
}
#header.active .nav{
  padding: 20px 0;
}
#header.active::after {
  width: 100%;
}
#header.active .nav .ui.menu .menu-box ul.menu > li{
  color: #000000
}
#header.active .nav .ui.menu .h-search img{
  filter: invert(100)
}
.wrapper_con {
  width: 27px;
  height: 54px;
  position: absolute;
  top: -2px;
  overflow: hidden;
  display: none;
}
.right {
  right: -2px;
}
.left {
  left: -2px;
}
.circleProgress {
  width: 54px;
  height: 54px;
  border: 2px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.rightcircle {
  border-bottom: 2px solid var(--color);
  border-left: 2px solid var(--color);
  right: 0;
}
.leftcircle {
  border-top: 2px solid var(--color);
  border-right: 2px solid var(--color);
  left: 0;
}
@-webkit-keyframes circleProgressLoad_right {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes circleProgressLoad_right {
  0% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes circleProgressLoad_right {
  0% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-webkit-keyframes circleProgressLoad_left {
  0%,
  50% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes circleProgressLoad_left {
  0%,
  50% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes circleProgressLoad_left {
  0%,
  50% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
#banner {
  position: relative;
  background: #f0f0f0;
  
}
#banner .ui.container {
  max-width: 1506px;
}

#banner ul li {
  position: relative;
    border-radius: 0px 0px 0px 300px;
    overflow: hidden;
    z-index: 2
}
#banner ul li::after{
  content: '';
  display: block;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#banner ul li video{
  width: 100%;
  display: block
}
#banner ul li .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-65%);
  -moz-transform: translateY(-65%);
  -ms-transform: translateY(-65%);
  transform: translateY(-65%);
  z-index: 5
}
#banner ul li .text .font-80{
  font-weight: 500
}
#banner ul li .text .box {
  width: 60%;
  color: #ffffff;
}
#banner ul li .text .box .more i{
  margin-left: 50px
}
#banner ul li .text .box .title {
  line-height: 1;
}
#banner ul li .sb {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  cursor: pointer;
  z-index: 12
}

#banner .swiper-pagination {
  font-size: 0;
  text-align: left;
  bottom: 21%;
  left: 11.7%;
  width: 40%
}
#banner .swiper-pagination > span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#banner .swiper-pagination-bullet {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0);
  opacity: 1;
  color: transparent;
  position: relative;
  margin-right: 14px;
  cursor: pointer;
  background: transparent;
}
#banner .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}
#banner .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
#banner .swiper-pagination-bullet-active {
  opacity: 1;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border: 2px solid #f0f0f0;
  background-color: transparent;
  color: #ffffff;
}
#banner .swiper-pagination-bullet-active::after {
  background: var(--color);
}
#banner .swiper-pagination-bullet-active .rightcircle {
  -webkit-animation: circleProgressLoad_right 6s linear infinite;
  -moz-animation: circleProgressLoad_right 6s linear infinite;
  animation: circleProgressLoad_right 6s linear infinite;
}
#banner .swiper-pagination-bullet-active .leftcircle {
  -webkit-animation: circleProgressLoad_left 6s linear infinite;
  -moz-animation: circleProgressLoad_left 6s linear infinite;
  animation: circleProgressLoad_left 6s linear infinite;
}
#banner .swiper-pagination-bullet-active .wrapper_con {
  display: block;
}
.more {
  display: inline-block;
  width: 229px;
  height: 62px;
  line-height: 62px;
  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;
  font-weight: bold;
  background-color: var(--color);
  color: #fff;
  border-radius: 31px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
  padding-left: 46px;
  cursor: pointer;
}
.more i {
  display: inline-block;
  margin-left: 39px;
  margin-top: -3px;
  color: #000;
}
.more::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 18px;
  right: 28px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more:hover {
  color: #000;
}
.more:hover::after {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 31px;
}


#footer {
  position: relative;
  z-index: 1;
}

#footer .box {
  background-color: #1b1b1b;
  border-radius: 0px 200px 0px 0px;
  padding: 130px 0 30px;
  color: #fff;
}
#footer .box .f-top p {
  line-height: 1.4;
  
  color: rgba(255, 255, 255, 0.41);
  margin-top: 26px;
}
#footer .box .f-top .Auxil-form {
  margin-top: 33px;
}
#footer .box .f-top .Auxil-form ul {
  margin-right: -14px;
}
#footer .box .f-top .Auxil-form ul li {
  padding-right: 14px;
  width: 15.24%;
  vertical-align: middle;
}
#footer .box .f-top .Auxil-form ul li input {
  width: 100%;
  border-radius: 10px;
  padding: 0 16px;
  border: none;
  color: rgba(255, 255, 255, 0.48);
  background-color: rgba(166, 168, 172, 0.15);
  height: 77px;
  border-radius: 15px;
  font-size: 19px;
}
#footer .box .f-top .Auxil-form ul li input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.48);
}
#footer .box .f-top .Auxil-form ul li input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.48);
}
#footer .box .f-top .Auxil-form ul li input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.48);
}
#footer .box .f-top .Auxil-form ul li input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.48);
}
#footer .box .f-top .Auxil-form ul li input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}
#footer .box .f-top .Auxil-form ul li button {
  width: 100%;
  height: 73px;
  border-radius: 15px;
  font-size: 19px;
  border: none;
  color: #e3e2de;
  background-color: var(--color);
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  
}
#footer .box .f-top .Auxil-form ul li button:hover {
  background: #fff;
  color: #000;
}
#footer .box .f-top .Auxil-form ul li:nth-child(4) {
  width: 39.041%;
}
#footer .box .f-top .Auxil-form ul li:last-child {
  width: 15.239%;
}
#footer .box .f-box {
  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: 92px 0 64px;
}
#footer .box .f-box .tit {
  font-size: 19px;
  
  text-transform: uppercase;
}
#footer .box .f-box .line {
  margin: 24px 0 26px;
  width: 228px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.66);
  position: relative;
}
#footer .box .f-box .line::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 5px;
  top: -2px;
  background-color: var(--color);
}
#footer .box .f-box ul li {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.55);
  -webkit-transition: .1s;
  -moz-transition: .1s;
  transition: .1s;
  
}
#footer .box .f-box ul li ul {
  display: none;
}
#footer .box .f-box ul li:last-child {
  margin-bottom: 0;
}
#footer .box .f-box ul li:hover {
  color: #fff;
}
#footer .box .f-box .ewm{
  max-width: 190px;
}
#footer .box .f-box #ewm {
  width: 100%;
  border: 5px solid #fff;
}
#footer .box .f-box .social-links {
  margin-top: 62px;
}
#footer .box .f-box .social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .box .f-box .social-links a:last-child {
  margin-right: 0;
}
#footer .box .f-box .social-links a:hover {
  border-color: var(--color);
  background: var(--color);
}
#footer .box .f-box .contact {
  max-width: 459px;
}
#footer .box .f-box .contact .line {
  margin-bottom: 29px;
}
#footer .box .f-box .contact span {
  text-transform: uppercase;
  
  line-height: 1.6;
}
#footer .box .f-box .contact .cms{
  font-size: 18px
}
#footer .box .f-box .contact ul li {
  font-size: 18px;
  line-height: 1.3;
  
  color: #fff;
  margin-bottom: 0;
  margin-top: 21px;
}
/*#footer .box .f-box .product .line {
  width: 100%;
}*/
#footer .box .f-box .link .line,
#footer .box .f-box .news .line {
  width: 100%;
}
#footer .box .f-box .ewm .line {
  width: 100%;
}
#footer .f-copy {
  width: 100%;
  position: relative;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .f-copy .gs {
  text-transform: uppercase;
}
#footer .f-copy svg {
  vertical-align: top;
  margin-top: -3px;
  width: auto;
  max-height: 26px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: none;
  fill: #fff;
}
#footer .f-copy svg text {
  fill: #fff;
}
#footer::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f0f0f0;
}
.page-header02{
  background: #000000;
  position: fixed;
  width: 100%
}
@media screen and (max-width: 1680px) {
 
  #banner .swiper-pagination {
    bottom: 10%;
    left: 4.7%;
  }
  
  #footer .box .f-box ul li {
    font-size: 17px;
  }
  #footer .box .f-box .contact {
    max-width: 360px;
  }
  #footer .box .f-box .product {
    min-width: 280px;
  }
}
@media screen and (max-width: 1440px) {
  #banner ul li .text .box {
    width: 70%;
  }
  #banner .swiper-pagination{
    left: 12%;
    width: 30%
  }
 
  #header .nav {
    padding: 16px 0;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 17px;
    margin-right: 40px;
  }


  
  #footer .box .f-box .ewm {
    max-width: 220px;
  }
  #footer .box .f-box .product {
    min-width: 240px;
  }
}
@media screen and (max-width: 1280px) {
  #header .nav .ui.menu .logo {
    margin-left: 0;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
    margin-right: 32px;
  }
  #header .nav .ui.menu .h-search {
    margin-left: 40px;
  }
  #header .nav .ui.menu .h-language {
    margin-left: 30px;
  }
  
  
  #footer .box .f-box .contact {
    max-width: 330px;
  }
  #footer .box .f-box .product {
    min-width: 200px;
  }
  #footer .box {
    padding: 100px 0 60px;
  }
  #footer .box .f-box {
    zoom: .85;
    padding: 40px 0 30px;
  }
  #footer .box .f-top .Auxil-form ul li {
    width: 33.3333%;
    padding-bottom: 10px;
  }
  #footer .box .f-top .Auxil-form ul li:nth-child(4) {
    width: 66.6666%;
  }
  #footer .box .f-top .Auxil-form ul li:last-child {
    width: 33.3333%;
  }
}
@media screen and (max-width: 1100px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 14px;
    margin-right: 25px;
  }
  #banner .swiper-pagination {
    zoom: .75;
  }
  #banner ul li .text .box {
    width: 100%;
  }
  
}
@media screen and (max-width: 1000px) {
  .body-overflow-box {
    overflow: hidden
  }
  #header .nav {
    padding: 0;
    border: 0;
    background: #1b1b1b;
  }
  #header .nav .ui.menu .logo {
    padding: 0;
  }
  #header .nav .ui.menu .logo img {
    width: 80%;
  }
  #header .nav .ui.menu .h-language {
    display: none;
  }
  #header.active::after {
    display: none;
  }
  #mobile .menu-content .menu-logo {
    background: #1b1b1b;
    padding: 10px;
  }
 
  #banner .swiper-pagination {
    bottom: 6%;
  }
    #banner ul li .sb {
    display: none;
  }
  /*.more {
    width: 180px;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
  }
  .more i {
    margin-left: 20px;
  }
  .more::after {
    top: 11px;
    right: 17px;
  }*/
 
  #footer .box .f-top .Auxil-form ul li input {
    font-size: 16px;
  }
  #footer .box {
    padding: 60px 0 20px;
  }
  #footer .box .f-box {
    zoom: 1;
  }
  #footer .box .f-box .contact {
    max-width: 400px;
  }
  #footer .box .f-box .link,
  #footer .box .f-box .product,
  #footer .box .f-box .news {
    display: none;
  }
  #footer .f-copy {
    display: block;
  }
  #footer .f-copy p {
    display: inline;
  }
  #footer .f-copy p .jwtfootphone{
    display: none!important;
  }
  .fixed-toolbar {
    right: 10px;
    bottom: 6%;
  }
  #banner .swiper-pagination {
    zoom: .5;
  }
    #footer .box .f-box .ewm {
    display: none;
  }
  #footer .box .f-box .contact{
    max-width: 100%
  }
}
@media screen and (max-width: 700px) {
  #banner .swiper-pagination {
    display: none
  }
  #banner ul li .text {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #banner ul li > img {
    min-height: 320px;
  }

 
  #footer .box {
    padding: 30px 0 20px;
  }
  #footer .box .f-top .Auxil-form ul li {
    width: 50%;
  }
  #footer .box .f-top .Auxil-form ul li:nth-child(3) {
    width: 100%;
  }
  #footer .box .f-top .Auxil-form ul li:nth-child(4) {
    width: 100%;
  }
  #footer .box .f-box {
    padding: 20px 0;
  }
  #footer .box .f-box .contact {
    max-width: 100%;
  }
  #footer .box .f-box .social-links {
    margin-top: 20px;
  }

}
@media screen and (max-width: 500px) {
  #banner ul li .text .box .title {
    font-size: 25px;
    margin-bottom: 15px;
  }
  #banner ul li .text .box {
    padding: 0;
  }
  #banner ul li .text .box .cont {
    display: none;
  }
    #banner ul li .text .box .more{
      margin-top: 20px
    }
  #banner ul li > img {
    min-height: 290px;
  }
 
  /*.more {
    font-size: 14px;
    width: 150px;
    height: 40px;
    padding-left: 10px;
  }
  .more i {
    margin-left: 15px;
  }
  .more::after {
    top: 7px;
    right: 15px;
  }*/
  
  
  #footer .box {
    border-radius: 0;
  }
  .font-24 {
    font-size: 18px;
  }
  #footer .box .f-top .Auxil-form ul li {
    width: 100%;
  }
  #footer .box .f-top .Auxil-form ul li input {
    height: 50px;
  }
  #footer .box .f-top .Auxil-form ul li button {
    height: 50px;
  }
  #footer .box .f-top .Auxil-form ul li:last-child {
    width: 100%;
  }
  .fixed-toolbar ul li {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }
  .fixed-toolbar {
    right: 10px;
    bottom: 23%;
  }
}
.fixed-toolbar ul li.back{
  display: none
}
.col {
  color: var(--color);
}
.st {
  font-weight: 300;
}
.title span {
  color: var(--color);
}
a {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body {
  overflow: hidden;
}
#index-body .product {
  position: relative;
  padding: 178px 0 240px;
  background: #f0f0f0;
  overflow: hidden;
}
#index-body .product .bg2 {
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: var(--color);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
#index-body .product .bg1 {
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: var(--color);
  position: absolute;
  left: 0;
  top: 50%;
  color: #ffffff;
  -webkit-transform: translate(-70%, -50%) rotate(-90deg);
  -moz-transform: translate(-70%, -50%) rotate(-90deg);
  -ms-transform: translate(-70%, -50%) rotate(-90deg);
  transform: translate(-70%, -50%) rotate(-90deg);
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
}
#index-body .product .btn {
  position: absolute;
  right: 200px;
  top: 80px;
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: -4px;
}
#index-body .product .btn .pagination .swiper-pagination-current {
  font-size: 50px;
  letter-spacing: -4px;
}
#index-body .product .btn .pagination span {
  margin-left: 2px;
  letter-spacing: -1px;
  display: inline-block;
}
#index-body .product .btn .pagination span::before {
  content: "0";
}
#index-body .product .next {
  position: absolute;
  right: 65px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 6;
}
#index-body .product .swiper {
  overflow: hidden;
}
#index-body .product .box {
  position: relative;
  z-index: 3;
}
#index-body .product .left {
  width: 50%;
}
#index-body .product .left .cont {
  font-weight: 300;
}
#index-body .product .left .cont span {
  font-weight: 400;
}
#index-body .product .left .cont p:first-of-type {
  font-weight: 400;
}
#index-body .product .right {
  width: 50%;
}
#index-body .product .right img {
  -webkit-transform: translateX(-80px);
  -moz-transform: translateX(-80px);
  -ms-transform: translateX(-80px);
  transform: translateX(-80px);
}
#index-body .about {
  padding-bottom: 230px;
  background: url(../images/about_bg.png) no-repeat left bottom;
}
#index-body .about .box .left {
  width: 50%;
}
#index-body .about .box .left .title {
  line-height: 1.2;
}
#index-body .about .box .left .cont {
  opacity: 0.7;
}
#index-body .about .box .left .btn {
  width: 229px;
  height: 62px;
  background-color: #0f509d;
  border-radius: 31px;
  text-align: center;
  line-height: 62px;
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid var(--color);
}
#index-body .about .box .left .btn:hover {
  background: none;
  color: var(--color);
}
#index-body .about .box .right {
  width: 50%;
}
#index-body .about .box .right img {
  border-radius: 0px 100px 0px 0px;
}
#index-body .about .dates {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -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;
}
#index-body .about .dates li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#index-body .about .dates li .img {
  margin-right: 16px;
}
#index-body .about .dates li .num {
  line-height: 1;
}
#index-body .about .dates li p {
  opacity: 0.8;
  font-weight: 300;
}
#index-body .news {
  background: #f0f0f0;
}
#index-body .news .img {
  background: #ffffff;
  height: 425px;
  border-radius: 0px 100px 0px 0px;
  padding: 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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#index-body .news .img img {
  width: auto;
}
#index-body .news .time {
  opacity: 0.43;
  font-weight: 300;
  line-height: 1;
}
#index-body .news .t1 {
  font-weight: 500;
  line-height: 1.2;
  display: block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .news .btn {
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .news .btn img {
  margin-left: 10px;
}
#index-body .news .box:hover .t1 {
  color: var(--color);
}
#index-body .news .box:hover .btn {
  color: var(--color);
}
#index-body .advantages {
  position: relative;
  background: url(../images/adv.png) no-repeat right top;
  overflow: hidden;
  padding-bottom: 80px;
}
#index-body .advantages .ui.container {
  z-index: 3;
}
#index-body .advantages .img1 {
  position: absolute;
  display: block;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  padding-left: 110px;
  padding-top: 200px;
  background: var(--color);
  right: 0;
  bottom: 0;
  -webkit-transform: translate(65%, 50%);
  -moz-transform: translate(65%, 50%);
  -ms-transform: translate(65%, 50%);
  transform: translate(65%, 50%);
  z-index: 6;
}
#index-body .advantages ul {
  margin-right: -75px;
}
#index-body .advantages ul li {
  padding-left: 80px;
  position: relative;
  padding-right: 75px;
}
#index-body .advantages ul li span {
  font-size: 89px;
  line-height: 1;
  color: var(--color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}
#index-body .advantages ul li span::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -25px;
  width: 68px;
  height: 99px;
  background: url(../images/about-sanjiao-bg.png) no-repeat;
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  transform: rotate(4deg);
}
#index-body .advantages ul li h5 {
  color: #000;
  font-weight: 500;
  line-height: 1;
}
#index-body .advantages ul li .des {
  line-height: 30px;
  opacity: 0.8;
}
#index-body .advantages ul .slick-dots {
  text-align: center;
  margin: 0;
}
#index-body .advantages ul .slick-dots li {
  padding: 0;
  width: 10px !important;
  height: 10px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: 0 5px;
  display: inline-block;
}
#index-body .advantages ul .slick-dots li button {
  display: none;
}
#index-body .advantages ul .slick-dots li.slick-active {
  background: var(--color);
}
@-webkit-keyframes topFloat {
  from {
    transform: translateY(80px);
    opacity: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@-moz-keyframes topFloat {
  from {
    transform: translateY(80px);
    opacity: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@keyframes topFloat {
  from {
    transform: translateY(80px);
    opacity: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
.posi {
  position: relative;
}
.bg-blue {
  background-color: var(--color);
}
.hidden {
  overflow: hidden;
}
.hmax {
  height: 100%;
}
.wmax {
  width: 100%;
}
.color-white {
  color: white;
}
.w45 {
  width: 45%;
}
.text-nowrap {
  white-space: nowrap;
}
strong {
  font-weight: bold;
}
.idxBusCon {
  height: 816px;
}
.idxBusConImg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.idxBusConImg .img {
  display: none;
  -webkit-transition: all 0.36s;
  -moz-transition: all 0.36s;
  transition: all 0.36s;
  -moz-animation: scaleIn 2s forwards cubic-bezier(0.4, 0, 0.49, 0.93);
  animation: scaleIn 2s forwards cubic-bezier(0.4, 0, 0.49, 0.93);
  -webkit-animation: scaleIn 2s forwards cubic-bezier(0.4, 0, 0.49, 0.93);
}
.idxBusConImg .img.on {
  display: block;
}
.idxBusConImg .img span {
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(16, 116, 188, 0.8)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(16, 116, 188, 0.8), transparent);
  background-image: -moz-linear-gradient(left, rgba(16, 116, 188, 0.8), transparent);
  background-image: linear-gradient(to right, rgba(16, 116, 188, 0.8), transparent);
  width: 100%;
  height: 100%;
  z-index: 10;
}
.idxBusConImg .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.idxBus .one {
  display: inline-block;
  width: 100%;
  position: absolute;
  right: 0px;
  top: 0;
  height: 100%;
  background: url(../images/bnn1.png) no-repeat 50% / cover;
}
.idxBus .one_on {
  display: inline-block;
  width: 100%;
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  opacity: 0;
  background: url(../images/bnn1.png) no-repeat 50% / cover;
}
.idxBus .two {
  display: inline-block;
  width: 100%;
  position: absolute;
  right: 0px;
  top: 0;
  height: 100%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
  background: url(../images/bnn2.png) no-repeat 50% / cover;
}
.idxBus .one img,
.idxBus .two img,
.one_on img {
  width: 100%;
  display: none;
}
.idxBus .one.on {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
  opacity: 0;
}
.idxBus .one_on.on {
  right: 0px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
  opacity: 1;
}
.idxBusLeft {
  z-index: 10;
}
@media screen and (min-width: 1100px) {
  .idxBusLeft {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 50%;
    top: 0;
    max-width: 700px;
    z-index: 10;
  }
  .idxBusLeft .yffwIndexXun {
    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;
    position: absolute;
    width: 0;
    height: 0;
    cursor: pointer;
  }
  .idxBusLeft .yffwIndexXun:nth-child(1) {
    left: -webkit-calc(75%);
    left: -moz-calc(75%);
    left: calc(75%);
    top: -webkit-calc(22.05882353%);
    top: -moz-calc(22.05882353%);
    top: calc(22.05882353%);
  }
  .idxBusLeft .yffwIndexXun:nth-child(2) {
    left: -webkit-calc(79.42857143%);
    left: -moz-calc(79.42857143%);
    left: calc(79.42857143%);
    top: -webkit-calc(36.76470588%);
    top: -moz-calc(36.76470588%);
    top: calc(36.76470588%);
  }
  .idxBusLeft .yffwIndexXun:nth-child(3) {
    left: -webkit-calc(79.85714286%);
    left: -moz-calc(79.85714286%);
    left: calc(79.85714286%);
    top: -webkit-calc(51.47058824%);
    top: -moz-calc(51.47058824%);
    top: calc(51.47058824%);
  }
  .idxBusLeft .yffwIndexXun:nth-child(4) {
    left: -webkit-calc(78.57142857%);
    left: -moz-calc(78.57142857%);
    left: calc(78.57142857%);
    top: -webkit-calc(64.95098039%);
    top: -moz-calc(64.95098039%);
    top: calc(64.95098039%);
  }
  .idxBusLeft .yffwIndexXun:nth-child(5) {
    left: -webkit-calc(74.28571429%);
    left: -moz-calc(74.28571429%);
    left: calc(74.28571429%);
    top: -webkit-calc(78.43137255%);
    top: -moz-calc(78.43137255%);
    top: calc(78.43137255%);
  }
}
@media screen and (max-width: 1680px) {
  .idxBusLeft {
    right: 49%;
  }
}
.yixDots {
  width: 0;
  top: 4px;
  position: absolute;
  left: 0;
}
.yixDots .yixDots1 {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #fff;
  margin: -4px 30px 0 -4px;
}
.yixDots .jdt {
  opacity: 0;
  width: 54px;
  position: absolute;
  height: 54px;
  left: -27px;
  top: -27px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 27px;
  -moz-transform-origin: 27px;
  -ms-transform-origin: 27px;
  transform-origin: 27px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
}
.idxBusLeft .yffwIndexXun.on .yixDots .jdt {
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
}
.idxBusLeft .yffwIndexXun.on .yixDots .jdt3 {
  -webkit-animation: jdt3 infinite 5s linear;
  -moz-animation: jdt3 infinite 5s linear;
  animation: jdt3 infinite 5s linear;
}
.idxBusLeft .yffwIndexXun.on .yixTitle {
  color: #fff;
  font-size: 1.2em;
}
@-webkit-keyframes jdt3 {
  0% {
    stroke-dasharray: 0 190;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 190 0;
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes jdt3 {
  0% {
    stroke-dasharray: 0 190;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 190 0;
    stroke-dashoffset: 0;
  }
}
@keyframes jdt3 {
  0% {
    stroke-dasharray: 0 190;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 190 0;
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes scaleIn {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@-moz-keyframes scaleIn {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@keyframes scaleIn {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.idxBusRight {
  width: 50%;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 10;
  position: absolute;
}
.idxBusRight a:hover {
  opacity: 0.6;
}
.idxBusRight .box {
  background: url(../images/idxBusRightBg.png) no-repeat center center;
  background-size: 100% 100%;
}
.idxBusRight .more:hover {
  background: #fff;
  color: var(--color);
  opacity: 1;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transform: translateX(25px);
  -webkit-transform: translateX(25px);
  -moz-transform: translateX(25px);
  -ms-transform: translateX(25px);
  -o-transform: translateX(25px);
}
.idxBusRight li {
  display: none;
  -moz-animation: topFloat 1s;
  animation: topFloat 1s;
  -webkit-animation: topFloat 1s;
}
.idxBusRight li.on {
  display: block;
}

@media screen and (max-width: 1700px) {
   .container {
    max-width: 1380px;
  }
  #index-body .product .bg1 {
    zoom: 0.8;
  }
  #index-body .advantages {
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 1440px) {
    .container {
    max-width: 1220px;
  }
  .idxBusCon {
    height: 740px;
  }
  .idxBusLeft {
    max-width: 645px;
  }
  #index-body .advantages ul li h5 {
    font-size: 24px;
  }
  #index-body .advantages ul li span {
    font-size: 76px;
  }
  #index-body .advantages ul li span:after {
    width: 45px;
    right: 1px;
  }
  #index-body .advantages ul {
    margin-right: -40px;
  }
  #index-body .advantages ul li {
    padding-left: 55px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1250px) {
  #innerMobileBanner{
    padding-top: 80px
  }
  #innerMobileBanner .title{
    font-size: 24px
  }
    #banner ul li {
    border-radius: 0px 0px 0px 150px;
  }
  .container {
    max-width: 1080px;
  }
  .idxBusCon {
    height: 600px;
  }
  .idxBusLeft {
    max-width: 535px;
  }
  #banner {
    padding-top: 60px ;
  }
 
  #index-body .about .dates li {
    margin-bottom: 25px;
  }
  #index-body .news .img {
    border-radius: 0px 50px 0px 0px;
  }
  #index-body .news .img {
    height: 350px;
  }
  
}
@media screen and (max-width: 1100px) {
   #innerMobileBanner .title{
    font-size: 20px
  }
   .container {
    max-width: 970px;
  }
  .idxBusCon {
    height: auto;
  }
  .idxBusRight {
    width: 66%;
    height: 500px;
  }
  .idxBusRight li {
    width: 60%;
  }
  .idxBusLeft {
    max-width: 100%;
  }
  .idxBusConBg {
    height: 500px;
  }
  .idxBusConImg {
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    left: auto;
  }
  .idxBusConImg .img img {
    height: 500px;
  }
  .idxBusLeft {
    height: 100px;
    line-height: 1;
    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;
  }
  .idxBusLeft li {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    padding: 0 10px;
    zoom: 0.8;
  }
  .idxBusLeft .yffwIndexXun .yixDots {
    display: none !important;
  }
  .idxNewsItem .line-clamp2 {
    -webkit-line-clamp: 1;
  }
  .ewmBox {
    width: 125px;
    height: 125px;
  }
  .idxBusLeft .yffwIndexXun .yixTitle {
    margin-left: 0;
  }
  .idxBusConBg {
    display: none;
  }
  .idxBusLeft .yffwIndexXun .yixTitle {
    white-space: wrap ;
  }
}
@media screen and (max-width: 1000px) {
  .body-overflow-box {
    margin-bottom: 0;
  }
 
  #index-body .advantages .grid-box.three > .column {
    width: 50%;
  }
  #index-body .product .bg1,
  #index-body .product .bg2,
  #index-body .product .btn,
  #index-body .product .next {
    display: none;
  }
  #index-body .product .right img {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  #index-body .product {
    padding: 60px 0;
  }
  #index-body .product .right {
    margin-top: 50px;
  }
 
  #index-body .about .box .left {
    margin-bottom: 50px;
  }
  #index-body .about {
    background: none;
    padding-bottom: 80px;
  }
  #index-body .advantages {
    background: none;
  }
 
  #index-body .advantages .img1 {
    zoom: 0.6;
  }
 
  #index-body .about .box .right img {
    border-radius: 0px 50px 0px 0px;
  }
  #index-body .advantages ul li span {
    zoom: 0.8;
  }
}
@media screen and (max-width: 700px) {
    #banner ul li {
    border-radius: 0px 0px 0px 100px;
  }
  .idxBusConImg,
  .idxBusConImg {
    height: 300px;
  }
  .idxBusRight {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    height: auto;
    width: 100%;
    padding: 20px;
  }
  .idxBusRight li {
    width: 100%;
  }
  .idxBusRight .box {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }
  .idxBusLeft {
    background: rgba(0, 0, 0, 0.1);
  }
  #index-body .advantages .grid-box.three > .column {
    width: 100%;
  }
 
  .more,
  #index-body .about .box .left .btn {
    zoom: 0.7;
  }

  #index-body .advantages .img1 {
    zoom: 0.4;
  }
  #index-body .advantages {
    padding-bottom: 100px;
  }
#index-body .about .dates li .img{
  zoom: 0.8
}

}
@media screen and (max-width: 500px) {
  #index-body .about .dates li .img{
  zoom: 0.6
}
  #index-body .advantages ul li span {
    zoom: 0.5;
  }
 
  .more,
  #index-body .about .box .left .btn {
    zoom: 0.5;
  }
  .idxBus {
    display: none;
  }
  #index-body .about{
  padding-bottom: 0;
}
 
}


.inner-banner {
  height: 481px;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 246px;
  border-radius: 0px 0px 300px 0px;
  color: #fff;
}
.inner-banner .mbx {
  font-size: 18px;
  line-height: 32px;
  text-transform: capitalize;
}
.inner-banner .mbx span {
  color: var(--color);
}
.inner-banner .tit {
  font-size: 40px;
  line-height: 1.2;
  
  margin-top: 17px;
  text-transform: uppercase;
}

.font-18 {
  line-height: 2;
}
.font-36 {
  line-height: 1.3;
}
.inner-page .in-num {
  
  line-height: 1.1;
  text-transform: uppercase;
}
.inner-page .in-num::before {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--color);
  display: inline-block;
  vertical-align: top;
  margin: -2px 7px 0 0;
}
.inner-page .title {
  
}
.inner-page .m-page {
  margin-top: 160px;
  text-align: center;
}
.inner-page .m-page a,
.inner-page .m-page span {
  width: 52px;
  height: 52px;
  line-height: 52px;
  border-radius: 100%;
  background: #333;
  font-size: 17px;
  font-weight: bold;
  color: white;
  margin: 0 10px;
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background: var(--color);
}
.about-page .title {
  margin-top: 6px;
}
.about-page .about-1 {
  padding-top: 8%;
  position: relative;
  z-index: 1;
}
.about-page .about-1 .img {
  margin-top: 38px;
}
.about-page .about-1 .img img{
  width: 100%
}
.about-page .about-1 .con {
  line-height: 2;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 57px;
}
.about-page .about-1::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 457px;
  line-height: 2;
  
  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;
}
.about-page .about-2 {
  padding: 5% 0 0;
    /*margin: 3% 0;*/
   /*background: #eee;*/
}
.about-page .about-2 .content {
  position: relative;
  padding: 0 40px;
  margin: 50px 0 9.167%;
}
.about-page .about-2 .content ul li {
  padding: 0 36px 88px;
  position: relative;
  cursor: pointer;
}
.about-page .about-2 .content ul li .tit {
  color: var(--color);
  
}
.about-page .about-2 .content ul li .con {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 10px;
  height: 74px;
  overflow-y: auto;
}
.about-page .about-2 .content ul li::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 78px;
  background: #bfbfbf;
  bottom: 0;
  left: 36px;
}
.about-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-page .about-2 .content ul li:hover::after {
  background: var(--color);
}
.about-page .about-2 .content::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 12px;
  /*background: #afafaf;*/
  border-bottom: 1px solid #afafaf;
}
.about-page .about-2 .bottom {
  /*padding: 9.167% 0 0 0;*/
  overflow: hidden;
    width: calc(100% - 6.25vw);
    border-radius: 0 200px 200px 0;
    position: relative;
    z-index: 1;
}
.about-page .about-2 .bottom ul {
  margin-right: -16px;
}
.about-page .about-2 .bottom ul li {
  padding-right: 16px;
}
.about-page .about-2 .bottom ul li a img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  max-height: 400px;
  width: auto
}
.about-page .about-3 {
  padding: 4.5% 0 0;
}
.about-page .about-3 .ui.container {
  max-width: 1580px;
  padding: 0 15px 0 30px;
}
.about-page .about-3 .con {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 22px;
}
.about-page .about-3 .content {
  margin-top: 65px;
}
.about-page .about-3 .content ul {
  margin: -15px -10px;
}

.about-page .about-3 .content ul li .img-box {
  background: #fff;
  border: solid 4px #fff;
  text-align: center;
  line-height: 120px;
}
.about-page .about-3 .content ul li .img-box img {
  display: inline-block;
  vertical-align: middle;
  /*-webkit-filter: grayscale(100%);*/
  /*filter: grayscale(100%);*/
}
.about-page .about-3 .content ul li .img-box:hover img {
  -webkit-filter: none;
  filter: none;
}
.about-page .about-4 {
  background: var(--color);
  border-radius: 200px 0px 0 0;
  padding: 6.5% 0 6.146%;
  color: #fff;
}
.about-page .about-4 .in-num::before {
  background: #fff;
}
.about-page .about-4 .content {
  margin-top: 29px;
}
.about-page .about-4 .content ul {
  margin-right: -25px;
}
.about-page .about-4 .content ul li {
  padding-right: 25px;
}
.about-page .about-4 .content ul li .img-box img {
  width: 100%;
}
.about-page .about-4 .content ul.slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -89px;
  width: 100%;
  text-align: center;
  margin: 0;
}
.about-page .about-4 .content ul.slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000000;
  padding: 0;
  margin-right: 31px;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-4 .content ul.slick-dots li button {
  display: none;
}
.about-page .about-4 .content ul.slick-dots li.slick-active {
  background: #fff;
}
.about-page .about-4 .content ul.slick-dots li:last-child {
  margin-right: 0;
}
.about-page .about-5{
  background-color: var(--color);
	border-radius: 257px 0px 0px 257px;
  padding: 4.382% 0 5.4256%;
  color: #fff;
  margin-top: 70px;
  margin-left: 5%;
}
.about-page .about-5 .in-num::before{
  background: #fff;
}
.about-page .about-5 .left{
  width: 44%;
  vertical-align: middle;
}
.about-page .about-5 .right{
  vertical-align: middle;
  width: 56%;
  font-size: 18px;
  line-height: 2;
}
.about-page .about-6{
  padding: 5% 0 3%;
    background: #fff;
    margin: 5% 0 0;
}
.about-page .about-6 .title em{
  color: var(--color);
}
.about-page .about-6 .content{
  padding: 3% 0;
}
.about-page .about-6 .content ul{
  margin-right: -96px;
}
.about-page .about-6 .content ul li{
  padding-right: 66px;
  /*margin-bottom: 30px*/
}
.about-page .about-6 .content ul li .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-page .about-6 .content ul li .top span {
  font-size: 94px;
  line-height: 1;
  color: var(--color);
  
  display: inline-block;
  position: relative;
}
.about-page .about-6 .content ul li .top span::after {
  content: '';
  width: 79px;
  height: 95px;
  background: url(../images/ad-bg.png) no-repeat;
  position: absolute;
  bottom: 0;
  left: 0px;
}
.about-page .about-6 .content ul li .top em {
  font-size: 24px;
  line-height: 1.2;
  
  padding-left: 15px;
}
.about-page .about-6 .content ul li p {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  margin-top: 14px;
}
@media screen and (max-width: 1680px) {
  .about-page .about-3 .ui.container{
    max-width: 1400px;
  }
}
@media screen and (max-width: 1440px) {
  .about-page .about-3 .ui.container{
    max-width: 1200px;
  }
  .about-page .about-6 .content ul{
    margin-right: -40px;
  }
  .about-page .about-6 .content ul li{
    padding-right: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .about-page .about-1::after {
    font-size: 300px;
  }
  .about-4 .ui.container {
    padding: 0 15px 0 30px;
  }
}
@media screen and (max-width: 1100px) {
  .about-page .about-2 .content {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .about-page .about-6 .content ul li .top span{
    font-size: 60px
  }
  .about-page .about-6 .content ul li .top span::after{
    zoom: 0.6
  }
  .inner-banner {
    height: 300px;
    padding-top: 100px;
  }
  .inner-banner .tit {
    font-size: 36px;
  }
  .inner-page .in-num::before {
    width: 20px;
    height: 20px;
    margin: 2px 7px 0 0;
  }
  .about-page .about-1::after {
    display: none;
  }
  .about-page .about-2 .content {
    margin-top: 40px;
  }
  .about-page .about-4 {
    border-radius: 100px 0 0 0;
  }
  .about-page .about-4 .content ul.slick-dots {
    bottom: -30px;
  }
  .about-page .about-5{
    margin-top: 60px;
    border-radius: 0;
  }
  .about-page .about-5 .left{
    width: 100%;
  }
  .about-page .about-5 .right{
    width: 100%;
    margin-top: 20px;
  }

}
@media screen and (max-width: 700px) {
  .inner-banner {
    background: #fff !important;
    color: #000;
    height: auto;
    padding-top: 80px;
  }
  .inner-banner .tit {
    display: none;
  }
  .about-page .about-1 .con {
    margin-top: 20px;
  }
  .about-page .about-3 .ui.container {
    padding: 0 15px;
  }
  .about-page .about-3 .content {
    margin-top: 20px;
  }
  .about-page .about-3 .content ul li .img-box {
    line-height: 100px;
  }
  .about-page .about-4 .content ul.slick-dots li {
    margin-right: 20px;
  }

}
@media screen and (max-width: 500px) {
  .font-48 {
    font-size: 20px;
  }
  .about-page .about-1 .img {
    margin-top: 20px;
  }
  .about-page .about-2 .content ul li {
    padding: 0 0 88px 0;
  }
  .about-page .about-2 .content ul li::after {
    left: 0;
    width: 20px;
    height: 20px;
  }
  .about-page .about-2 .content ul li::before {
    left: 11px;
  }
  .about-page .about-2 .bottom {
    padding-right: 0;
  }
  .about-page .about-4 {
    border-radius: 0;
  }
  .about-page .about-4 .ui.container {
    padding: 0 15px;
  }
  .about-page .about-4 .content {
    margin-top: 20px;
  }
  .about-page .about-4 .content ul.slick-dots li {
    margin-right: 10px;
  }
}
.seo_content {
  padding-top: 5.6771%;
}
.seo_content .tag {
  color: var(--color);
  
  text-transform: uppercase;
}
.seo_content .title {
  text-transform: uppercase;
}
.seo_content .title small {
  display: block;
}
.seo_content .title em {
  color: var(--color);
}
.seo_content .seo_about {
  background-color: #f6f6f6;
  border-radius: 300px 0px 0px 0px;
  padding: 8.282% 0 9.115%;
}
.seo_content .seo_about .img img{
  width: 100%;
  border-radius: 0 100px 0 0
}
.seo_content .seo_about .con {
  color: rgba(0, 0, 0, 0.6);
  padding-right: 57px;
  margin-top: 43px;
  max-height: 467px;
  overflow-y: auto;
}
.seo_content .seo_about .con::-webkit-scrollbar {
  width: 6px;
}
.seo_content .seo_about .con::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.22);
}
.seo_content .seo_honor {
  padding: 5.782% 0 10.209%;
}
.seo_content .seo_honor .content {
  margin-top: 29px;
}
.seo_content .seo_honor .content ul {
  margin-right: -25px;
}
.seo_content .seo_honor .content ul li {
  padding-right: 25px;
}
.seo_content .seo_honor .content ul li .img-box img {
  width: 100%;
}
.seo_content .seo_honor .content ul.slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -89px;
  width: 100%;
  text-align: center;
  margin: 0;
}
.seo_content .seo_honor .content ul.slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000000;
  padding: 0;
  margin-right: 31px;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seo_content .seo_honor .content ul.slick-dots li button {
  display: none;
}
.seo_content .seo_honor .content ul.slick-dots li.slick-active {
  background: var(--color);
}
.seo_content .seo_honor .content ul.slick-dots li:last-child {
  margin-right: 0;
}
.seo_content .seo_news {
  background-color: #f6f6f6;
  padding: 5.834% 0 7.344%;
}
.seo_content .seo_news .content {
  margin-top: 61px;
}
.seo_content .seo_news .content ul {
  margin-right: -25px;
}
.seo_content .seo_news .content ul li {
  padding-right: 25px;
}
.seo_content .seo_news .content ul li .img {
  position: relative;
}
.seo_content .seo_news .content ul li .img .img-box {
  border-radius: 0 100px 0 0;
}
.seo_content .seo_news .content ul li .img .img-box img {
  width: 100%;
}
.seo_content .seo_news .content ul li .img .img-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 100px 0 0;
  background: rgba(0, 0, 0, 0.2);
}
.seo_content .seo_news .content ul li .img time {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110px;
  height: 110px;
  background-color: var(--color);
  border-radius: 0px 71px 0px 0px;
  color: #fff;
  padding: 27px 33px 0 14px;
}
.seo_content .seo_news .content ul li .img time em {
  line-height: 1;
  display: block;
  border-bottom: 1px solid #fff;
  padding-bottom: 7px;
}
.seo_content .seo_news .content ul li .img time span {
  display: block;
  margin-top: 5px;
}
.seo_content .seo_news .content ul li .text {
  padding: 24px 30px 0 16px;
}
.seo_content .seo_news .content ul li .text .tit {
  line-height: 1.8;
  text-transform: uppercase;
  
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seo_content .seo_news .content ul li .text .tit:hover {
  color: var(--color);
}
.seo_content .seo_news .content ul li .text .con {
  color: #737373;
  line-height: 1.7;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.seo_content .seo_industry {
  padding-top: 5%;
}
.seo_content .seo_industry .con {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 41px;
}
.product-page {
  padding: 7% 0 10.7292%;
  position: relative;
  z-index: 1;
}
.product-page .Auxil-h1{
  font-size: 36px;
    color: var(--color);
}
.product-page .list .in-num {
  color: var(--color);
}
.product-page .list .in-num::before {
  width: 14px;
  height: 14px;
  margin: 5px 7px 0 0;
}
.product-page .list .title {
  margin-top: 8px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  width: 90%;
}
.product-page .list .title:hover {
  color: var(--color);
}
.product-page .list ul li {
  padding: 46px 0 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 180px;
}
.product-page .list ul li .ig {
  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;
}
.product-page .list ul li .ig .text {
  width: 45.549%;
  padding-right: 71px;
}
.product-page .list ul li .ig .text .con {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
.product-page .list ul li .ig .text .more {
  margin-top: 46px;
}

.product-page .list ul li .ig .img {
  width: 54.451%;
}
.product-page .list ul li::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 774px;
  height: 578px;
  background-color: #f6f6f6;
  border-radius: 289px 0px 0px 289px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .list ul li:hover::after {
  background: var(--color);
}
.product-page .list ul li:nth-child(even) .ig {
  -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;
}
.product-page .list ul li:nth-child(even) .ig .text {
  padding: 0 0 0 71px;
}
.product-page .list ul li:nth-child(even)::after {
  right: initial;
  left: 0;
  width: 964px;
  height: 578px;
  border-radius: 0px 289px 289px 0px;
}
.product-page .list ul li:last-child {
  margin-bottom: 0;
}
.product-page::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 457px;
  line-height: 1;
  
  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) {
  .product-page .list ul li::after {
    width: 700px;
    height: 500px;
  }
  .product-page .list ul li:nth-child(even)::after {
    width: 820px;
    height: 500px;
  }
}
@media screen and (max-width: 1440px) {
  .product-page .list ul li .ig .text {
    padding-right: 40px;
  }
  .product-page::after {
    font-size: 300px;
    top: -20px;
  }
  .product-page .list ul li::after {
    width: 600px;
    height: 400px;
    border-radius: 200px 0px 0px 200px;
    top: 8%;
  }
  .product-page .list ul li:nth-child(even)::after {
    width: 720px;
    height: 400px;
    border-radius: 0px 200px 200px 0px;
  }
  .product-page .list ul li:nth-child(even) .ig .text {
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 1280px) {
  .product-page::after {
    font-size: 260px;
    top: -20px;
  }
  .product-page .list .title {
    width: 100%;
  }
  .product-page .list ul li::after {
    width: 500px;
    height: 300px;
    border-radius: 150px 0px 0px 150px;
    top: 24%;
  }
  .product-page .list ul li:nth-child(even)::after {
    width: 620px;
    height: 300px;
    border-radius: 0px 200px 200px 0px;
  }
  .product-page .list ul li {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1100px) {
  .product-page .list ul li:nth-child(even)::after {
    width: 500px;
  }
  .font-36 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .product-page::after {
    display: none;
  }
  .product-page .list ul li {
    margin-bottom: 40px;
    padding: 0;
  }
  .product-page .list ul li .ig .text {
    width: 100%;
    padding-right: 0;
  }
  .product-page .list ul li .ig .text .more {

    margin-top: 20px;
  }
  .product-page .list ul li .ig .img {
    width: 100%;
  }
  .product-page .list ul li::after {
    display: none;
  }
  .product-page .list ul li:nth-child(even) .ig .text {
    padding: 0;
  }
  .seo_content .seo_about {
    border-radius: 0;
  }
  .seo_content .seo_honor .content ul.slick-dots {
    bottom: -40px;
  }
}
@media screen and (max-width: 700px) {
  .font-24 {
    font-size: 20px;
  }
  .product-page .Auxil-h1{
    display: none!important;
  }
  .product-page .list .in-num::before {
    margin: 3px 7px 0 0;
  }
  .font-36 {
    font-size: 30px;
  }
  .seo_content .seo_about .con {
    margin-top: 20px;
    padding-right: 20px;
  }
  .seo_content .seo_news .content ul {
    margin-right: -10px;
  }
  .seo_content .seo_news .content ul li {
    padding-right: 10px;
  }
  .seo_content .seo_news .content ul li .text {
    padding: 10px 0 0 0;
  }
  .seo_content .seo_honor .content ul.slick-dots li {
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .font-24 {
    font-size: 16px;
  }
  .product-page .list .in-num::before {
    margin: 0px 7px 0 0;
  }
  .font-36 {
    font-size: 24px;
  }

  .seo_content .seo_honor .content {
    margin-top: 10px;
  }
  .seo_content .seo_honor .content ul.slick-dots {
    bottom: -26px;
  }
  .seo_content .seo_honor .content ul.slick-dots li {
    margin-right: 5px;
  }
  .seo_content .seo_news .content {
    margin-top: 20px;
  }
}
.prodet-page {
  padding: 7% 0 10.7292%;
  position: relative;
  z-index: 1;
}
.prodet-page .prodet-1 {
  position: relative;
  padding: 0 197px 0 136px;
}
.prodet-page .prodet-1 .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
}
.prodet-page .prodet-1 .text .in-num {
  color: var(--color);
}
.prodet-page .prodet-1 .text .in-num::before {
  width: 14px;
  height: 14px;
  margin: 5px 7px 0 0;
}
.prodet-page .prodet-1 .text .title {
  margin-top: 11px;
}
.prodet-page .prodet-1 .img img {
  width: 100%;
}
.prodet-page .prodet-2 {
  padding-top: 8.639%;
}
.prodet-page .prodet-2 .ret {
  margin-top: 30px;
}
.prodet-page .prodet-2 .ret .bt {
  height: 106px;
  padding: 0 104px 0 79px;
  line-height: 106px;
  
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: var(--color);
  border-radius: 0px 0px 50px 0px;
  color: #fff;
  display: none;
  margin-bottom: 30px;
}
.prodet-page .prodet-2 .ret .bt::before {
  content: '';
  position: absolute;
  left: 47px;
  top: 42px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
}
.prodet-page .prodet-2 .ret .con {
  color: rgba(0, 0, 0, 0.6);
}
.prodet-page .prodet-2 .ret .con ul{
  margin: -10px;
}
.prodet-page .prodet-2 .ret .cont2 ol{
  margin-left: 40px;
  line-height: 2;
  margin-top: 30px
}
.prodet-page .prodet-2 .ret .con ul li{
  padding: 10px;
}
.prodet-page .prodet-2 .ret .con ul li a{
  border: 2px solid #eee;
  display: block;
}
.prodet-page .prodet-2 .ret form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.prodet-page .prodet-2 .ret form input {
  width: 46%;
  font-size: 18px;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid #dbdbdb;
  height: 63px;
  margin-bottom: 30px;
}
.prodet-page .prodet-2 .ret form p {
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.6;
  margin-bottom: 20px;
}
.prodet-page .prodet-2 .ret form textarea {
  width: 100%;
  height: 177px;
  font-size: 18px;
  padding: 18px 8px;
  border: 1px solid #dbdbdb;
}
.prodet-page .prodet-2 .ret form input[type="submit"] {
  background: var(--color);
  color: white;
  border: none;
  width: 186px;
  height: 57px;
  margin-top: 45px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.prodet-page .prodet-2 .ret form input[type="submit"]:hover {
  background: #000;
}
.prodet-page .prodet-3 {
  margin-top: 89px;
}
.prodet-page .prodet-3 .content {
  margin-top: 55px;
}
/*.prodet-page .prodet-3 .content ul {
  margin-right: -42px;
}
.prodet-page .prodet-3 .content ul li {
  padding-right: 42px;
}*/
.prodet-page .prodet-3 .content ul li .img-box {
  background-color: #f6f6f6;
  padding: 0 20px;
  text-align: center;
}
.prodet-page .prodet-3 .content ul li .text {
  padding-top: 30px;
}
.prodet-page .prodet-3 .content ul li .text .in-num {
  color: var(--color);
}
.prodet-page .prodet-3 .content ul li .text .in-num::before {
  width: 14px;
  height: 14px;
  margin: 2px 7px 0 0;
}
.prodet-page .prodet-3 .content ul li  .tit {
     font-size: 16px;
    line-height: 2;
    color: #6d6d6d;
    margin: 15px 0 30px;
}
.prodet-page .prodet-3 .content ul li .text .tit:hover {
  color: var(--color);
}
.prodet-page .prodet-3 .content ul li .text .more {

  margin-top: 65px;
}
.prodet-page .prodet-3 .content ul li .text .more:hover {
  color: #fff;
}
.prodet-page .prodet-3 .content ul li .text .more:hover i {
  color: #fff;
}
.prodet-page .prodet-3 .content ul li .text .more:hover::after {
  background: #000;
}
.prodet-page .opt {
  background-color: #f6f6f6;
}
.prodet-page .opt dl {
  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;
}
.prodet-page .opt dl dd {
  height: 106px;
  padding: 0 104px 0 79px;
  line-height: 106px;
  
  position: relative;
  z-index: 1;
  margin-right: 24px;
  cursor: pointer;
}
.prodet-page .opt dl dd::before {
  content: '';
  position: absolute;
  left: 47px;
  top: 42px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--color);
}
.prodet-page .opt dl dd::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  border-radius: 0px 0px 50px 0px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.prodet-page .opt dl dd:hover,
.prodet-page .opt dl dd.active {
  color: #fff;
}
.prodet-page .opt dl dd:hover::before,
.prodet-page .opt dl dd.active::before {
  background: #fff;
}
.prodet-page .opt dl dd:hover::after,
.prodet-page .opt dl dd.active::after {
  opacity: 1;
}
.prodet-page .opt dl dd:last-child {
  margin-right: 0;
}
.prodet-page::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 457px;
  line-height: 1;
  
  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) {
  .prodet-page .prodet-1 .text {
    width: 40%;
  }
}
@media screen and (max-width: 1440px) {
  .prodet-page::after {
    font-size: 300px;
    top: -20px;
  }
  .prodet-page .prodet-1 {
    padding: 0 100px 0 136px;
  }
  .font-30 {
    font-size: 27px;
  }
  .prodet-page .prodet-3 .content ul li .text .more {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .prodet-page .opt dl dd {
    padding: 0 79px;
  }
  .font-30 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .prodet-page::after {
    font-size: 260px;
  }
  .prodet-page .prodet-1 {
    padding: 0 80px 0 100px;
  }
  .prodet-page .opt dl dd {
    padding: 0 60px;
  }
  .prodet-page .opt dl dd::before {
    left: 30px;
  }
  .prodet-page .prodet-3 .content ul {
    margin-right: -20px;
  }
  .prodet-page .prodet-3 .content ul li {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .prodet-page::after {
    display: none;
  }
  .prodet-page .prodet-1 {
    padding: 0;
  }
  .prodet-page .prodet-1 .text {
    position: initial;
    width: 100%;
  }
  .prodet-page .opt dl dd {
    margin-right: 0;
    padding: 0 20px 0 40px;
  }
  .prodet-page .opt dl dd::before {
    left: 15px;
  }
  .font-20 {
    font-size: 18px;
  }

}
@media screen and (max-width: 700px) {
  .prodet-page .prodet-2 .opt {
    display: none;
  }
  .prodet-page .prodet-2 .ret .bt {
    display: block;
    height: 80px;
    line-height: 80px;
  }
  .prodet-page .prodet-2 .ret .bt::before {
    top: 30px;
  }
  .prodet-page .prodet-2 .ret .slide {
    display: block !important;
    margin-top: 30px;
  }
  .prodet-page .prodet-2 .ret .slide:first-child {
    margin-top: 0;
  }
  .prodet-page .prodet-3 {
    margin-top: 30px;
  }
  .prodet-page .prodet-3 .opt dl dd {
    padding: 0 104px 0 79px;
    height: 80px;
    line-height: 80px;
    width: 100%;
  }
  .prodet-page .prodet-3 .opt dl dd::before {
    top: 30px;
    left: 47px;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-2 .ret {
    margin-top: 0;
  }
  .prodet-page .prodet-3 .opt dl dd,
  .prodet-page .prodet-2 .ret .bt {
    height: 60px;
    line-height: 60px;
    padding: 0 0 0 30px;
  }
  .prodet-page .prodet-3 .opt dl dd::before,
  .prodet-page .prodet-2 .ret .bt::before {
    left: 10px;
    top: 22px;
    width: 14px;
    height: 14px;
  }
  .prodet-page .prodet-2 .ret form input {
    width: 100%;
    margin-right: 0;
  }
  .prodet-page .prodet-3 .content {
    margin-top: 20px;
  }
 
}
.news-page {
  padding: 125px 0 68px;
  position: relative;
  z-index: 1;
}
.news-page .header ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.news-page .header ul li {
  padding: 0 24px 0 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  line-height: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .header ul li:first-child {
  padding-left: 0;
}
.news-page .header ul li:hover,
.news-page .header ul li.active {
  color: var(--color);
}
.news-page .content {
  margin-top: 65px;
}
.news-page .content ul {
  margin: 0 -25px -65px 0;
}
.news-page .content ul li {
  padding: 0 25px 65px 0;
}
.news-page .content ul li .img {
  position: relative;
}
.news-page .content ul li .img .img-box {
  border-radius: 0 100px 0 0;
}
.news-page .content ul li .img .img-box img {
  width: 100%;
}
.news-page .content ul li .img .img-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 100px 0 0;
  background: rgba(0, 0, 0, 0.2);
}
.news-page .content ul li .img time {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110px;
  height: 110px;
  background-color: var(--color);
  border-radius: 0px 71px 0px 0px;
  color: #fff;
  padding: 27px 33px 0 14px;
}
.news-page .content ul li .img time em {
  line-height: 1;
  display: block;
  /*border-bottom: 1px solid #fff;*/
  padding-bottom: 7px;
}
.news-page .content ul li .img time span {
  display: block;
  /*margin-top: 5px;*/
}
.news-page .content ul li .text {
  padding: 24px 30px 0 16px;
}
.news-page .content ul li .text .tit {
  line-height: 1.8;
  text-transform: uppercase;
  
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .content ul li .text .tit:hover {
  color: var(--color);
}
.news-page .content ul li .text .con {
  color: #737373;
  line-height: 1.7;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-page::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 457px;
  line-height: 1;
  
  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: 1280px) {
  .news-page .content ul li .text {
    padding: 24px 10px 0 10px;
  }
  .inner-page .m-page {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .inner-page .m-page {
    margin-top: 60px;
  }
  .news-page::after {
    font-size: 300px;
    top: -20px;
  }
  .news-page .content ul {
    margin: 0 -20px -40px 0;
  }
  .news-page .content ul li {
    padding: 0 20px 40px 0;
    width: 33.3333% !important;
  }
}
@media screen and (max-width: 1000px) {
  .news-page {
    padding: 60px 0;
  }
  .news-page::after {
    display: none;
  }
  .news-page .content {
    margin-top: 30px;
  }
  .news-page .content ul li {
    width: 50% !important;
  }
  .inner-page .m-page {
    margin-top: 40px;
  }
  .inner-page .m-page a,
  .inner-page .m-page span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
  }
}
@media screen and (max-width: 700px) {
  .news-page {
    padding: 30px 0;
  }
  .news-page .content {
    margin-top: 20px;
  }
  .news-page .content ul li {
    width: 100% !important;
  }
  .inner-page .m-page {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .news-page .header {
    display: none;
  }
  .news-page .content {
    margin-top: 0;
  }
  .news-page .content ul {
    margin: 0 0 -20px 0;
  }
  .news-page .content ul li {
    padding: 0 0 20px 0;
  }
}
.m-link {
  margin-top: 30px;
}
.m-link a {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
}
.m-link a em {
  color: var(--color);
}
.m-link a:first-child {
  margin-top: 0;
}
.newdet-page .info {
  margin-top: 112px;
}
.newdet-page .info h1 {
  
}
.newdet-page .info .time_c {
  margin-top: 50px;
  text-align: center;
}
.newdet-page .info .time_c .list {
  display: inline-block;
  margin: 0 15px;
}
.newdet-page .info .time_c .list img {
  vertical-align: middle;
  width: 27px;
  filter: grayscale(1);
  
}
.newdet-page .info .time_c .list span {
  vertical-align: middle;
  margin-left: 11px;
  position: relative;
  top: 1px;
}
.newdet-page .info .con {
  margin-top: 55px;
}
.newdet-page .info .con img{
  margin-bottom: 30px;
}
.newdet-page .info .m-link {
  margin-top: 87px;
}
@media screen and (max-width: 1000px) {
  .newdet-page .info {
    margin-top: 40px;
  }
  .newdet-page .info .time_c,
  .newdet-page .info .con,
  .newdet-page .info .m-link {
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page .info {
    margin-top: 20px;
  }
  .m-link a {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .newdet-page .info .time_c .list {
    margin: 0 5px;
  }
  .newdet-page .info .time_c .list span {
    margin-left: 5px;
  }
  .newdet-page .info .time_c,
  .newdet-page .info .con,
  .newdet-page .info .m-link {
    margin-top: 20px;
  }
  .font-18 {
    line-height: 1.8;
  }
}
.font-60 {
  line-height: 1.1;
}
.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;
  
  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;
  
  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) {

  .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) {

  .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: 22px;
    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: 18px;
    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;
  }
}

.contact-page {
  padding-top: 7.073%;
  position: relative;
  z-index: 1;
}
.contact-page .ui.container {
  max-width: 1558px;
}
.contact-page .contact-1 ul {
  margin: -15px;
}
.contact-page .contact-1 ul li {
  padding: 15px;
  text-align: center;
}
.contact-page .contact-1 ul li .tit {
  
  line-height: 1.3;
  margin: 19px 0 11px;
}
.contact-page .contact-1 ul li p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.53);
}
.contact-page .contact-2 {
  padding: 7.15% 0;
}
.contact-page .contact-2 .form {
  margin-top: 80px;
}
.contact-page .contact-2 .form ul {
  margin: -15px;
}
.contact-page .contact-2 .form ul li {
  padding: 15px;
}
.contact-page .contact-2 .form ul li input,
.contact-page .contact-2 .form ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 20px;
  border-radius: 32px;
  border: 1px solid #bfbfbf;
  font-size: 18px;
  font-weight: 300;
  padding-left: 100px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-2 .form ul li input::-webkit-input-placeholder, .contact-page .contact-2 .form ul li textarea::-webkit-input-placeholder {
  color: #000;
}
.contact-page .contact-2 .form ul li input:-moz-placeholder, .contact-page .contact-2 .form ul li textarea:-moz-placeholder {
  color: #000;
}
.contact-page .contact-2 .form ul li input::-moz-placeholder, .contact-page .contact-2 .form ul li textarea::-moz-placeholder {
  color: #000;
}
.contact-page .contact-2 .form ul li input:-ms-input-placeholder, .contact-page .contact-2 .form ul li textarea:-ms-input-placeholder {
  color: #000;
}
.contact-page .contact-2 .form ul li input::placeholder,
.contact-page .contact-2 .form ul li textarea::placeholder {
  color: #000;
}
.contact-page .contact-2 .form ul li input:focus,
.contact-page .contact-2 .form ul li textarea:focus {
  border-color: var(--color);
}
.contact-page .contact-2 .form ul li textarea {
  height: 236px;
  resize: vertical;
}
.contact-page .contact-2 .form ul li .box {
  position: relative;
}
.contact-page .contact-2 .form ul li .box label {
  width: 66px;
  height: 66px;
  line-height: 66px;
  text-align: center;
  position: absolute;
  left: 1px;
  top: 0;
  border-radius: 100%;
  background: var(--color);
  display: block;
}
.contact-page .contact-2 .form ul li .box label img {
  display: inline-block;
  vertical-align: middle;
}
.contact-page .contact-2 .form ul li input[type="submit"] {
  margin-top: 40px;
  padding: 0 66px 0 67px;
  line-height: 55px;
  height: 55px;
  border-radius: 28px;
  background: var(--color);
  color: #fff;
  font-size: 19px;
  width: auto;
  border: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-2 .form ul li input[type="submit"]:hover {
  background: #222;
}
.contact-page .contact-2 .form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-2 .form ul li:nth-child(5) .box label::after {
  content: '';
  border-left: 18px solid var(--color);
  border-bottom: 18px solid var(--color);
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 18px solid transparent;
  border-right: 18px solid transparent;
}
.contact-page .contact-3 {
  padding-top: 5.1045%;
  margin-bottom: -125px;
}
.contact-page::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 457px;
  line-height: 1;
  
  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: 1440px) {
  .contact-page::after {
    font-size: 300px;
    top: -20px;
  }
}
@media screen and (max-width: 1100px) {
  .contact-page::after {
    font-size: 260px;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page::after {
    display: none;
  }
  .contact-page .contact-2 .form {
    margin-top: 30px;
  }
  .contact-page .contact-2 .form ul li .box label {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .contact-page .contact-2 .form ul li input,
  .contact-page .contact-2 .form ul li textarea {
    padding: 12px;
    padding-left: 70px;
  }

}
@media screen and (max-width: 700px) {
 
  .contact-page .contact-2 .form ul li {
    width: 100%;
  }
  .contact-page .contact-2 .form ul li input,
  .contact-page .contact-2 .form ul li textarea {
    font-size: 14px;
    padding-left: 60px;
  }
  .contact-page .contact-2 .form ul li input[type="submit"] {
    margin-top: 0;
  }
}
.gallery-page .content .box {
  text-align: center;
  padding-bottom: 90px;
}
.gallery-page .content .box h2 {
  color: #182333;
  font-size: 35px;
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.3;
}
.gallery-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-page .content .box div {
  color: #565969;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
  margin-top: 20px;
}
.gallery-page .content .box ul {
  margin: 0 -15px;
  text-align: left;
  display: flex;
 flex-wrap: wrap;
      align-self: stretch;
}
.gallery-page .content .box ul li {
  padding: 1px;
align-self: stretch;
 

}
.gallery-page .content .box ul li .imgbox {
  overflow: hidden;
  position: relative;
  padding: 5px;
  border-radius: 5px;
   display: flex;
  flex-direction: column;
    height: 100%;
}
.gallery-page .content .box ul li .imgbox .text {
  text-align: center;
  margin-top: 5px;
  flex: 1;
  width: 100%;
   height: 100%;
}
.gallery-page .content .box ul li .imgbox .text h5 {
  /*text-transform: uppercase;*/
  display: block;
  color: #ffffff;
  font-size: 18px;
  padding: 15px;
  /*white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;*/
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-radius: 0 15px 0 0;
  background-color: #333;
   height: 100%;
}
.gallery-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-page .content .box ul li .imgbox .text .con::-webkit-scrollbar-thumb {
  background: var(--color);
}
.gallery-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-page .content .box ul li .imgbox .textbox i {
  margin-bottom: 20px;
  font-size: 45px;
  color: var(--color);
}
.gallery-page .content .box ul li .imgbox .textbox i:hover {
  cursor: pointer;
}
.gallery-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-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-page .content .box ul li .imgbox:hover .text h5 {
  background: var(--color);
  color: #fff;
}
.gallery-page .content .box ul li:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gallery-page .content .box ul li:hover .imgbox .textbox {
  top: 0;
}
.gallery-page .content .box:nth-child(even) {
  background: #f8f8f8;
  padding: 90px 0;
}
@media screen and (max-width: 1440px) {
  .gallery-page .content .box ul li {
    width: 25%;
  }
}
@media screen and (max-width: 1100px) {
  .gallery-page .content .box ul li {
    width: 33.3333%;
  }
}
@media screen and (max-width: 992px) {
  .gallery-page .content .box ul li {
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .gallery-page .content .box p {
    font-size: 14px;
  }
  .gallery-page .content .box ul li {
    width: 100%;
  }
}
.advantages-page{
  position: relative;
  z-index: 1;
  padding: 7.877% 0 11.1112%;
}
.advantages-page::after{
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -30px;
  right: 0;
  font-size: 316px;
  line-height: 1;
  
  background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(240,241,243,.5)),to(rgba(240,241,243,0)));
  background-image: -webkit-linear-gradient(top,rgba(240,241,243,.5),rgba(240,241,243,0));
  background-image: -moz-linear-gradient(top,rgba(240,241,243,.5),rgba(240,241,243,0));
  background-image: linear-gradient(to bottom,rgba(240,241,243,.5),rgba(240,241,243,0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.advantages-page .header span{
  color: var(--color);
  font-weight: bold;
}
.advantages-page .header .title{
  margin-top: 10px;
}
.advantages-page .content{
  padding-top: 6.61%;
}
.advantages-page .content ul li{
  padding-bottom: 7.33%;
  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;
}
.advantages-page .content ul li .img{
  width: 41%;
  padding: 0 24px 19px 0;
  position: relative;
  z-index: 1;
}
.advantages-page .content ul li .img::after{
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 192px;
	height: 183px;
	background-color: var(--color);
}
.advantages-page .content ul li .text{
  width: 59%;
  padding-left: 70px;
}
.advantages-page .content ul li .text .top {
  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;
}
.advantages-page .content ul li .text .top span{
   font-size: 95px;
  line-height: 1;
  color: var(--color);
  
  display: inline-block;
  position: relative;
}
.advantages-page .content ul li .text .top span::after {
  content: '';
  width: 79px;
  height: 95px;
  background: url(../images/ad-bg.png) no-repeat;
  position: absolute;
  bottom: 10px;
  left: 0px;
}
.advantages-page .content ul li .text .top em {
  font-size: 36px;
  line-height: 1.2;
  
  padding-left: 5px;
  position: relative;
  z-index: 1;
}
.advantages-page .content ul li .text .con{
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0,0,0,0.8);
}
.advantages-page .content ul li:last-child{
  padding-bottom: 0;
}
.advantages-page .content 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;
}
.advantages-page .content ul li:nth-child(odd) .img img{
  border-radius: 189px 0px 0px 189px;
}
.advantages-page .content ul li:nth-child(even) .img{
  padding: 0 0 19px 24px;
}
.advantages-page .content ul li:nth-child(even) .img img{
  border-radius: 0px 189px 189px 0px;
}
.advantages-page .content ul li:nth-child(even) .img::after{
  left: 0;
  right: initial;
}
.advantages-page .content ul li:nth-child(even) .text{
  padding: 0 70px 0 0;
}
strong,
b{
  font-weight: bold;
}
@media screen and (max-width: 1680px) {
  .advantages-page:after{
    font-size: 220px;
    top: -22px;
  }
}
@media screen and (max-width: 1000px) {
  .advantages-page:after{
    display: none;
  }
  .advantages-page .content ul li .img{
    width: 100%;
  }
  .advantages-page .content ul li .text{
    width: 100%;
    padding: 20px 0 0 0;
  }
  .advantages-page .content ul li:nth-child(even) .text{
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 700px) {
  .advantages-page .content ul li .text .top em{
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 500px) {
  .advantages-page .content ul li .text .top em{
    font-size: 24px;
    line-height: 1.3;
  }
  .advantages-page .content ul li .text .con{
    font-size: 16px;
    line-height: 1.8;
  }
}

/*详情页第一块*/
.prodet-page .init-1 {
  /*margin-top: 90px;*/
}
.prodet-page .init-1 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.prodet-page .init-1 .container .left {
  width: 40%;
  /*height: 614px;*/
}
.prodet-page .init-1 .container .left a {
  /*height: 100%;*/
 
 display: block;
  width: 100%;
  background-color: #eeeeee;
  /*padding: 40px;*/
}
.prodet-page .init-1 .container .left .img_big {
   height: 600px;
    padding: 40px;
      display: flex;
  justify-content: center;
  align-items: center;
}
.prodet-page .init-1 .container .left a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.prodet-page .init-1 .container .right {
  width: 56%;
}
.prodet-page .init-1 .container .right .title {
  font-size: 36px;
  line-height: 1.4;
}
.prodet-page .init-1 .container .right .auth {
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
  margin-top: 40px;
}
.prodet-page .init-1 .container .right .share_list {
  margin-top: 16px;
}
.prodet-page .init-1 .container .right .share_list a {
  display: inline-block;
  margin-right: 30px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
}
.prodet-page .init-1 .container .right .share_list a i {
  margin-right: 4px;
}
.prodet-page .init-1 .container .right .des {
  font-size: 20px;
  line-height: 36px;
  margin-top: 25px;
  max-height: 355px;
    padding-right: 20px;
margin-bottom: 40px;
overflow: auto;
}
/*.prodet-page .init-1 .container .right .des li{
    list-style-type: inherit;
}*/

.prodet-page .init-1 .container .right .des li:before{
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #fff;
  vertical-align: middle;
  border-radius: 50%;
  margin-right: 10px;
}
.prodet-page .init-1 .container .right .des table{
   width:80%;
}
.prodet-page .init-1 .container .right .Auxil-through{
  padding-top: 138px;
  text-align: left;
}
.prodet-page .init-1 .container .right .more i {
  margin-left: 51px
}
.prodet-page .init-1 .container .left .swiper {
  margin-top: 30px;
  overflow: hidden;
}
.prodet-page .init-1 .container .left .swiper .swiper-wrapper {
  align-items: stretch
}
.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide {
  height: 140px;
  background-color: #eeeeee;


}
.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide a {
    display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /*background-color: #eeeeee;*/
  padding: 20px;
}
.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide a img {
  width: auto;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1500px) {
    .prodet-page .init-1 .container .left {
    width: 40%;
  }
  .prodet-page .init-1 .container .right {
    width: 56%;
  }
}
@media (max-width: 1000px){
  
  .about-page .about-2 .bottom{
    display: none
  }
.prodet-page .init-1 .container .left {
    width: 100%;
    /*height: 90vw;*/
  }
  .prodet-page .init-1 .container .right {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -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;
  }
  .prodet-page .init-1 .container .right > div {
    width: 100%;
  }
  .prodet-page .init-1 .container .left .swiper {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-top: 20px;
  }
  .prodet-page .init-1 .container .right .title {
    margin-top: 20px;
  }
  .prodet-page .init-1 .container .right .share_list {
    width: 100%;
  }
   .prodet-page .init-1 .container .right .Auxil-through{
    padding-top: 60px;
  }
  .prodet-page .init-1 .container .left .img_big{
    height: auto
  }
  .prodet-page .init-1 .container .right .more {
    width: 229px !important;
  }
}
@media (max-width: 700px){
   .prodet-page .init-1 .container .right .Auxil-through{
    padding-top: 30px;
  }
    .prodet-page .init-1 .container .right .share_list {
    display: none;
  }
  .contact-page .contact-1 ul li i{
    zoom: 0.8
  }
}
@media (max-width: 500px){
   .font-72 {
    font-size: 25px;
  }
   .prodet-page .init-1 .container .right .title {
    font-size: 18px;
    line-height: 32px;
  }
  .prodet-page .init-1 .container .right .auth {
    margin-top: 10px;
    font-size: 16px;
    line-height: 30px;
  }
  .prodet-page .init-1 .container .right .des {
    font-size: 16px;
    margin-top: 10px;
    line-height: 30px;
  }
  .prodet-page .init-1 .container .right .more {
    margin-top: 20px;
  }
   .contact-page .contact-1 ul li i{
    zoom: 0.6
  }
}

.product-page .sideLeft {
  width: 30% !important;
    position: -webkit-sticky;
  position: sticky;
  top: 120px
}
.product-page .sideLeft .top {
  /*background: #191919;*/
  padding: 35px 0 50px;
  margin-bottom: 20px;
}
.product-page .sideLeft .top .form {
  padding: 0 15px;
}
.product-page .sideLeft .top .form form {
  position: relative;
  height: 70px;
  border-radius: 34px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 5px;
}
.product-page .sideLeft .top .form input {
  width: 100%;
  height: 100%;
  background: transparent;
  /*color: white;*/
  font-size: 18px;
  border: none;
  padding: 0 20px;
  padding-right: 90px
}
.product-page .sideLeft .top .form input[type="submit"] {
  position: absolute;
  right: 10px;
  border-radius: 100%;
  width: 58px;
  height: 58px;
  background: url(../images/search.png) no-repeat center var(--color);
  padding: 0;
}
.product-page .sideLeft .top .nav .font-30 {
  /*color: white;*/
  line-height: 1.1;
  padding: 0 15px;
  margin: 30px 0;
}
.product-page .sideLeft .top .nav ul li > a {
  position: relative;
  padding: 15px 15px;
  /*color: white;*/
  font-size: 20px;
  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;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1;
}
.product-page .sideLeft .top .nav ul li > a::before {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 100%;
  border-left: 0px solid transparent;
  border-bottom: 0px solid #a48b00;
  border-right: 9px solid #a48b00;
  border-top: 9px solid transparent;
  opacity: 0;
}
.product-page .sideLeft .top .nav ul li{
  position: relative;
}
.product-page .sideLeft .top .nav ul li.active ul{
  display: block
}
.product-page .sideLeft .top .nav ul li ul{
  padding-left: 30px
}
.product-page .sideLeft .top .nav ul li img.dec{
  position: absolute;
  right: 5px;
  top: 20px;
  z-index: 9;
  cursor: pointer;
  filter: invert(100);
  transition: .5s;
}
.product-page .sideLeft .top .nav ul li img.dec.active{
  transform: rotate(90deg)
}
.product-page .sideLeft .top .nav ul li > a::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 9px;
  height: 100%;
  background: var(--color);
  opacity: 0;
}
.product-page .sideLeft .top .nav ul li:hover>a,
.product-page .sideLeft .top .nav ul li.active>a {
  background: -webkit-gradient(linear, left top, right top, from(var(--base-color)), to(transparent));
  background: -webkit-linear-gradient(left, var(--color), transparent);
  background: -moz-linear-gradient(left, var(--color), transparent);
  background: linear-gradient(to right, var(--color), transparent);
  color: #ffffff;
}
.product-page .sideLeft .top .nav ul li:hover>a::before,
.product-page .sideLeft .top .nav ul li.active >a::before,
.product-page .sideLeft .top .nav ul li:hover>a::after,
.product-page .sideLeft .top .nav ul li.active >a::after {
  opacity: 1;
}
/*.product-page .sideLeft .top .nav ul li ul li.active a,
.product-page .sideLeft .top .nav ul li ul li:hover a{
  color: var(--color);
}*/
.product-page .sideLeft .bottom {
  /*background: url(../images/product-side-bg.jpg) no-repeat;*/
  background-size: cover;
  padding: 365px 15px 20px;
}
.product-page .sideLeft .bottom p {
  font-size: 19px;
  line-height: 1;
  color: white;
  font-weight: bold;
  text-align: center;
  font-family: 'mic';
}
.product-page .sideRight {
  width: 70% !important;
  padding-left: 75px;
}
.product-page .sideRight .Auxil-catdes {
  line-height: 30px;
  opacity: 0.51;
  margin: 20px 0 45px;
}
.product-page .sideRight ul {
  margin: -10px;
}
.product-page .sideRight ul li {
  padding: 10px;
  text-align: center;
}
.product-page .sideRight ul li .img-box {
  border-radius: 10px;
  background: #f5f5f5;
  /*padding: 36px 50px;*/
  padding: 0 20px;
}
.product-page .sideRight ul li p {
  font-size: 16px;
  line-height: 2;
  color: #6d6d6d;
  margin: 15px 0 30px;
}

@media screen and (max-width: 1000px) {
   .product-page .sideLeft {
    display: none;
  }
  .product-page .sideRight {
    width: 100% !important;
    padding-left: 0;
  }
}

.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;
}
.solu-5 ul.solulist2 li .text span {
  text-transform: uppercase;
  color: #000;
  opacity: .5;
}
.solu-5 ul.solulist2 li .text P {
  margin-top: 15px;
}
.solu-5 ul.solulist2 li .imgbox {
  /*width: -webkit-calc(100% - 520px);
  width: -moz-calc(100% - 520px);
  width: calc(100% - 520px);*/
  width: 55%
}
.solu-5 ul.solulist2 li .imgbox img{
  width: 100%
}
.solu-5 ul.solulist2 li:nth-child(2n) .text{
    order: -1;
  }
@media screen and (max-width: 1000px) {
    .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) .text{
    order: 0;
  }
}
@media screen and (max-width: 700px) {
  .solu-5 ul.solulist2 li .text .h3{
    padding-left: 20px;
  }
}


#header .nav .ui.menu .h-language ul.sub-menu li a{
  display: flex;
  align-items: center;
  justify-content: flex-start
}
#header .nav .ui.menu .h-language ul.sub-menu li a img{
margin-right: 0;
margin-right: 5px
}