@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.eot');
  src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), 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-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.eot');
  src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), 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-display: swap;
}
body {
  --color: #205a98;
  max-width: 1920px;
  margin: 0 auto;
  font-family: 'Montserrat';
  font-weight: 500;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.container {
  padding: 0 15px;
  position: relative;
  width: 1650px;
  margin: 0 auto;
}
.more {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  background-color: var(--color);
  color: #fff;
  border-radius: 5px;
  padding: 7px 43px 5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 0;
}
.more::after {
  content: "";
  z-index: -1;
  width: 0;
  height: -webkit-calc(301%);
  height: -moz-calc(301%);
  height: calc(301%);
  position: absolute;
  translate: -50% -50%;
  inset: 50%;
  rotate: 15deg;
  background-color: #4ca3cb;
  -webkit-transition: 1000ms cubic-bezier(0.83, 0, 0.17, 1);
  -moz-transition: 1000ms cubic-bezier(0.83, 0, 0.17, 1);
  transition: 1000ms cubic-bezier(0.83, 0, 0.17, 1);
}
.more.white {
  background: #fff;
  color: var(--color);
}
.more.white:hover {
  color: #fff;
}
.more:hover::after {
  width: -webkit-calc(610%);
  width: -moz-calc(610%);
  width: calc(610%);
}
#header {
  z-index: 20;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .h-top .info {
  color: #222;
}
#header .h-top .info span {
  color: var(--color);
  text-decoration: underline;
}
#header .h-top .share {
  margin: 0 0 0 auto;
}
#header .h-top .share a {
  display: inline-block;
  margin-right: 17px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .h-top .share a:last-child {
  margin-right: 0;
}
#header .h-top .share a:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}
#header .nav {
  position: absolute;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .menu-box {
  margin: 0 0 0 auto;
}
#header .nav .menu-box ul.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .menu-box ul.menu > li {
  font-weight: bold;
  margin-right: 2em;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  text-transform: uppercase;
  color: #fff;
}
#header .nav .menu-box ul.menu > li::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .menu-box ul.menu > li > a {
  line-height: 1;
}
#header .nav .menu-box ul.menu > li > a i {
  position: absolute;
  right: 0;
  top: 30%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}
#header .nav .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: 14px;
  background: #fff;
  top: 130%;
  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 .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
  white-space: nowrap;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
  background: none;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li:hover a {
  color: #fff;
}
#header .nav .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 .menu-box ul.menu > li:hover::after,
#header .nav .menu-box ul.menu > li.active::after {
  width: 100%;
}
#header .nav .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .h-search {
  cursor: pointer;
}
#header .nav .yuy span {
  line-height: 1;
  color: #fff;
}
#header .nav .yuy span i {
  display: block;
  margin-top: -3px;
}
#header .nav .yuy ul {
  left: initial;
  right: 0;
  z-index: 100;
}
#header .nav .msg {
  padding: 7px 26px 5px 25px;
}
#header.active {
  top: -47px;
}
#header.inner .nav,
#header.active .nav {
  background: var(--color);
}
.text-color {
  color: var(--color);
}
.font-500 {
  font-weight: 500;
}
#banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#banner ul li {
  position: relative;
  padding-bottom: 32px;
}
#banner ul li > img {
  width: 100%;
}
#banner ul li .text {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
}
#banner ul li .text .left {
  width: 44.98%;
  padding-top: 10.425%;
}
#banner ul li .text .right {
  width: 55.02%;
  -webkit-transform: translateX(130%);
  -moz-transform: translateX(130%);
  -ms-transform: translateX(130%);
  transform: translateX(130%);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul li .text .tit {
  line-height: 1;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul li .arrow {
  position: absolute;
  z-index: 2;
  top: 62%;
  left: 42%;
  /*width: 2.66em;
  height: 2.66em;*/
  background-color: rgba(255, 255, 255, 0.2);
  /*border: 3px solid #fff;
  border-radius: 50%;*/
  font-size: 41px;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#banner ul .swiper-slide-active .text .tit {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
#banner ul .swiper-slide-active .text .right {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition-delay: .6s;
  -moz-transition-delay: .6s;
  transition-delay: .6s;
}
#banner .wz {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 288px;
  font-weight: bold;
  line-height: 0.93;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.05)), color-stop(5%, rgba(255, 255, 255, 0.05)), color-stop(10%, rgba(255, 255, 255, 0.3)), color-stop(30%, rgba(255, 255, 255, 0.3)), color-stop(60%, #ffffff), color-stop(80%, #ffffff), to(#ffffff));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 5%, rgba(255, 255, 255, 0.3) 10%, rgba(255, 255, 255, 0.3) 30%, #ffffff 60%, #ffffff 80%, #ffffff 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 5%, rgba(255, 255, 255, 0.3) 10%, rgba(255, 255, 255, 0.3) 30%, #ffffff 60%, #ffffff 80%, #ffffff 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 5%, rgba(255, 255, 255, 0.3) 10%, rgba(255, 255, 255, 0.3) 30%, #ffffff 60%, #ffffff 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.tr_5 {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.font-18 {
  line-height: 1.6;
}
.font-16 {
  line-height: 1.8;
}
.font-14 {
  line-height: 2;
}
.font-30 {
  line-height: 1.2;
}
.title,
.i-title {
  font-weight: bold;
}
.i-tag {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  color: #1b1b1b;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  display: block;
  padding-bottom: 21px;
}
.i-title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
}
.i-title em {
  color: var(--color);
}
@-webkit-keyframes img {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-moz-keyframes img {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes img {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
#index-body .i-solu {
  padding: 5.89% 0 7.5521%;
}
#index-body .i-solu ul {
  margin: -24px;
}
#index-body .i-solu ul li {
  padding: 24px;
  height: auto;
}
#index-body .i-solu ul li .ig {
  background-color: #efefef;
  border-radius: 10px;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
#index-body .i-solu ul li .ig .top .tit {
  line-height: 1.1;
}
#index-body .i-solu ul li .ig .top span {
  line-height: 1;
  color: transparent;
  background-image: -webkit-linear-gradient(58deg, #1c5d94 0%, #4ca3cb 100%), -webkit-linear-gradient(#ffffff, #ffffff);
  background-image: -moz-linear-gradient(58deg, #1c5d94 0%, #4ca3cb 100%), -moz-linear-gradient(#ffffff, #ffffff);
  background-image: linear-gradient(32deg, #1c5d94 0%, #4ca3cb 100%), linear-gradient(#ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
  padding-right: 6px;
  text-decoration: underline;
}
#index-body .i-solu ul li .ig .text {
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-solu ul li .ig .text .con {
  line-height: 1.6;
  width: 66%;
}
#index-body .i-solu ul li .ig .text .link {
  line-height: 1;
}
#index-body .i-solu ul li .ig::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-solu ul li .ig:hover .img {
  opacity: 0;
}
#index-body .i-solu ul li .ig:hover .top {
  color: #fff;
}
#index-body .i-solu ul li .ig:hover .top span {
  color: #fff;
}
#index-body .i-solu ul li .ig:hover .text {
  opacity: 1;
}
#index-body .i-solu ul li .ig:hover::after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .i-product {
  padding-bottom: 6.9271%;
}
#index-body .i-product .top {
  height: 705px;
  position: relative;
}
#index-body .i-product .top .img ul li {
  /*position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  z-index: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;*/
}
#index-body .i-product .top .img ul li.zIndex {
  opacity: 1;
  z-index: 1;
}
#index-body .i-product .top .img ul li.active {
  opacity: 1;
  z-index: 2;
  -webkit-animation: img 0.5s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  -moz-animation: img 0.5s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  animation: img 0.5s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
}
#index-body .i-product .top .text {
  width: 32%;
  top: 76px;
  right: 103px;
  color: #fff;
  z-index: 3;
}
#index-body .i-product .top .text ul li .title {
  line-height: 1.2;
}
#index-body .i-product .top .text ul li .img-box img {
  width: auto;
  display: inline-block;
}
#index-body .i-product .top .slickDots li {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin: 0 20px 0 0;
}
#index-body .i-product .top .slickDots li::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index-body .i-product .top .slickDots li.slick-active {
  border-color: #fff;
}
#index-body .i-product .top .slickDots li:last-child {
  margin-right: 0;
}
#index-body .i-product .bottom .item {
  display: none;
}
#index-body .i-product .bottom .item.active {
  display: block;
}
#index-body .i-product .bottom ul {
  margin: 0 -5px;
}
#index-body .i-product .bottom ul .slick-slide{
  height: auto;
}
#index-body .i-product .bottom ul .slick-slide > div{
  height: 100%;
}
#index-body .i-product .bottom ul li {
  padding: 0 5px 17px;
  height: 100%;
}
#index-body .i-product .bottom ul li .ig {
  background-color: #efefef;
  position: relative;
  z-index: 1;
  height: 100%;
}
#index-body .i-product .bottom ul li .ig .text {
  border-top: 1px solid #dedede;
}
#index-body .i-product .bottom ul li .ig .title {
  color: #181818;
}
#index-body .i-product .bottom ul li .ig .con {
  color: #5f5f5f;
  font-weight: 400;
  line-height: 1.43;
}
#index-body .i-product .bottom ul li .ig .link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  background-color: #181818;
  font-size: 16px;
  position: absolute;
  left: 50%;
  bottom: -17px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#index-body .i-product .bottom ul li .ig .link i {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .bottom ul li .ig::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  border-radius: 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .bottom ul li .ig:hover {
  color: #fff;
}
#index-body .i-product .bottom ul li .ig:hover .title,
#index-body .i-product .bottom ul li .ig:hover .con {
  color: #fff;
}
#index-body .i-product .bottom ul li .ig:hover .link {
  background-image: -webkit-linear-gradient(58deg, #1c5d94 0%, #4ca3cb 100%), -webkit-linear-gradient(#ffffff, #ffffff);
  background-image: -moz-linear-gradient(58deg, #1c5d94 0%, #4ca3cb 100%), -moz-linear-gradient(#ffffff, #ffffff);
  background-image: linear-gradient(32deg, #1c5d94 0%, #4ca3cb 100%), linear-gradient(#ffffff, #ffffff);
}
#index-body .i-product .bottom ul li .ig:hover .link i {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#index-body .i-product .bottom ul li .ig:hover::after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .i-product .slickBtn {
  font-size: 38px;
}
#index-body .i-product .slickBtn div {
  width: auto;
  height: auto;
  background: transparent;
  color: #000;
}
#index-body .i-product .slickBtn div:hover {
  color: var(--color);
}
#index-body .i-about {
  padding-top: 5.625%;
  z-index: 1;
}
#index-body .i-about .left {
  width: 43.77%;
}
#index-body .i-about .left a {
  display: inline-block;
  color: var(--color);
  text-decoration: underline;
  font-style: italic;
}
#index-body .i-about .right {
  color: #181717;
  width: 49.57%;
}
#index-body .i-about .right h1 {
  display: inline;
}
#index-body .i-about .right a {
  color: var(--color);
  text-decoration: underline;
}
#index-body .i-about .data {
  position: relative;
  z-index: 1;
}
#index-body .i-about .data ul li {
  position: relative;
}
#index-body .i-about .data ul li .num em {
  font-size: 120px;
  line-height: 1;
  color: var(--color);
  /*color: transparent;
  background-image: -webkit-linear-gradient(58deg, #1c5d94 0%, #4ca3cb 100%), -webkit-linear-gradient(#ffffff, #ffffff);
  background-image: -moz-linear-gradient(58deg, #1c5d94 0%, #4ca3cb 100%), -moz-linear-gradient(#ffffff, #ffffff);
  background-image: linear-gradient(32deg, #1c5d94 0%, #4ca3cb 100%), linear-gradient(#ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;*/
}
#index-body .i-about .data ul li .num sub {
  line-height: 1;
}
#index-body .i-about .data ul li p {
  color: #777777;
  max-width: 332px;
}
#index-body .i-about .data ul li::after {
  content: '';
  position: absolute;
  top: 19px;
  right: -106px;
  width: 1px;
  height: 203px;
  background-color: #d6d6d6;
}
#index-body .i-about .data ul li:last-child::after {
  display: none;
}
#index-body .i-about .img {
  width: 93.2vw;
  margin-top: -10%;
}
#index-body .i-about::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 54.468%;
  background-color: #f9f9f9;
}
#index-body .i-why {
  padding-bottom: 6.67%;
}
#index-body .i-why .header {
  max-width: 841px;
  margin: 0 auto;
}
#index-body .i-why .header .con {
  color: #181818;
  font-weight: 400;
}
#index-body .i-why .left {
  width: 66.17%;
}
#index-body .i-why .left ul {
  margin: -11.5px -11px;
}
#index-body .i-why .left ul li {
  padding: 11.5px 11px;
  height: auto;
}
#index-body .i-why .left ul li .ig {
  height: 100%;
  background-color: #efefef;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index-body .i-why .left ul li .ig .icon {
  width: 65px;
  height: 66px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 3px 1px 6px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 1px 6px 1px rgba(0, 0, 0, 0.1);
}
#index-body .i-why .left ul li .ig .title {
  line-height: 1.2;
}
#index-body .i-why .left ul li .ig .title i {
  color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-why .left ul li .ig .con {
  color: #181717;
}
#index-body .i-why .left ul li .ig::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-why .left ul li .ig:hover {
  color: #fff;
}
#index-body .i-why .left ul li .ig:hover .title i {
  color: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#index-body .i-why .left ul li .ig:hover .con {
  color: #fff;
}
#index-body .i-why .left ul li .ig:hover::after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .i-why .right {
  width: 33.83%;
}
#index-body .i-why .right img {
  height: 100%;
}
#index-body .i-why .right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1d5d94;
  opacity: .3;
}
#index-body .i-app {
  background-color: #f9f9f9;
  padding: 5.89% 0 6.875%;
}
#index-body .i-app .header .con {
  color: #181818;
  font-weight: 400;
  font-style: italic;
}
#index-body .i-app .header .link {
  width: 73px;
  height: 72px;
  border-radius: 50%;
  background: #181818;
  color: #fff;
  font-size: 38px;
  margin-bottom: 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-app .header .link i {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-app .header .link:hover {
  background: var(--color);
}
#index-body .i-app .header .link:hover i {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#index-body .i-app .content ul {
  margin: -12.5px -10.5px;
}
#index-body .i-app .content ul li {
  padding: 12.5px 10.5px;
}
#index-body .i-app .content ul li:not(:nth-child(2)) {
  width: 25.473%;
}
#index-body .i-app .content ul li:nth-child(2) {
  width: 49.054%;
}
#index-body .i-app .content ul li:nth-child(4),
#index-body .i-app .content ul li:nth-child(5) {
  position: absolute;
  bottom: 0;
}
#index-body .i-app .content ul li:nth-child(4) {
  left: 0;
}
#index-body .i-app .content ul li:last-child {
  right: 0;
}
#index-body .i-news {
  padding-top: 6.146%;
}
#index-body .i-news .header .con {
  color: #181818;
  font-weight: 400;
}
#index-body .i-news .left {
  width: 48.642%;
  height: auto;
}
#index-body .i-news .left ul {
  height: 100%;
}
#index-body .i-news .left ul li {
  height: 100%;
}
#index-body .i-news .left .img-box {
  height: 100%;
}
#index-body .i-news .left .img-box img {
  height: 100%;
}
#index-body .i-news .left .img-box .text {
  color: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
#index-body .i-news .left .img-box .text .tit {
  line-height: 1.21;
  max-width: 654px;
  font-weight: 400;
}
#index-body .i-news .left .img-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(43, 43, 43, 0)), to(#2b2b2b));
  background: -webkit-linear-gradient(top, rgba(43, 43, 43, 0) 40%, #2b2b2b 100%);
  background: -moz-linear-gradient(top, rgba(43, 43, 43, 0) 40%, #2b2b2b 100%);
  background: linear-gradient(to bottom, rgba(43, 43, 43, 0) 40%, #2b2b2b 100%);
}
#index-body .i-news .right {
  width: 51.358%;
}
#index-body .i-news .right ul {
  margin-bottom: -35px;
}
#index-body .i-news .right ul .slick-list {
  display: block;
}
#index-body .i-news .right ul .img-box {
  width: 28.609%;
}
#index-body .i-news .right ul .img-box time {
  right: 13px;
  bottom: 5px;
  color: #fff;
}
#index-body .i-news .right ul .img-box time em {
  font-style: italic;
}
#index-body .i-news .right ul .text {
  width: 71.391%;
}
#index-body .i-news .right ul .text .title {
  line-height: 1.41;
  color: #181818;
}
#index-body .i-news .right ul .text .title:hover {
  color: var(--color);
  text-decoration: underline;
}
#index-body .i-news .right ul .text .con {
  line-height: 1.5;
  color: #181717;
}
#index-body .i-news .right ul li {
  margin-bottom: 35px;
}
#index-body .i-exhibition {
  padding: 6.25% 0 15px;
}
#index-body .i-exhibition .i-title {
  color: var(--color);
}
#index-body .i-exhibition .con {
  color: #181818;
  font-weight: 400;
  max-width: 900px;
  margin: 24px auto 0;
}
#footer {
  background-color: #1d5d94;
  color: #fff;
  position: relative;
  z-index: 1;
  background-size: 100% auto;
  border-top: 1px solid rgba(113, 105, 96, 0.2);
}
#footer .title {
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  margin: 11px 0 30px 0;
}
#footer ul li {
  font-size: 18px;
  line-height: 2;
}
#footer ul li a {
  display: inline-block;
  position: relative;
}
#footer ul li a::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer ul li a:hover::after {
  width: 100%;
}
#footer ul li:last-child {
  margin-bottom: 0;
}
#footer ul li ul {
  display: none;
}
#footer .f-nav .share a {
  margin-right: 12px;
}
#footer .f-nav .share a:last-child {
  margin-right: 0;
}
#footer .f-contact {
  max-width: 360px;
}
#footer .f-form {
  width: 24%;
}
#footer .f-form .f-logo {
  display: inline-block;
  margin-bottom: 14px;
}
#footer .f-form ul li {
  position: relative;
  margin-bottom: 14px;
}
#footer .f-form ul li input {
  width: 100%;
  height: 28px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  padding: 0 9px;
}
#footer .f-form ul li input::-webkit-input-placeholder {
  color: rgba(223, 223, 223, 0.6);
}
#footer .f-form ul li input:-moz-placeholder {
  color: rgba(223, 223, 223, 0.6);
}
#footer .f-form ul li input::-moz-placeholder {
  color: rgba(223, 223, 223, 0.6);
}
#footer .f-form ul li input:-ms-input-placeholder {
  color: rgba(223, 223, 223, 0.6);
}
#footer .f-form ul li input::placeholder {
  color: rgba(223, 223, 223, 0.6);
}
#footer .f-form ul li input:focus {
  border-width: 2px;
}
#footer .f-form ul li img {
  position: absolute;
  right: 0;
  bottom: 4px;
  height: 37px;
}
#footer .f-form p {
  line-height: 1.4;
  margin-top: 12px;
}
#footer .f-form button {
  width: 100%;
  display: block;
  font-size: 22px;
  padding: 11px 0 8px;
  margin-top: 31px;
}
#footer .f-copy {
  background: #181818;
  font-size: 14px;
  line-height: 2;
}
#footer svg {
  max-height: 26px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  fill: #fff;
}
#footer svg text {
  fill: #fff;
}
@media (max-width: 1700px) {
  #header .nav .menu-box ul.menu > li {
    margin-right: 1em;
  }
  #banner .wz {
    font-size: 242px;
  }
  #index-body .i-product .top {
    height: 605px;
  }
  #index-body .i-product .top .text ul li .title {
    font-size: 42px;
  }
  #index-body .i-product .slickBtn div.prev {
    right: 100%;
  }
  #index-body .i-product .slickBtn div.next {
    left: 100%;
  }
  #index-body .i-about .img {
    width: 97vw;
  }
  #index-body .i-about .data ul li .num em {
    font-size: 90px;
  }
  #index-body .i-about .data ul li::after {
    right: -89px;
    height: 170px;
  }
  .i-title {
    font-size: 50px;
  }
}
@media (max-width: 1450px) {
  #header .nav .logo {
    zoom: .7;
  }
  #header .nav .h-search {
    margin-left: 20px;
  }
  #header .nav .msg {
    font-size: 16px;
    padding: 7px 16px 5px;
  }
  #banner .wz {
    font-size: 208px;
  }
  #index-body .i-solu ul li .ig .text .tp {
    zoom: .8;
  }
  #index-body .i-product .top .text {
    width: 36%;
    right: 60px;
  }
  #index-body .i-about .data ul li .num em {
    font-size: 60px;
  }
  #index-body .i-about .data ul li p {
    max-width: 290px;
  }
  #index-body .i-about .data ul li::after {
    height: 130px;
  }
  .fixed-toolbar {
    right: 10px;
  }
}
@media (max-width: 1250px) {
  #banner ul li .arrow {
    top: 64%;
    left: 36%;
    width: 2.66em;
    height: 2.66em;
    font-size: 30px;
  }
  #banner .wz {
    font-size: 167px;
  }
  #index-body .i-solu ul li .ig .text .tp {
    zoom: .6;
  }
  #index-body .i-solu ul li .ig .text .con {
    width: 80%;
  }
  #index-body .i-product .top {
    height: 500px;
  }
  #index-body .i-product .top .text {
    top: 30px;
    right: 30px;
  }
  #index-body .i-product .top .text ul li .title {
    font-size: 32px;
  }
  .i-title {
    font-size: 40px;
  }
  #index-body .i-about .data ul li p {
    max-width: 252px;
  }
  #index-body .i-about .data ul li .num em {
    font-size: 46px;
  }
  #index-body .i-about .data ul li::after {
    height: 107px;
    right: -47px;
  }
  #index-body .i-news .right ul .img-box time {
    zoom: .7;
  }
  #footer .f-content {
    zoom: .8;
  }
}
@media (max-width: 1000px) {
  #banner .arrow {
    display: none;
  }
  #banner .wz {
    display: none;
  }
  .font-22 {
    font-size: 20px;
  }
  .font-18 {
    font-size: 16px;
  }
  #index-body .i-product .top {
    height: auto;
  }
  #index-body .i-product .top .text {
    position: initial;
    width: 100%;
    color: #000;
  }
  #index-body .i-product .top .text .more {
    background: var(--color);
    color: #fff;
  }
  #index-body .i-product .top .img {
    display: none;
  }
  #index-body .i-product .top .slickDots li::after {
    background: #000;
  }
  #index-body .i-product .top .slickDots li.slick-active {
    border-color: #000;
  }
  #index-body .i-about .left a {
    display: none;
  }
  #index-body .i-about .right {
    margin-top: 20px;
  }
  #index-body .i-about .data ul li::after {
    display: none;
  }
  #index-body .i-about::after {
    height: 100%;
  }
  #index-body .i-why .left {
    width: 100%;
  }
  #index-body .i-why .right {
    display: none;
  }
  #index-body .i-news .left {
    display: none;
  }
  #index-body .i-news .right {
    width: 100%;
    padding-left: 0;
  }
  #index-body .i-solu ul {
    margin: -12px;
  }
  #index-body .i-solu ul li {
    padding: 12px;
  }
  #index-body .i-solu ul li .ig {
    padding-bottom: 20px;
  }
  #index-body .i-solu ul li .ig .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    color: #fff;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  #index-body .i-solu ul li .ig .top span {
    color: #fff;
    margin-bottom: 10px;
  }
  #index-body .i-solu ul li .ig .img {
    display: none;
  }
  #index-body .i-solu ul li .ig .text {
    position: initial;
    opacity: 1;
    padding: 20px 0 0 0;
  }
  #index-body .i-solu ul li .ig .text .con {
    width: 100%;
  }
  #index-body .i-solu ul li .ig .text .link {
    margin-top: 10px;
  }
  #index-body .i-solu ul li .ig::after {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  #footer .f-content {
    zoom: 1;
  }
  #footer .f-content ul li {
    font-size: 16px;
  }
  #footer .f-content .f-nav,
  #footer .f-content .f-product {
    display: none;
  }
  #footer .f-content .f-contact {
    width: 50%;
  }
  #footer .f-content .f-form {
    width: 47%;
  }
}
@media (max-width: 700px) {
  #index-body .i-about .data {
    margin-top: 20px;
  }
  #index-body .i-about .data ul li {
    margin-bottom: 10px;
  }
  #index-body .i-about .data ul li p {
    max-width: 100%;
  }
  #index-body .i-about .data ul li:last-child {
    margin-bottom: 0;
  }
  .font-26 {
    font-size: 20px;
  }
  #index-body .i-app .header .link {
    margin-top: 20px;
  }
  .i-title {
    font-size: 36px;
  }
  #footer {
    padding-top: 30px;
  }
  #footer .f-content .f-contact,
  #footer .f-content .f-form {
    max-width: 100%;
    width: 100%;
  }
  #footer .f-content .f-form {
    margin-top: 20px;
  }
  .flex-3 > * {
    width: 50%;
  }
}
@media (max-width: 500px) {
  #banner ul li .text .box {
    padding: 0;
  }
  #banner ul li .text .left {
    padding-bottom: 30px;
  }
  #banner ul li .text .left .tit {
    font-size: 20px;
  }
  .i-title {
    font-size: 30px;
  }
  #index-body .i-product .top .text {
    padding: 0 15px;
  }
  #index-body .i-news .right ul .img-box {
    width: 100%;
  }
  #index-body .i-news .right ul .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .flex-2 > *,
  .flex-3 > * {
    width: 100%;
  }
}
@-webkit-keyframes transAni2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}
@-moz-keyframes transAni2 {
    0% {
        -moz-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        -moz-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}
@-o-keyframes transAni2 {
    0% {
        -o-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -o-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}
@keyframes transAni2 {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}
.inner_banner {
  position: relative;
  z-index: 0;
   margin-top: 90px;
}
.inner_banner .textAniC{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.inner_banner .textAniC .text .c{
  font-size: 276px;
  font-weight: bold;
  text-transform: uppercase;
  color: #f6f6f6;
  line-height: 0.9;
  white-space: nowrap;
  width: 5000px;
 -webkit-animation: transAni2 60s linear infinite;
  -moz-animation: transAni2 60s linear infinite;
  animation: transAni2 60s linear infinite;
}
.inner_banner .container{
  position: relative;
  z-index: 2;
}
.inner_banner .innerBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.inner_banner .cont {
  padding: 100px 0 120px 0;
}
.inner_banner .cont .title {
  font-weight: bold;
}
.inner_banner .cont .mbx {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  margin-top: 10px;
}
.inner_banner .cont .mbx span {
  font-size: 20px;
  padding-left: 20px;
  position: relative;
}
.inner_banner .cont .mbx a {
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inner_banner .cont .mbx a:hover {
  color: var(--color);
}
.inner_banner .cont .mbx a:first-child {
  padding-left: 0;
}
.inner_banner .cont .mbx a:first-child::before {
  display: none;
}
.inner_banner .cont .mbx a:before,
.inner_banner .cont .mbx span:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 2px;
  top: 13px;
  left: 7px;
  background-color: #000;
}
.inner-page .m-page {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
}
.inner-page .m-page a,
.inner-page .m-page span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-size: 20px;
    font-weight: 700;
    line-height: 37px;
    border:1px solid #999;
    margin-right: 5px;
}
.inner-page .m-page a.next{
  margin-left: 20px;
}
.inner-page .m-page a:hover,.inner-page .m-page span.current {
    background: var(--color);
    color: #fff;
    border:1px solid var(--color);
}
@media (max-width: 1500px) {
  .inner_banner .textAniC{
    top: 34px;
  }
  .inner_banner .textAniC .text .c{
    font-size: 240px;
  }
}
@media (max-width: 1250px) {
  #innerMobileBanner{
    margin-top: 60px;
  }
  .inner_banner .textAniC{
    top: 40px;
  }
  .inner_banner .textAniC .text .c{
    font-size: 260px;
  }
}
@media (max-width: 1000px) {
  .inner_banner {
    margin-top: 40px;
  }
  .inner_banner .textAniC .text .c{
    font-size: 160px;
  }
  .inner_banner .cont {
    padding: 40px 0;
  }
}
@media (max-width: 700px) {
  .inner_banner .textAniC .text .c{
    font-size: 100px;
  }
}
@media (max-width: 500px) {
  .inner_banner .textAniC{
    top: 30px;
  }
  .inner_banner .textAniC .text .c{
    font-size: 80px;
  }
  .inner-page .m-page{
    margin-top: 40px;
  }
}
.news-page .news-tab ul {
  margin: -6px;
}
.news-page .news-tab ul li {
  padding: 6px;
}
.news-page .news-tab ul li a {
  display: inline-block;
  background: #fff;
  font-size: 20px;
  line-height: 1.8;
  padding: 9px 23px 8px;
  border-radius: 6px;
}
.news-page .news-tab ul li a:hover,
.news-page .news-tab ul li a.active {
  background: var(--color);
  color: #fff;
}
.news-page .news-list {
  margin-top: 70px;
}
.news-page .news-list1{
  margin-top: 0;
}
.news-page .news-list ul li .img-box {
  border-radius: 15px 15px 0 0;
}
.news-page .news-list ul li .text {
  background: #f6f7f9;
  border-radius:10px;
  padding: 30px;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 14px;
  line-height: 2;
  height: 100%;
}
.news-page .news-list ul li .text .top span {
  font-size: 14px;
  background: var(--color);
  color: #fff;
  display: inline-block;
  padding: 0 22px;
  line-height: 36px;
  border-radius: 6px;
}
.news-page .news-list ul li .text .top time {
  font-size: 16px;
  line-height: 30px;
  color: #4B4B4B;
}
.news-page .news-list ul li .text .tit {
  font-weight: bold;
  line-height: 1.6;
  margin-top: 20px;
  color: #151515;
}
.news-page .news-list ul li .text .tit:hover {
  color: var(--color);
}
.news-page .news-list ul li .text .more2 {
  display: block;
  background-color: var(--color);
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  opacity: 0;
  overflow: hidden;
}
.news-page .news-list ul li .text .more2 span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/green-ohm/2026/03/09/arrow.png) center center no-repeat;
  background-size: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.news-page .news-list ul li .text .more2::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 100%;
  opacity: 0;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, -webkit-transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, -webkit-transform 0s 0.45s;
  -moz-transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s, -moz-transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s, -webkit-transform 0s 0.45s, -moz-transform 0s 0.45s;
}
.news-page .news-list ul li .text .more2:hover::after {
  opacity: 1;
  border-radius: 0;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -moz-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -moz-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news-page .news-list ul li:hover .text {
  background: #f4f9ff;
}
.news-page .news-list ul li:hover .text .more2 {
  opacity: 1;
}
.newdet-page .sideBox .sideLeft {
  width: 27%;
  position: -webkit-sticky;
  position: sticky;
  top: 145px;
  left: 0;
}
.newdet-page .sideBox .sideLeft .back .pageBackbtn {
  display: inline-block;
  background-color: var(--color);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: top;
  position: relative;
}
.newdet-page .sideBox .sideLeft .back .pageBackbtn span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/fh.png) center center no-repeat;
  background-size: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.newdet-page .sideBox .sideLeft .back .pageBackbtn::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 100%;
  opacity: 0;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, -webkit-transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, -webkit-transform 0s 0.45s;
  -moz-transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s, -moz-transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s, -webkit-transform 0s 0.45s, -moz-transform 0s 0.45s;
}
.newdet-page .sideBox .sideLeft .back .pageBackwz {
  display: inline-block;
  font-size: 20px;
  color: #000000;
  line-height: 46px;
  vertical-align: top;
  margin-left: 14px;
}
.newdet-page .sideBox .sideLeft .back:hover .pageBackbtn::after {
  opacity: 1;
  border-radius: 0;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -moz-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -moz-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.newdet-page .sideBox .sideRight {
  width: 73%;
}
.newdet-page .sideBox .sideRight .category {
  background: var(--color);
  text-align: center;
  display: inline-block;
  font-size: 20px;
  color: #fff;
  line-height: 46px;
  border-radius: 45px;
  padding: 0 23px;
  margin-bottom: 64px;
}
.newdet-page .sideBox .sideRight h1 {
  font-size: 36px;
  line-height: 1.4;
}
.newdet-page .sideBox .sideRight time {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #4B4B4B;
  margin: 30px 0 30px;
}
.newdet-page .sideBox .sideRight .content {
  font-size: 20px;
  color: #333;
  line-height: 1.8;
  word-break: break-word;
}
@media screen and (max-width: 1250px) {
  .news-page .news-list ul li .text {
    padding: 30px 15px;
  }
  .news-page .news-list ul li .text .more2 {
    right: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .news-page .news-list {
    margin-top: 30px;
  }

  .newdet-page .sideBox .sideLeft {
    width: 15%;
  }
  .newdet-page .sideBox .sideLeft .back .pageBackwz {
    display: none;
  }
  .newdet-page .sideBox .sideRight {
    width: 85%;
  }
}
@media screen and (max-width: 700px) {
  .news-page .news-tab {
    display: none;
  }
  .news-page .news-list {
    margin-top: 0;
  }
  .news-page .news-list ul li .text .top time {
    display: block;
    margin-top: 10px;
  }
  .news-page .news-list ul li .text .tit {
    margin-top: 16px;
  }
  .news-page .news-list ul li .text .more2 {
    position: initial;
    margin-top: 20px;
    display: none;
  }
  .newdet-page .sideBox .sideLeft {
    display: none;
  }
  .newdet-page .sideBox .sideRight {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .newdet-page .sideBox .sideRight .category {
    margin-bottom: 30px;
  }
  .newdet-page .sideBox .sideRight h1 {
    font-size: 24px;
    line-height: 44px;
  }
  .newdet-page .sideBox .sideRight time {
    margin: 30px 0;
  }
  .newdet-page .sideBox .sideRight .content {
    font-size: 16px;
    line-height: 30px;
  }
}
.contact-page .contact-1 .header .con {
  font-size: 20px;
  line-height: 1.8;
  max-width: 820px;
  color: #4B4B4B;
}
.contact-page .contact-1 .content {
  margin-top: 64px;
}
.contact-page .contact-1 .content ul {
  margin: -15px;
}
.contact-page .contact-1 .content ul li {
  padding: 15px;
}
.contact-page .contact-1 .content ul li .ig {
  background-color: #f6f7f9;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  line-height: 1.6;
  border-radius: 15px;
  min-height: 250px;
  padding: 0 30px 0 40px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .content ul li .ig .info {
  padding: 35px 0 100px;
  font-size: 20px;
  line-height: 1.8;
}
.contact-page .contact-1 .content ul li .ig .tit {
  position: absolute;
  bottom: 30px;
  left: 40px;
  font-size: 38px;
  line-height: 60px;
  height: 60px;
  font-weight: 600;
}
.contact-page .contact-1 .content ul li .ig::after {
  content: '';
  display: block;
  background: url(../images/contact-icon1.png) center center no-repeat var(--color);
  background-size: 100%;
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .content ul li .ig:hover {
  background: var(--color);
  color: #fff;
}
.contact-page .contact-1 .content ul li .ig:hover::after {
  background-color: #141414;
}
.contact-page .contact-1 .content ul li:nth-child(2) .ig::after {
  background-image: url(../images/contact-icon2.png);
}
.contact-page .contact-1 .content ul li:nth-child(3) .ig::after {
  background-image: url(../images/contact-icon3.png);
}
.contact-page .contact-2 {
  padding-top: 6%;
  background: #f6f7f9;
}
.contact-page .contact-2 .box {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
}
.contact-page .contact-2 .box .form {
  margin-top: 42px;
}
.contact-page .contact-2 .box .form ul {
  margin: -13px -25px;
}
.contact-page .contact-2 .box .form ul li {
  padding: 13px 25px;
}
.contact-page .contact-2 .box .form ul li label {
  display: block;
  line-height: 2;
  font-size: 20px;
  margin-bottom: 6px;
}
.contact-page .contact-2 .box .form ul li input,
.contact-page .contact-2 .box .form ul li textarea {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  background: #f6f6f6;
  font-size: 14px;
  line-height: 2;
  border: 0;
  padding: 4px 3% 4px 3%;
}
.contact-page .contact-2 .box .form ul li textarea {
  padding: 10px 1.5% 10px 1.5%;
  height: 150px;
}
.contact-page .contact-2 .box .form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-3 iframe {
  display: block;
  border: 0;
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .header .con {
    max-width: 300px;
  }
  .contact-page .contact-1 .content {
    margin-top: 20px;
  }
  .contact-page .contact-1 .content ul li {
    width: 50%;
  }
  .contact-page .contact-1 .content ul li .ig {
    padding: 0 20px;
  }
  .contact-page .contact-1 .content ul li .ig .tit {
    left: 20px;
  }
  .contact-page .contact-1 .content ul li .ig::after {
    right: 20px;
  }
  .contact-page .contact-2 .box {
    padding: 30px;
  }
  .contact-page .contact-3 iframe {
    height: 400px;
  }
}
@media screen and (max-width: 700px) {
  .contact-page .contact-1 .header .con {
    max-width: 100%;
    margin-top: 20px;
  }
  .contact-page .contact-1 .content ul {
    margin: -7px;
  }
  .contact-page .contact-1 .content ul li {
    padding: 7px;
  }
  .contact-page .contact-1 .content ul li .ig {
    min-height: 300px;
    font-size: 16px;
    line-height: 1.8;
  }
  .contact-page .contact-1 .content ul li .ig .tit {
    font-size: 22px;
    bottom: 16px;
    height: 50px;
    line-height: 50px;
  }
  .contact-page .contact-1 .content ul li .ig::after {
    width: 50px;
    height: 50px;
    bottom: 20px;
  }
  .contact-page .contact-2 .box {
    padding: 20px 15px;
  }
  .contact-page .contact-2 .box .form {
    margin-top: 30px;
  }
  .contact-page .contact-2 .box .form ul {
    margin: -6px -12px;
  }
  .contact-page .contact-2 .box .form ul li {
    padding: 6px 12px;
  }
}
@media screen and (max-width: 500px) {
  .contact-page .contact-1 .content ul li {
    width: 100%;
  }
  .contact-page .contact-1 .content ul li .ig {
    min-height: 160px;
  }
  .contact-page .contact-2 .form ul li textarea {
    height: 130px;
  }
  .contact-page .contact-3 iframe {
    height: 300px;
  }
}
.pro-box .pro-left {
  width: 340px;
  position: sticky;
  top: 165px;
  float: left;
}
.pro-box .pro-left .menus {
  
  margin-bottom: 50px;
}
.pro-box .pro-left .menus > li {
  border-radius: 5px;
  border-top: none;
  margin-bottom: 10px;
}
.pro-box .pro-left .menus > li:last-child {
  margin-bottom: 0;
}
.pro-box .pro-left .menus > li.active .menu-a span,
.pro-box .pro-left .menus > li:hover .menu-a span {
  right: 0;
}
.pro-box .pro-left .menus > li.active .menu-a a,
.pro-box .pro-left .menus > li:hover .menu-a a,
.pro-box .pro-left .menus > li.active .menu-a i,
.pro-box .pro-left .menus > li:hover .menu-a i {
  color: white;
}
.pro-box .pro-left .menus > li.active .menu-a i {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.pro-box .pro-left .menus > li .menu-a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  padding: 0 27px;
  font-size: 20px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
  z-index: 5;
}
.pro-box .pro-left .menus > li .menu-a span {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  right: -webkit-calc(100% - 8px);
  right: -moz-calc(100% - 8px);
  right: calc(100% - 8px);
  top: 0;
  background-color: var(--color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
.pro-box .pro-left .menus > li .menu-a i {
  position: absolute;
  right: 27px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.pro-box .pro-left .menus > li .sub-menu {
  padding: 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  margin-top: -3px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  display: none;
}
.pro-box .pro-left .menus > li.active .sub-menu{
  display: block;
}
.pro-box .pro-left .menus > li .sub-menu li {
  padding: 5px 30px;
}
.pro-box .pro-left .menus > li .sub-menu li a {
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  transition: all 0.5s;
  border-bottom:1px solid #eee;
  display: block; 
  padding: 10px 0 15px 0;
}
.pro-box .pro-left .menus > li .sub-menu li:last-child a{
  border: none;
}
.pro-box .pro-left .menus > li .sub-menu li a:hover{
  color: var(--color);
}
.pro-box .pro-left .menus > li .sub-menu li.active a{
  color:var(--color);
}
.product-page .pro-box .product-right {
  width: -webkit-calc(100% - 340px);
  width: -moz-calc(100% - 340px);
  width: calc(100% - 340px);
  padding-left: 35px;
  margin-left: auto;
}
.product-page .pro-box .product-right ul {
  margin: 0 -12px;
}
.product-page .pro-box .product-right ul > p{
  width: 100%;
}
.product-page .pro-box .product-right ul li {
  padding: 0 12px;
  margin-bottom: 30px;
}
.product-page .pro-box .product-right ul li:hover .img-box {
  border: 1px solid var(--color);
}
.product-page .pro-box .product-right ul li .img-box {
  width: 100%;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.product-page .pro-box .product-right .text{
  margin-bottom: 30px;
}
.product-page .pro-box .product-right .text h3{
  font-size: 30px;
    
  margin-bottom: 10px;
}
.product-page .pro-box .product-right .text p{
  font-size: 20px;
  color: #666;
  line-height: 1.8;
}
.product-page .pro-box .product-right ul li .img-box:hover .icon {
  opacity: 1;
}
.product-page .pro-box .product-right ul li .img-box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
.product-page .pro-box .product-right ul li .img-box .icon a {
  margin: 0 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-page .pro-box .product-right ul li .img-box .icon a img {
  -webkit-filter: invert(0);
  filter: invert(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-page .pro-box .product-right ul li .img-box .icon a:hover,
.product-page .pro-box .product-right ul li .img-box .icon a.active {
  background-color: var(--color);
}
.product-page .pro-box .product-right ul li .img-box .icon a:hover img,
.product-page .pro-box .product-right ul li .img-box .icon a.active img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.product-page .pro-box .product-right ul li .img-box .img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, .2);
}
.product-page .pro-box .product-right ul li h4 {
  font-size: 20px;
    line-height: 1.8;
  text-align: center;
  padding: 0 25px;
  margin-top: 15px;
  transition: all 0.5s;
  font-weight: 700;
}
.product-page .pro-box .product-right ul li h4:hover{
  color: var(--color);
}
.prodet-page .prodet-right {
  width: -webkit-calc(100% - 340px);
  width: -moz-calc(100% - 340px);
  width: calc(100% - 340px);
  padding-left: 65px;
}
.prodet-page .prodet-right .box {
  width: 100%;
}
.prodet-page .prodet-right .box i{
  display: none;
}
.prodet-page .prodet-right .box .left {
  width: 46.5%;
}
.prodet-page .prodet-right .box .left .smallImg ul {
  margin: 0 -5px;
}
.prodet-page .prodet-right .box .left .smallImg ul li {
  padding: 0 5px;
  width: 20%;
}
.prodet-page .prodet-right .box .left .smallImg ul li .img_box {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .left .smallImg ul li.active .img_box {
  border: 1px solid var(--color);
}
.prodet-page .prodet-right .box .right {
  width: 53.5%;
  padding-left: 50px;
}
.prodet-page .prodet-right .box .right .det.max-h{
  max-height: 360px;
  overflow-y: auto;
}
.prodet-page .prodet-right .box .right .det table{
  margin-bottom: 0;
}
.prodet-page .prodet-right .box .right .det ul li{
  font-size: 20px;
  display: flex;
  align-items: center;
}
.prodet-page .prodet-right .box .right .det ul li::before{
  content:"";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  margin-right: 10px;
}
.prodet-page .prodet-right .box .right .det2 ul{
  display: flex;
}
.prodet-page .prodet-right .box .right .det2 ul li{
  margin-right: 15px;
  font-size: 90px;
}
.prodet-page .prodet-right .box .right h2 {
  font-size: 35px;
}
.prodet-page .prodet-right .box .right .det {
 color: #666;
}
.prodet-page .prodet-right .box .right .line{
  width: 100%;
  border-radius:35px;
  /*height: 10px;*/
  background-color: var(--color);
}
.prodet-page .prodet-right .box .right .btn {
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
.prodet-page .prodet-right .box .right .Auxil-through {
  color: #666;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box{
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .2);
  padding: 10px;
  position: relative;
  cursor: pointer;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box.no_img,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box.no_img{
  border-color:transparent;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box .link,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box .link{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev:hover .img_box .link,
.prodet-page .prodet-right .box .right .Auxil-through .next:hover .img_box .link{
  opacity: 1;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box .img,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box .img{
  border-radius: 5px;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev p,
.prodet-page .prodet-right .box .right .Auxil-through .next p{
  color: #000;
  transition: all 0.5s;
  cursor: pointer;
  opacity: 0;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev p:hover,
.prodet-page .prodet-right .box .right .Auxil-through .next p:hover{
  color: var(--color);
  opacity: 1;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev:hover p,
.prodet-page .prodet-right .box .right .Auxil-through .next:hover p{
  opacity: 1;
}
.prodet-page .prodet-right .box .right .btn .product_add{
  position: relative;
}
.prodet-page .prodet-right .box .right .btn .product_add .fly_love{
  display: none;
  z-index: 204;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .btn .product_add .love{
  position: absolute;
  left:2px;
  top:50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .btn .product_add .collect{
  opacity: 1;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .btn .product_add.active .love{
  opacity: 1;
}
.prodet-page .prodet-right .box .right .btn .product_add.active .collect{
  opacity: 0;
}
.prodet-page .prodet-right .prodet-title {
  margin: 100px 0 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.prodet-page .prodet-right .prodet-content{
  padding-bottom: 60px;
  color: #666;
}
.prodet-page .prodet-right .prodet-content strong,
.prodet-page .prodet-right .prodet-content b{
  font-weight: bold;
}
.prodet-page .prodet-right .prodet-title ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.prodet-page .prodet-right .prodet-title ul li {
  padding: 10px 0;
  margin: 0 40px;
  position: relative;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.prodet-page .prodet-right .prodet-title ul li.active {
  border-bottom: 2px solid var(--color);
}
.prodet-page .prodet-right .prodet-title ul li.active:before {
  opacity: 1;
}
.prodet-page .prodet-right .prodet-content .det table{
  table-layout: fixed;
}
.prodet-page .prodet-right .prodet-content .det table tr:nth-child(odd){
  background-color: #e1e1e1;
}
.prodet-page .prodet-right .prodet-content .det table tr td{
  color: #565656;
  background: #f5f5f5;
  white-space: nowrap;
}
.prodet-page .prodet-right .prodet-content .det form {
    margin-top: 50px;
    background: #fff;
}
.prodet-page .prodet-right .prodet-content .det form ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.prodet-page .prodet-right .prodet-content .det form ul li {
    margin-top: 18px;
    width: 49.5%;
    display: inline-block;
}
.prodet-page .prodet-right .prodet-content .det form ul li a.more{
  position: relative;
}
.prodet-page .prodet-right .prodet-content .det form ul li a.more input[type="submit"]{
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  opacity: 0;
  z-index: 9;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(5) {
    width: 100%;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(5) textarea {
    width: 100%;
    border: #ccc solid 1px;
    padding: 10px;
    font-size: 20px;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) {
    width: 100%;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) input {
    background: var(--color);
    color: #fff;
    transition: all .5s;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) input:hover {
    background: #000;
}
.prodet-page .prodet-right .prodet-content .det form ul li input {
    padding: 15px;
    border: #ccc solid 1px;
    width: 100%;
    font-size: 20px;
}
.recommended-product {
  background-color: #f9f9f9;
}
.recommended-product ul {
  margin: 60px -24px 0;
}
.recommended-product ul li {
  padding: 0 24px;
  widows: 25%;
}
.recommended-product ul li .img_box {
  width: 100%;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.recommended-product ul li .img_box:hover .icon {
  opacity: 1;
}
.recommended-product ul li .img_box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
.recommended-product ul li .img_box .icon a {
  margin: 0 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.recommended-product ul li .img_box .icon a img {
  -webkit-filter: invert(0);
  filter: invert(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.recommended-product ul li .img_box .icon a:hover {
  background-color: var(--color);
}
.recommended-product ul li .img_box .icon a:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.recommended-product ul li .img_box .img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.recommended-product ul li h4 {
  font-size: 24px;
    line-height: 1.6;
  text-align: center;
  padding: 0 25px;
  margin-top: 15px;
}
@media screen and (max-width: 1600px) {
   .prodet-page .prodet-right .box .right .Auxil-through .next{
     margin-top: 30px;
   }
   .prodet-page .prodet-right .box .right .Auxil-through .next .next-t{
     flex-direction: row-reverse;
   }
   .prodet-page .prodet-right .box .right .Auxil-through .next .next-t span{
     margin-right: 0;
     margin-left: 10px;
   }
}
@media screen and (max-width: 1400px) {
  .product-page .pro-box .product-right ul li h4{
    font-size: 20px;
  }
  .prodet-page .prodet-right .box .right h2 {
    font-size: 26px;
  }
 
}
@media screen and (max-width: 1250px) {
  .inner_banner{
    display: none;
  }
  .product-page .pro-box .product-right ul li{
    width: 50%;
  }
  .prodet-page .prodet-right .box .left{
    width: 100%;
    margin-bottom: 60px;
  }
  .prodet-page .prodet-right .box .right{
    width: 100%;
  }
  .prodet-page .prodet-right .box .left .bigImg ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  } 
  .prodet-page .prodet-right .box .right{
    padding-left: 0;
  }
  .prodet-page .prodet-right .prodet-title ul li {
    margin: 0 15px;
    font-size: 20px;
  }
   .product-yd-page .init-1 .container ul li .box .left .title{
    font-size: 36px;
  }
}
@media screen and (max-width: 1000px) {
  .pro-box .pro-left{
    display: none;
  }
  .product-page .pro-box .product-right {
    width: 100%;
    padding-left:0;
  }
  .prodet-page .prodet-right {
    width: 100%;
    padding-left:0;
  }
  .prodet-page .prodet-right .box .right .line img{
    width:100%;
  }
  .prodet-page .prodet-right .box .right .btn a:first-child{
    display: none;
  }
  .prodet-page .prodet-right .box .right .btn a:last-child{
    margin-left: 0;
  }
  .inner-banner .mbx h2 {
    font-size: 34px;
  }
   .product-yd-page .init-1 .container ul li .box .left .title{
    font-size: 32px;
  }
}
@media screen and (max-width:700px) {
  .product-page .pro-box .product-right ul li{
    width: 100%;
  }
  .prodet-page .prodet-right .prodet-title ul li {
    margin: 0 5px;
    font-size: 18px
  }
  .inner-banner .mbx h2 {
    font-size: 28px;
  }
  .prodet-page .prodet-right .prodet-content .det form ul li{
    width: 100%;
  }
   .product-yd-page .init-1 .container ul li .box .left .title{
    font-size: 24px;
  }
  .recommended-product ul li h4{
    font-size: 18px;
    padding: 0;
  }
}
@media screen and (max-width: 500px) {
  .font-45 {
    font-size: 34px;
  }
  .recommended-product ul{
    margin: 0 -12px;
    margin-top: 30px;
  }
  .recommended-product ul li{
    padding: 0 12px;
  }
  .recommended-product ul li h4{
    font-size: 14px;
    line-height: 1.8;
  }
  .prodet-page .prodet-right .prodet-title ul li{
    width: 100%;
    margin-bottom: 30px;
  }
  .prodet-page .prodet-right .prodet-title{
    margin: 40px 0;
  }
  .product-yd-page .init-1 .container ul li .box .left .title{
    font-size: 20px;
  }
  .product-page .pro-box .product-right .text h3{
    font-size: 20px;
  }
  .prodet-page .prodet-right .box .right h2{
    font-size: 20px;
  }
}
.about-page .about-1 .box .slide {
  max-width: 430px;
}
.about-page .about-1 .box .slide:nth-child(2) {
  max-width: 460px;
}
.about-page .about-1 .box span.h6 {
  color: #6b6b6b;
  line-height: 1.6;
}
.about-page .about-1 .box span.h6 em {
  color: var(--color);
}
.about-page .about-1 .box span.h6 i {
  color: black;
}
.about-page .about-1 .box .text p:last-child {
  margin-top: -0.25em;
}
.about-page .about-2 {
  background-color:var(--color);
  color: white;
  overflow: hidden;
}
.about-page .about-2 .ui.container {
  max-width: 1000px;
}
.about-page .about-2 .list {
  position: relative;
  z-index: 1;
}
.about-page .about-2 .list ul {
  -webkit-perspective: 100px;
  -moz-perspective: 100px;
  perspective: 100px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.about-page .about-2 .list ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.about-page .about-2 .list ul li .box {
  background-color: white;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-2 .list ul li .left {
  padding: 0 4%;
}
.about-page .about-2 .list ul li .left span.tag {
  color: black;
  margin-bottom: .5em;
  text-transform: unset;
}
.about-page .about-2 .list ul li .left span.h6 {
  color: var(--color);
  margin-bottom: 1em;
  display: block;
}
.about-page .about-2 .list ul li .left .text {
  color: #545454;
}
.about-page .about-2 .list ul li .right {
  /*padding-left: 8%;*/
}
.about-page .about-2 .list ul li .right .img {
  height: 360px;
  background-size: cover;
  background-position: center;
}
.about-page .about-2 .list ul li:first-child {
  position: relative;
}
.about-page .about-2 .list ul li.off .box {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}
.about-page .about-2 .scrollPage {
  margin-top: 4.75em;
  z-index: 2;
  position: relative;
}
.about-page .about-5 .left {
  width: 45%;
  padding-right: 8%;
}
.about-page .about-5 .left .scrollPage > div {
  background-color: #f3f3f3;
}
.about-page .about-5 .left .scrollPage > div.page {
  background-color: var(--color);
}
.about-page .about-5 .left .scrollPage > div:hover {
  background-color: var(--color);
}
.about-page .about-5 .right {
  width: 55%;
  position: relative;
  margin-top: 20px;
}
.about-page .about-5 .right .list .slick-list {
  padding-bottom: 10%;
  margin-bottom: -10%;
}
.about-page .about-5 .right .list ul {
  margin: -10px;
}
.about-page .about-5 .right .list ul li {
  padding: 10px;
}
.about-page .about-5 .right .list ul .slick-slide {
  -webkit-transform-origin: bottom left;
  -moz-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-5 .right .list ul .slick-slide {
  -webkit-transform: rotate(12deg) scale(0.8);
  -moz-transform: rotate(12deg) scale(0.8);
  -ms-transform: rotate(12deg) scale(0.8);
  transform: rotate(12deg) scale(0.8);
}
.about-page .about-5 .right .list ul .slick-slide.slick-current{
  -webkit-transform: rotate(0) scale(1);
  -moz-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
}
.about-page .about-5 .msgHf {
  padding: 10px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 1.30555556em;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: 3.33333333em;
  cursor: pointer;
}
.about-page .about-5 .msgHf:hover {
  background-color: #221100;
}
.about-page span.h2{
  font-weight: bold;
  display: block;
}
.scrollPage {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}
.scrollPage > * {
  width: 4.375em;
  height: 4.375em;
  border-radius: 100%;
  background-color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color);
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.scrollPage > * i.iconfont {
  font-size: 1.5em;
}
.scrollPage .prev,
.scrollPage .next {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.scrollPage .prev:hover,
.scrollPage .next:hover {
  background-color: var(--color);
  color: white;
}
.scrollPage .page {
  margin: 0 1em;
  padding: 0.3125em;
  background-color: var(--color);
  color: white;
  width: auto;
  border-radius: 2.1875em;
}
.scrollPage .page span.num {
  width: 3.75em;
  height: 3.75em;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
}
.scrollPage .page span.line {
  width: 0;
  height: .6em;
  border-radius: .3em;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.scrollPage .page span.line i {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  width: 0;
  background-color: white;
  height: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.scrollPage:hover .page {
  max-width: 100%;
}
.scrollPage:hover .page span.line {
  margin: 0 1em;
  width: 11.25em;
}
.about-page .about-5 .msg {
    font-weight: 700;
    height: 2.61111111em;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 1.30555556em;
    background-color: var(--color);
    color: #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin-top: 3.33333333em;
    cursor: pointer;
}
.about-page .about-5 .msg:hover{
  background: #000;
}
@media screen and (max-width: 1000px) {
  .about-page .about-1 .box .slide {
    max-width: none !important;
  }
  .about-page .about-1 .box .slide:nth-child(2) {
    display: none;
  }
  .about-page .about-1 span.h2 {
    text-align: left;
  }
  .about-page .about-1 .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-1 .box .text p:last-child {
    margin-top: 1em;
  }
  .about-page .about-2 .scrollPage {
    margin-top: 3em;
  }
  .about-page .about-5 .right {
    top: 0;
  }
  .about-page .about-5 span.h2 {
    margin-bottom: .5em;
  }
  .scrollPage .page span.line {
    display: none;
  }
  .about-page .about-5 .left {
    padding-right: 3%;
  }
  .about-page .about-5 .right .list ul .slick-current ~ div {
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
  .about-page .about-5 .right .list {
    padding-right: 30%;
    overflow: hidden;
  }
  .about-page .about-5 .right .list .slick-list {
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: unset;
  }
}
@media screen and (max-width: 700px) {
  .about-page .about-2 .list ul li .right .img {
    height: 300px;
  }
  .about-page .about-2 .list ul li .right {
    padding-left: 0;
  }
  .about-page .about-5 .left {
    width: 100%;
    padding-right: 0;
  }
  .about-page .about-5 .left .scrollPage {
    display: none;
  }
  .about-page .about-5 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .about-page .about-5 .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-5 .right .list {
    padding-right: 0;
  }
}
@media screen and (max-width: 500px) {
    .about-page .about-2 .list ul li .left {
    width: 100%;
    padding: 3%;
  }
  .about-page .about-2 .list ul li .right {
    width: 100%;
  }
  .about-page .about-2 .list ul li .right .img {
    height: 120px;
  }
  .about-page .about-2 .list ul li .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-5 .left .text{
    margin-bottom: 0;
  }
  .about-page .about-5 .msgHf{
    margin-top: 20px;
  }
}
:root {
  --px100: calc(4.1667vw + 20px);
  --px145: calc(6.5vw + 20px);
  --px140: calc(6.25vw + 20px);
  --px110: calc(4.65vw + 20px);
  --px50: calc(1.5625vw + 20px);
  --px60: calc(2.0925vw + 20px);
  --px80: calc(3.1267vw + 20px);
  --px130: calc(5.75vw + 20px);
  --px120: calc(5.21vw + 20px);
  --px170: calc(7.8vw + 20px);
  --px70: calc(2.6067vw + 20px);
  --px90: calc(3.65vw + 20px);
  --px8: calc(0.258vw + 3px);
  --px40: calc(1.0455vw + 20px);
}
:root {
  --ft50: calc(1.88vw + 14px);
  --ft48: calc(1.77vw + 14px);
  --ft40: calc(1.3555vw + 14px);
  --ft44: calc(1.56vw + 14px);
  --ft46: calc(1.67vw + 14px);
  --ft18: calc(0.2085vw + 14px);
  --ft16: calc(0.1055vw + 14px);
  --ft24: calc(0.525vw + 14px);
  --ft26: calc(0.625vw + 14px);
  --ft20: calc(0.315vw + 14px);
  --ft30: calc(0.8345vw + 14px);
  --ft32: calc(0.9385vw + 14px);
  --ft34: calc(1.0385vw + 14px);
  --ft35: calc(1.0915vw + 14px);
  --ft36: calc(1.1465vw + 14px);
  --ft38: calc(1.2465vw + 14px);
  --ft60: calc(2.3955vw + 14px);
  --ft62: calc(2.4955vw + 14px);
}
.c-oem-page .oem1 {
  padding-bottom: calc(5.21vw + 18px);
  /*padding-top: calc(5.21vw + 18px);*/
  color: #fff;
}
.c-oem-page .oem1.bg_w{
  background: var(--color);
}
.c-oem-page .oem1 .container .o1-p {
  font-weight: bold;
  line-height: 1.4;
  color: #000;
}
.c-oem-page .oem1.bg_w .container .o1-p{
  color: #fff;
}
.c-oem-page .oem1.bg_w .container .o1-v{
  color: #fff;
}
.c-oem-page .oem1 .container .o1-v {
  font-weight: 400;
  line-height: 2;
  font-size: var(--ft18);
  color: #000;
  max-width: 1300px;
  margin: 0 auto var(--ft50);
}
.c-oem-page .oem1 .container .o1-m {
  padding-left: calc(7.8vw + 10px);
  padding-right: calc(7.8vw + 10px);
}
.c-oem-page .oem1 .container .o1-m .o1-c {
  width: 33.33%;
  height: auto;
  background: #efefef;
  padding: var(--ft20) var(--ft18) var(--ft36);
      border-radius: 10px;
}
.c-oem-page .oem1 .container .o1-m .o1-c .img-box{
  border-radius: 10px;
}
.c-oem-page .oem1 .container .o1-m .o1-c video{
  width: 100%;
  border-radius: 10px;
  max-height: 250px;
  background: #000;
}
.c-oem-page .oem1 .container .o1-m .o1-c .o1c-p1 {
  font-weight: 700;
  color: #000000;
  line-height: 36px;
  margin-top: calc(0.729vw + 14px);
  margin-bottom: var(--ft16);
}
.c-oem-page .oem1 .container .o1-m .o1-c .o1c-p2 {
  font-weight: 400;
  font-size: var(--ft16);
  line-height: 2;
  color: #000000;
}
.c-oem-page .init-4-oem {
  background: #f9f9f9;
  overflow: hidden;
}
.c-oem-page .init-4-oem:nth-child(2n-1){
  background: #fff;
}
.c-oem-page .init-4-oem:nth-child(2n-1) .container{
  flex-direction: row-reverse;
}
.c-oem-page .init-4-oem .i4-l {
  padding-right: 4%;
}
.c-oem-page .init-4-oem:nth-child(2n-1) .i4-l{
  padding-right: 0;
  padding-left: 4%;
}
.c-oem-page .init-4-oem .i4l-p2 {
  margin-top: calc(2.1885vw + 14px) !important;
  max-width: 700px;
  font-weight: 400 !important;
  font-size: var(--ft18) !important;
  line-height: 2;
  color: #000000 !important;
}
.c-oem-page .init-4-oem .pf_btn {
  margin-top: calc(2.0835vw + 14px) !important;
}
.c-oem-page .oem2 {
  padding-top: calc(6.25vw + 15px);
  padding-bottom: var(--px140);
  background: var(--color);
}
.c-oem-page .oem2 .container .o2-h {
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: var(--ft30);
}
.c-oem-page .oem2 .container .o2-p {
  max-width: 1200px;
  font-weight: 400;
  font-size: var(--ft18);
  color: #FFFFFF;
  margin: 0 auto;
}
.c-oem-page .oem2 .container .o2-m {
  margin-top: calc(2.2385vw + 14px);
  padding-left: calc(7.8vw + 10px);
  padding-right: calc(7.8vw + 10px);
}
.c-oem-page .oem2 .container .o2-m .o2-s {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ft16);
}
.c-oem-page .oem2 .container .o2-m .o2-s .o2-c {
  padding: var(--ft26) var(--ft24) var(--ft50);
  background: #fff;
}
.c-oem-page .oem2 .container .o2-m .o2-s .o2-c:hover img {
  transform: rotateY(180deg);
}
.c-oem-page .oem2 .container .o2-m .o2-s .o2-c img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.c-oem-page .oem2 .container .o2-m .o2-s .o2-c .o2-p1 {
  font-weight: 700;
  color: #100C0B;
  margin-top: calc(4.059vw + 12px);
  margin-bottom: 12px;
}
.c-oem-page .oem2 .container .o2-m .o2-s .o2-c .o2-p2 {
  font-weight: 400;
  font-size: var(--ft16);
  color: #100C0B;
}
.c-oem-page .oem3 {
  padding-top: calc(6.25vw + 15px);
  padding-bottom: calc(6.5vw + 19px);
}
.c-oem-page .oem3 .container .o3-h {
  line-height: 1.28;
  font-weight: 700;
  color: #000000;
  padding-left: calc(7.8vw + 10px);
}
.c-oem-page .oem3 .container .o3-h span {
  color: #205a98;
}
.c-oem-page .oem3 .container .o3-m {
  margin-top: calc(2.2385vw + 14px);
  padding-left: calc(9.38vw + 10px);
  padding-right: var(--px100);
  display: flex;
  justify-content: space-between;
}
.c-oem-page .oem3 .container .o3-m .o3-r {
  margin-left: var(--ft50);
  width: 57.34%;
}
.c-oem-page .oem3 .container .o3-m .o3-r .o3r-h {
  font-weight: 400;
  font-size: var(--ft18);
  line-height: 2;
  color: #3B3838;
  padding-right: 11%;
}
.c-oem-page .oem3 .container .o3-m .o3-r .o3r-ul .o3r-li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
  padding-bottom: var(--ft24);
}
.c-oem-page .oem3 .container .o3-m .o3-r .o3r-ul .o3r-li .o3r-li-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  line-height: 36px;
  padding-top: var(--ft40);
  color: #000000;
  cursor: pointer;
}
.o1-cr {
    background: transparent !important;
    cursor: pointer;
    position: relative;
}
.c-oem-page .oem3 .container .o3-m .o3-r .o3r-ul .o3r-li .o3r-li-h span {
  width: 12px;
  height: 2px;
  background: #000000;
  position: relative;
}
.c-oem-page .oem3 .container .o3-m .o3-r .o3r-ul .o3r-li .o3r-li-h span::before {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  transform-origin: center;
  content: "";
  position: absolute;
  top: 1px;
  left: 0px;
  width: 12px;
  height: 2px;
  background: #000000;
  transform: rotate(90deg);
}
.c-oem-page .oem3 .container .o3-m .o3-r .o3r-ul .o3r-li:first-child .o3r-li-p{
  display: block;
}
.c-oem-page .oem3 .container .o3-m .o3-r .o3r-ul .o3r-li .o3r-li-p {
  display: none;
  margin-top: var(--ft16);
  font-weight: 400;
  font-size: var(--ft18);
  line-height: 2;
  color: #000000;
  max-width: 702px;
  opacity: 0.62;
}
.c-oem-page .oem3 .container .o3-m .o3-r .o3r-ul .o3r-li.active .o3r-li-h span::before {
  transform: rotate(0deg);
}
.c-oem-page .oem4 {
  background: #f9f9f9;
  padding-top: var(--px100);
  padding-bottom: calc(5.75vw + 14px);
}
.c-oem-page .oem4 .o4-h {
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  margin-bottom: var(--ft32);
}
.c-oem-page .oem4 .o4-p {
  font-weight: 400;
  font-size: var(--ft16);
  line-height: 2;
  color: #010101;
}
.c-oem-page .oem4 .o4-m {
  margin-top: calc(3.1805vw + 14px);
  padding-left: calc(7.8vw + 10px);
  padding-right: calc(7.8vw + 10px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: calc(1.3555vw + 13px);
  row-gap: calc(0.415vw + 14px);
}
.c-oem-page .oem4 .o4-m .o4-c {
  background: #FFFFFF;
  border-radius: 10px;
  padding: calc(2.2385vw + 14px) var(--ft46) calc(5.519vw + 17px);
}
.c-oem-page .oem4 .o4-m .o4-c:hover img {
  transform: rotateY(180deg);
}
.c-oem-page .oem4 .o4-m .o4-c img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.c-oem-page .oem4 .o4-m .o4-c .o4-h1 {
  font-weight: 500;
  color: #010101;
  text-align: center;
  margin-top: var(--ft30);
  margin-bottom: var(--ft32);
}
.c-oem-page .oem4 .o4-m .o4-c img {
  display: block;
  margin: 0 auto;
}
.c-oem-page .oem4 .o4-m .o4-c .o4-p1 {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #010101;
  line-height: 2;
  opacity: 0.8;
}
.c-oem-page .oem5 {
  background: var(--color);
  padding-top: calc(3.1805vw + 14px);
  padding-bottom: calc(3.1805vw + 15px);
}
.c-oem-page .oem5 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-oem-page .oem5 .container .o5-l {
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.43;
}
.c-oem-page .oem5 .container .o5_btn {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
  justify-content: center;
  align-items: center;
  padding: 0 calc(2.6555vw + 13px);
  height: 50px;
  background: #FFFFFF;
  line-height: 55px;
}
.c-oem-page .oem5 .container .o5_btn:hover {
  background: #000;
  color: #FFFFFF;
}
.c-oem-page .init-4-oem .i4-l{
  width: 50%;
}
.c-oem-page .init-4-oem .i4-l .i4l-p1 {
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
    padding-top: var(--ft46);
}
.c-oem-page .init-4-oem .i4-l .i4l-p2 {
    margin-top: calc(2.1885vw + 14px);
    max-width: 700px;
    font-weight: 400;
    font-size: var(--ft18);
    margin-bottom: var(--ft44);
}
.c-oem-page .init-4-oem .i4-r{
  width: 50%;
}
.c-oem-page .init-4-oem .i4-r img{
  border-radius: 10px;
  margin-top:112px;
}
.c-oem-page .oem5 .container .o5-r .more:hover{
  background: #fff;
  color: var(--color);
}
.faq-page .faq-1 .list ul li {
  border: 1px solid #dcdcdc;
  padding: 1.33333333em 2.3em;
}
.faq-page .faq-1 .list ul li i {
  cursor: pointer;
  cursor: hand;
  font-size: 1.2em;
  line-height: 1;
}
.faq-page .faq-1 .list ul li .text {
  line-height: 2;
}
.faq-page .faq-1 .list ul li.active {
  background-color: var(--color);
  color: white;
}
.faq-page .faq-1 .list ul li.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq-page .faq-2 .form form {
  height: 4.375em;
  border-radius: 2.1875em;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 3em;
  padding: .8em 2em .8em 3em;
  border: 1px solid #dcdcdc;
  background-color: transparent;
}
.faq-page .faq-2 .form form .logo2 {
  max-width: 60px;
}
.faq-page .faq-2 .form form .logo2 a {
  height: 100%;
}
.faq-page .faq-2 .form form .logo2 a img {
  height: inherit;
}
.faq-page .faq-2 .form form .logo2,
.faq-page .faq-2 .form form button {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.faq-page .faq-2 .form form button {
  width: 4.375em;
  height: 4.375em;
  border: none;
  color: var(--color);
  background-color: transparent;
}
.faq-page .faq-2 .form form button i {
  font-size: 2em;
}
.faq-page .faq-2 .form form ul {
  width: 100%;
  padding: 0 .5%;
}
.faq-page .faq-2 .form form ul li {
  width: 100%;
}
.faq-page .faq-2 .form form ul li input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: .4em 1.2em;
  border-left: 1px solid #d2d2d2;
}
.faq-page .faq-2 .form form ul li:first-child input {
  border-left: none;
}
.faq-page .faq-2 .text a {
  color: var(--color);
  text-decoration: underline;
}
@media (max-width: 1250px) {
  .c-oem-page .oem4 .o4-m {
    padding: 0;
  }
  .font-30
  {
    line-height: 40px!important;
  }
  .c-oem-page .oem3 .container .o3-h {
    padding-left: 0;
  }
  .c-oem-page .oem3 .container .o3-m {
    padding-left: 0;
    padding-right: 0;
  }
  .c-oem-page .oem2 .container .o2-m {
    padding: 0;
  }
  .c-oem-page .oem1 .container .o1-m {
    padding: 0;
  }
}
@media (max-width: 1000px) {
  .c-oem-page .oem4 .o4-m {
    grid-template-columns: 1fr 1fr;
  }
  .c-oem-page .init-4-oem .i4-l{
    width: 100%;
    padding-right: 0;
  }
  .c-oem-page .init-4-oem:nth-child(2n-1) .i4-l{
    padding-left: 0;
  }
  .c-oem-page .init-4-oem .i4-r{
    width: 100%;
    margin-top: 20px;
  }
  .c-oem-page .oem3 .container .o3-m .o3-r .o3r-h {
    padding: 0;
  }
  .c-oem-page .oem3 .container .o3-m {
    flex-wrap: wrap;
  }
  .c-oem-page .oem3 .container .o3-m .o3-r {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: var(--ft30);
  }
  .c-oem-page .oem2 .container .o2-m .o2-s {
    grid-template-columns: 1fr 1fr;
  }
  #index-body .init-4 .container .i4-l {
    margin-bottom: var(--ft30);
  }
  .c-oem-page .oem1 .container .o1-m {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .c-oem-page .oem5 .container .o5-l {
    width: 100%;
  }
  .c-oem-page .oem5 .container .o5-r {
    margin-top: var(--ft24);
  }
  .c-oem-page .oem5 .container {
    flex-wrap: wrap;
  }
  .c-oem-page .oem3 .container .o3-m .o3-r .o3r-ul .o3r-li .o3r-li-h > div {
    width: 80%;
  }
  .faq-page .faq-2 .form form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }
  .faq-page .faq-2 .form form ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .faq-page .faq-2 .form form ul li {
    width: 100%;
    margin: .5em 0;
  }
  .faq-page .faq-2 .form form ul li:first-child input {
    border-left: 1px solid #d2d2d2;
  }
  .faq-page .faq-2 .form form button {
    height: 3em;
    width: 3em;
  }
  .faq-page .faq-2 .form form {
    padding: 1em;
    border-radius: .5em;
  }
}
@media (max-width: 500px) {
  .c-oem-page .oem4 .o4-m {
    grid-template-columns: 1fr;
  }
  .c-oem-page .oem2 .container .o2-m .o2-s {
    grid-template-columns: 1fr;
  }
  .c-oem-page .oem1 .container .o1-m {
    grid-template-columns: 1fr;
  }
  .faq-page .faq-1 .list ul li {
    padding: 5%;
  }
}
.spaces-page .spaces-1 li .pre:before {
  content: '';
  height: 30%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(black), to(transparent));
  background-image: -webkit-linear-gradient(bottom, black, transparent);
  background-image: -moz-linear-gradient(bottom, black, transparent);
  background-image: linear-gradient(to top, black, transparent);
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.spaces-page .spaces-1 li .pre .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3% 6%;
  z-index: 2;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.spaces-page .spaces-1 li .pre .bottom span.tag {
  padding: .25em 1em;
  border-radius: 1.5em;
  background-color: white;
  color: var(--color);
}
.spaces-page .spaces-1 li .pre:hover:before {
  opacity: 0;
}
.spaces-page .spaces-1 li .pre:hover .bottom {
  background-color: var(--color);
}
.spaces-page .spaces-2 .btn div {
  width: 3em;
  height: 3em;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.spaces-page .spaces-2 .btn div.next {
  background-color: var(--color);
  color: white;
}
.spaces-page .spaces-2 .btn div:hover {
  background-color: var(--color);
  color: white;
}
.spaces-page .spaces-2 .box .right {
  background-color: #f5f5f7;
  padding: 3%;
}
.spaces-page .spaces-2 .box .right ol {
  font-size: 1.22222222em;
  font-weight: bold;
}
.spaces-page .spaces-2 .box .right ol li {
  margin-top: .7em;
  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;
  gap: .4em;
}
.spaces-page .spaces-2 .box .right ol li:before {
  content: '';
  width: 0.36363636em;
  height: 0.36363636em;
  border-radius: 100%;
  background-color: var(--color);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 29, 29, 0.4);
  z-index: -2;
  opacity: 0;
  padding: 0;
  border: none;
}
dialog.active {
  z-index: 22;
  opacity: 1;
}
dialog .box {
  background-color: white;
  width: 1050px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  position: relative;
}
dialog .dialogBox {
  overflow: hidden;
  width: 1390px;
}
dialog .dialogBox .img {
  position: sticky;
  top: 0;
}
dialog .dialogBox .img li {
  height: 100%;
}
dialog .dialogBox .img a.img-box {
  background-color: #eee;
}
dialog .dialogBox .bottomCoy {
  background-color: #f0f0f0;
}
dialog .dialogBox .bottomCoy i {
  width: .6em;
  height: .6em;
  border-radius: 100%;
  background-color: var(--color);
}
dialog .dialogBox .scroll {
  height: calc(90vh - 70px);
  max-height: 700px;
  overflow: auto;
}
dialog .dialogBox .list {
  padding: 11%;
}
dialog .dialogBox .list li:hover a.img-box {
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.17);
}
dialog .dialogBox .list li:hover span {
  text-decoration: underline;
}
dialog .box span.close {
  width: 2em;
  height: 2em;
  background-color: #eee;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 2;
}
dialog .box span.close:hover {
  background-color: var(--color);
  color: white;
}
dialog .box .img {
  background-color: #f5f5f7;
  display: block;
}
@media screen and (max-width: 1000px) {
  .spaces-page .spaces-1 .box .slide:last-child {
    grid-column: span 2;
  }
  .spaces-page .spaces-2 .box .right {
    padding: 3% !important;
  }
  dialog .dialogBox .img{
    position: initial;
  } 
}
@media screen and (max-width: 700px) {
  .spaces-page .spaces-1 .box .slide:last-child {
    grid-column: span 1;
  }
  .spaces-page .spaces-1 .box {
    grid-template-columns: 1fr;
  }
  .spaces-page .spaces-2 .list {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .spaces-page .spaces-2 .box .right ol {
    font-size: 1.1em;
  }
}
#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from form {
  margin-top: 40px;
}
#pups_from i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from i.close::after,
#pups_from i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from i.close:hover {
  background: var(--color);
}
#pups_from i.close:hover::before,
#pups_from i.close:hover::after {
  background: white;
}
#pups_from ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from ul li input,
#pups_from ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}
#pups_from ul li input:focus,
#pups_from ul li textarea:focus {
  border-color: var(--color);
}
#pups_from ul li textarea {
  height: 80px;
}
#pups_from ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from ul li:last-child {
  margin-bottom: 0;
}
#index-body .inner-about{
  padding: 0 0 5.625% 0;
}
#index-body .inner-about::after{
  display: none;
}

.resources-page .list {
  margin-top: 46px;
}
.resources-page .list .the_head{
  text-align: center;
  height: 88px;
  line-height: 88px;
  background: var(--color);
  color: #fff;
  border-top-left-radius:8px;
  display: flex;
  border-top-right-radius:8px;
}
.resources-page .list .the_head .column{
  float: left;
  display: block;
}
.resources-page .list .the_head .column span{
  font-size: 18px;
}
.resources-page .list ul li {
 text-align: center;
 display: flex;
 flex-wrap: wrap;
}
.resources-page .list ul li a.img-box {
  display: block;
}
.resources-page .list ul li span.h6 {
  font-size: 16px;
  margin-right: 1em;
}
.resources-page .list ul li .download {
  font-size: 16px;
  text-transform: uppercase;
  flex-shrink: 0;
  cursor: pointer;
  width: 207px;
  height: 54px;
  line-height: 56px;
  background: var(--color);
  text-align: center;
  color: #fff;
  border-radius: 10px;
  display: inline-block;
}
.resources-page .list ul li .download1{
  display: none;
}
.resources-page .list ul li .download .iconfont{
  font-size: 24px!important;
  margin-left: 17px;
}

.resources-page .list .dw-list li:after{
  content:'';
  clear: both;
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
}
.resources-page .list .dw-list li .column{
  float: left;
  display: block;
  padding: 10px;
  border: 1px solid #cccccc;
  border-top: none;
  border-left: none;
  width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resources-page .list .dw-list li .column:first-child{
  border-left: 1px solid #cccccc;
}
.resources-page .list .dw-list li .column img{
  max-height: 90%;
  vertical-align: middle;
}
.resources-page .list .dw-list li .sTitle{
  line-height: 1.6;
  height: auto;
  width: 33.33%;
  border: none;
}
.resources-page .list .dw-list li .tit{
  font-size: 18px;
  color: #000000;
}
.resources-page .list ul li:hover{
  background: var(--color);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
  transition: 0.3s ease;
  position: relative;
  z-index: 5;
}
.resources-page .list .dw-list li:hover .tit{
  color: #fff;
}
.resources-page .list ul li:hover .column{
  border-color:var(--color);
}
.resources-page .list ul li:hover .download{
  background: #fff;
  color: var(--color);
}
.select-page .content-box {
    padding: 42px 32px;
    background: #f1f1f1;
    border-radius:8px;
}
.select-page .content-box .search1{
  margin-top: 0px;
}
.select-page .content-box .search1 form{
  position: relative;
}
.select-page .content-box .search1 input{
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
}
.select-page .content-box .search1 input:first-child{
  padding-right: 60px;
}
.select-page .content-box .search1 input[type="submit"]{
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  background: url(../images/search.png) no-repeat center;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

@media screen and (max-width: 1000px) {
  .resources-page .list .dw-list li {
    display: flex;
  }
  .resources-page .list .dw-list li .column {
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .resources-page .list .dw-list {
    width: 100%;
    overflow: auto;
  }
  .resources-page .list .dw-list li {
    width: 700px;
  }
}
.gallery-page .init-2 {
    /*padding-top: 60px;*/
}
.gallery-page .init-2 .container ul {
    margin: 0 -25px;
}
.gallery-page .init-2 .container ul>p {
    font-size: 16px;
    letter-spacing: 0;
    margin: 20px;
}
.gallery-page .init-2 .container ul li {
    margin-top: 50px;
    padding: 0 25px;
}
.gallery-page .init-2 .container ul li .box video {
    display: block;
    width: 100%;
}
.gallery-page .init-2 .container ul li .box .title {
    text-align: center;
    margin-top: 16px;
    color: #666;
}
.gallery-page .init-2 .container ul li .box .img {
    position: relative;
    display: block;
}
.gallery-page .init-2 .container ul li .box .img img {
    width: 100%;
    border-radius: 10px;
}
.gallery-page .init-2 .container ul li .box .img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gallery-page .init-2 .container ul li .box:hover .img::before {
    -webkit-animation: circle 0.75s;
    -moz-animation: circle 0.75s;
    -o-animation: circle 0.75s;
    animation: circle 0.75s;
    -webkit-transition: all 0.3sease;
    -o-transition: all 0.3sease;
    -moz-transition: all 0.3sease;
    transition: all 0.3sease;
}
.gallery-page.Partner .init-2 .container ul li {
    width: 20%;
}
.gallery-page.video-page .play-btn i {
  border: none;
} 
.gallery-page .gallery-tab ul{
  margin: -10px;
}
.gallery-page .gallery-tab ul li{
  padding: 10px;
}
.gallery-page .gallery-tab ul li a{
  display: inline-block;
  padding: 10px 49px;
  border-radius: 10px;
}
.gallery-page .gallery-tab ul li a:hover,
.gallery-page .gallery-tab ul li a.active{
  background: var(--color);
  color: #fff;
}
@media (max-width: 1000px) {
  .gallery-page .init-2 {
        padding-top: 0;
    }
}
@media (max-width: 500px) {
    .gallery-page .init-2 .container ul li {
        margin-top: 20px;
    }
}