@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;
}
.fancybox-toolbar button:nth-child(2){
	display: none;
}
body {
  --color: #1c66b1;
  max-width: 1920px;
  margin: 0 auto;
  font-family: 'Montserrat';
  font-weight: 400;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.container {
  padding: 0 15px;
  position: relative;
  width: 1350px;
  margin: 0 auto;
}
.more {
  position: relative;
  font-size: 16px;
  overflow: hidden;
  text-align: center;
  border-radius: 35px;
  display: inline-block;
  color: #fff;
  background-color: var(--color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 10px 10px 10px 29px;
}
.more i {
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-left: 22px;
  border-radius: 50px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}
.more i img {
  vertical-align: middle;
}
.more .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}
.more .btn-wrap .text-one {
  position: relative;
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.more .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.more::before {
  -webkit-transition-duration: 800ms;
  -moz-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-color: #000;
}
.more:hover::before {
  top: -10%;
}
.more:hover i {
  background: var(--color);
}
.more:hover i img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.more:hover .btn-wrap .text-one {
  -webkit-transform: translateY(-150%);
  -moz-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}
.more:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.more1 {
  position: relative;
  font-size: 18px;
  overflow: hidden;
  text-align: center;
  padding: 22px 53px 21px;
  display: inline-block;
  color: #000;
  background-color: #fff;
}
.more1::before {
  -webkit-transition-duration: 800ms;
  -moz-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--color);
}
.more1 .btn-wrap .text-one,
.more1 .btn-wrap .text-two {
  color: #000;
}
.more1:hover .btn-wrap .text-one,
.more1:hover .btn-wrap .text-two {
  color: #fff;
}
.more1:hover::before {
  top: -40%;
}
.cursor {
  position: fixed;
  background-color: var(--color);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 999;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.cursor.active {
  opacity: 1;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.cursor.menu-active {
  opacity: 1;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.cursor.hovered {
  opacity: 1;
}
.cursor-follower {
  position: fixed;
  border: 0.5px solid var(--color);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 999;
  -webkit-transform: translate(2px, 2px);
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.cursor-follower.active {
  opacity: 1;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
}
.cursor-follower.menu-active {
  opacity: 1;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
}
.cursor-follower.hovered {
  opacity: 1;
}
.pageLoad {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(315deg, #2176cd 0%, #1c66b1 100%);
  background: -moz-linear-gradient(315deg, #2176cd 0%, #1c66b1 100%);
  background: linear-gradient(135deg, #2176cd 0%, #1c66b1 100%);
  z-index: 9999999;
  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;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.pageLoad .loading {
  position: relative;
  width: 80px;
  height: 80px;
  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;
}
.pageLoad .loading .outer-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  -webkit-animation: pulse 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  -moz-animation: pulse 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.pageLoad .loading .inner-circle {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-animation: reverse-pulse 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  -moz-animation: reverse-pulse 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation: reverse-pulse 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.pageLoad .loading .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  -webkit-animation: tz 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  -moz-animation: tz 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation: tz 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@-webkit-keyframes pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.4;
  }
}
@-moz-keyframes pulse {
  0%,
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    -moz-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.4;
  }
}
@keyframes pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.4;
  }
}
@-webkit-keyframes reverse-pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0.8;
  }
}
@-moz-keyframes reverse-pulse {
  0%,
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -moz-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0.8;
  }
}
@keyframes reverse-pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0.8;
  }
}
@-webkit-keyframes tz {
  0%,
  100% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  25% {
    -webkit-transform: translateY(-15px) scale(1.1);
    transform: translateY(-15px) scale(1.1);
  }
  50% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  75% {
    -webkit-transform: translateY(5px) scale(0.9);
    transform: translateY(5px) scale(0.9);
  }
}
@-moz-keyframes tz {
  0%,
  100% {
    -moz-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  25% {
    -moz-transform: translateY(-15px) scale(1.1);
    transform: translateY(-15px) scale(1.1);
  }
  50% {
    -moz-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  75% {
    -moz-transform: translateY(5px) scale(0.9);
    transform: translateY(5px) scale(0.9);
  }
}
@keyframes tz {
  0%,
  100% {
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  25% {
    -webkit-transform: translateY(-15px) scale(1.1);
    -moz-transform: translateY(-15px) scale(1.1);
    transform: translateY(-15px) scale(1.1);
  }
  50% {
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  75% {
    -webkit-transform: translateY(5px) scale(0.9);
    -moz-transform: translateY(5px) scale(0.9);
    transform: translateY(5px) scale(0.9);
  }
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 37px;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav {
  max-width: 1920px;
  margin: 0 auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .container {
  width: 1838px;
}
#header .nav .box {
  background-color: #ffffff;
  border-radius: 50px;
}
#header .nav .ui.menu .logo {
  border-right: 1px solid #fafafa;
}
#header .nav .ui.menu .share a {
  display: inline-block;
  font-size: 20px;
  margin-right: .9em;
}
#header .nav .ui.menu .share a:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .share a:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box {
  margin: 0 0 0 auto;
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 2.8125em;
  font-size: 16px;
  line-height: 1;
  height: 100%;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
	z-index: 10;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: inline-block;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child{
	display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  position: absolute;
  width: auto;
  top: 100%;
  padding: 15px 15px;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  left: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 0px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  width: 100%;
  opacity: 0;
  text-align: left;
  margin-bottom: 2px;
  -webkit-transform: translateY(11px);
  -moz-transform: translateY(11px);
  -ms-transform: translateY(11px);
  transform: translateY(11px);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 10;
  white-space: nowrap;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  position: relative;
  display: block;
  line-height: 24px;
  font-size: 14px;
  padding: 10px 15px;
  color: #000;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: rgba(0, 0, 0, 0.06);
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a:hover {
  background: var(--color);
  color: #fff;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:last-child {
  margin-bottom: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover,
#header .nav .ui.menu .menu-box ul.menu > li.active {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu li {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 70ms;
  -moz-transition-delay: 70ms;
  transition-delay: 70ms;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child ul {
  left: initial;
  right: 0;
}
#header .nav .ui.menu .yuy ul {
  left: initial;
  right: 0;
}
#header .nav .ui.menu .yuy ul li {
  background: #000;
  color: #fff;
}
#header .nav .ui.menu .h-search {
  color: #fff;
  font-size: 21px;
  cursor: pointer;
}
#header .nav .more {
  padding-left: 40px;
}
#header .nav .more i {
  margin-left: 36px;
}
#header::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header.active {
  top: 0;
}
#header.active::after {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.text-color {
  color: var(--color);
}
.title,
.i-title {
  font-weight: bold;
}
.play-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  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;
}
.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #000;
  margin-left: 5px;
}
#banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#banner ul {
  margin: 0 auto;
}
#banner ul li {
  position: relative;
}
#banner ul li video {
  width: 100%;
  -webkit-clip-path: polygon(0 0, 40% 0, 40% 100%, 0% 100%);
  clip-path: polygon(0 0, 40% 0, 40% 100%, 0% 100%);
  -webkit-transition: all 1000ms linear;
  -moz-transition: all 1000ms linear;
  transition: all 1000ms linear;
}
#banner ul li > img {
  width: 100%;
  -webkit-clip-path: polygon(0 0, 40% 0, 40% 100%, 0% 100%);
  clip-path: polygon(0 0, 40% 0, 40% 100%, 0% 100%);
  -webkit-transition: all 1000ms linear;
  -moz-transition: all 1000ms linear;
  transition: all 1000ms linear;
}
#banner ul li .text {
  position: absolute;
  z-index: 3;
  top: 56%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
}
#banner ul li .text .title {
  line-height: 1.2;
}
#banner ul li .text .title span {
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
}
#banner ul li .text .con {
  max-width: 703px;
  margin: 17px auto 0;
}
#banner ul li .text .title,
#banner ul li .text .con,
#banner ul li .text .btn {
  -webkit-transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  -moz-transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
#banner ul li .text .play {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  width: 3.5em;
  height: 3.5em;
  background: #fff;
  padding: 7px;
}
#banner ul li .text .play em {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--color);
  padding: 13px 0;
  border-radius: 50%;
}
#banner ul .swiper-slide-active video {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
#banner ul .swiper-slide-active > img {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
#banner ul .swiper-slide-active .text .title,
#banner ul .swiper-slide-active .text .con,
#banner ul .swiper-slide-active .text .btn {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
#banner ul .swiper-slide-active .text .title {
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  transition-delay: 800ms;
}
#banner ul .swiper-slide-active .text .con {
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
#banner ul .swiper-slide-active .text .btn {
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  transition-delay: 1400ms;
}
#banner .icon {
  right: 16.67%;
  bottom: 168px;
  width: 256px;
  height: 232px;
  z-index: 2;
  -webkit-animation: down 5s linear infinite;
  -moz-animation: down 5s linear infinite;
  animation: down 5s linear infinite;
}
@-webkit-keyframes down {
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@-moz-keyframes down {
  50% {
    -moz-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@keyframes down {
  50% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    transform: translateY(15px);
  }
}
.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;
}
.slickDots ul li {
  width: 4.4em;
  height: 5px;
  background: rgba(0, 0, 0, 0.14);
  border-radius: 0;
  border: 0;
}
.slickDots ul li.slick-active {
  background: var(--color);
}
@-webkit-keyframes marquee {
  100% {
    -webkit-transform: translateX(-3015.91px);
    transform: translateX(-3015.91px);
  }
}
@-moz-keyframes marquee {
  100% {
    -moz-transform: translateX(-3015.91px);
    transform: translateX(-3015.91px);
  }
}
@keyframes marquee {
  100% {
    -webkit-transform: translateX(-3015.91px);
    -moz-transform: translateX(-3015.91px);
    transform: translateX(-3015.91px);
  }
}
@-webkit-keyframes marquee1 {
  0% {
    -webkit-transform: translateX(-2215.58px);
    transform: translateX(-2215.58px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes marquee1 {
  0% {
    -moz-transform: translateX(-2215.58px);
    transform: translateX(-2215.58px);
  }
  100% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes marquee1 {
  0% {
    -webkit-transform: translateX(-2215.58px);
    -moz-transform: translateX(-2215.58px);
    transform: translateX(-2215.58px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
.i-tag {
  font-size: 18px;
  color: var(--color);
  text-transform: uppercase;
  display: block;
}
.i-tag::before {
  content: '— —';
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
}
.i-title {
  font-size: 65px;
  line-height: 1.15;
}
.i-init1 {
  background: var(--color);
  color: #fff;
}
.i-init1.sy{
	margin-top: -2px;
}
.i-init1 p {
  white-space: nowrap;
  -webkit-animation: 49.35s linear 0s infinite normal none running marquee;
  -moz-animation: 49.35s linear 0s infinite normal none running marquee;
  animation: 49.35s linear 0s infinite normal none running marquee;
}
#index-body .i-init2 {
  padding: 174px 0 7.3%;
  position: relative;
}
#index-body .i-init2 .header {
  top: -66px;
  left: 0;
  width: 100%;
}
#index-body .i-init2 .i-title {
  width: 80%;
}
#index-body .i-init2 .left {
  width: 58.33333333%;
}
#index-body .i-init2 .left .img1 {
  width: 34.58%;
}
#index-body .i-init2 .left .img1 .bottom {
  margin-top: -60px;
  position: relative;
  z-index: 1;
}
#index-body .i-init2 .left .img2 {
  width: 65.42%;
}
#index-body .i-init2 .left .image {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-clip-path: polygon(0 0, 15% 0, 15% 100%, 0% 100%);
  clip-path: polygon(0 0, 15% 0, 15% 100%, 0% 100%);
}
#index-body .i-init2 .left .image.active {
  opacity: 1;
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  transition-delay: 300ms;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
#index-body .i-init2 .right {
  width: 41.66666667%;
}
#index-body .i-init2 .right .con {
  color: #575757;
}
#index-body .i-init2 .data ul {
  margin: -12px;
}
#index-body .i-init2 .data ul li {
  padding: 12px;
}
#index-body .i-init2 .data ul li .ig {
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0b0b0b), to(#262a2d));
  background-image: -webkit-linear-gradient(top, #0b0b0b 0%, #262a2d 100%);
  background-image: -moz-linear-gradient(top, #0b0b0b 0%, #262a2d 100%);
  background-image: linear-gradient(180deg, #0b0b0b 0%, #262a2d 100%);
  border-radius: 20px;
  color: #fff;
}
#index-body .i-init2 .data ul li .ig .font-14 {
  line-height: 2;
}
#index-body .i-init2 .data ul li .ig .icon img {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
#index-body .i-init2 .data ul li .ig .num {
  line-height: 1.2;
}
#index-body .i-init2 .data ul li .ig .icon {
  height: 48px;
  border-bottom: 1px solid #fff;
}
#index-body .i-init2 .data ul li .ig:hover .icon img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
#index-body .i-init3 {
  background-color: #f4f4f4;
  padding: 5.833% 0 6.40625%;
}
#index-body .i-init3 ul {
  margin: -23px -9.5px;
}
#index-body .i-init3 ul .slick-track{
	display: block;
}
#index-body .i-init3 ul li {
  padding: 23px 9.5px;
}
#index-body .i-init3 ul li .img-box {
  border-radius: 20px;
  background: #fff;
}
#index-body .i-init3 ul li .img-box .tit {
  top: 0;
  left: 0;
  width: 100%;
}
#index-body .i-init3 ul li .img-box .i2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
#index-body .i-init3 ul li .img-box .more {
  position: absolute;
  bottom: 27px;
  left: 50%;
  -webkit-transform: translate(-50%, 200%);
  -moz-transform: translate(-50%, 200%);
  -ms-transform: translate(-50%, 200%);
  transform: translate(-50%, 200%);
  font-size: 16px;
  background-color: var(--color);
  border-radius: 20px;
  color: #fff;
  padding: 8px 22px 8px 23px;
}
#index-body .i-init3 ul li .img-box .more .btn-wrap span {
  color: #fff;
}
#index-body .i-init3 ul li .img-box .more::before {
  background: #fff;
}
#index-body .i-init3 ul li .img-box .more:hover .btn-wrap span {
  color: var(--color);
}
#index-body .i-init3 ul li .img-box:hover .i1 {
  opacity: 0;
}
#index-body .i-init3 ul li .img-box:hover .i2 {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .i-init3 ul li .img-box:hover .tit {
  opacity: 0;
}
#index-body .i-init3 ul li .img-box:hover .more {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#index-body .i-init4 {
  padding: 5.3125% 0 7.0833%;
}
#index-body .i-init4 .content {
  height: 220vh;
}
#index-body .i-init4 .content .list {
  -webkit-perspective: 20vw;
  -moz-perspective: 20vw;
  perspective: 20vw;
}
#index-body .i-init4 .content .list .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}
#index-body .i-init4 .content .list .item:nth-child(1) {
  position: relative;
}
#index-body .i-init4 .content .list .item .card {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  aspect-ratio: 1.85185185;
  border-radius: 20px;
  color: #fff;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: clip;
  background: var(--color);
}
#index-body .i-init4 .content .list .item .card .top .left {
  width: 43%;
}
#index-body .i-init4 .content .list .item .card .top .left .tit {
  line-height: 1.2;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
#index-body .i-init4 .content .list .item .card .top .left .con {
  line-height: 1.7;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
#index-body .i-init4 .content .list .item .card .top .link {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #fff;
}
#index-body .i-init4 .content .list .item .card .top .link:hover img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#index-body .i-init4 .content .list .item .card .bottom .arrow {
  width: 23.3%;
}
#index-body .i-init4 .content .list .item .card .bottom .arrow a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  font-size: 20px;
}
#index-body .i-init4 .content .list .item .card .bottom .arrow a:first-child {
  background: rgba(255, 255, 255, 0.2);
}
#index-body .i-init4 .content .list .item .card .bottom .arrow a:last-child {
  background: #000;
}
#index-body .i-init4 .content .list .item .card .bottom .img {
  width: 76.7%;
}
#index-body .i-init4 .content .list .item .card .bottom .img ul .slick-list {
  padding-right: 293px;
}
#index-body .i-init4 .content .list .item:nth-child(2) .card {
  background-color: #145ba2;
}
#index-body .i-init4 .content .list .item:nth-child(3) .card {
  background-color: #114d89;
}
#index-body .i-init5 {
  padding: 7.71% 0 7.5521%;
}
#index-body .i-init5 .left {
  width: 39.7%;
}
#index-body .i-init5 .right {
  width: 53%;
}
#index-body .i-init5 .right ul li {
  border-bottom: 1px solid #e9e9e9;
}
#index-body .i-init5 .right ul li .top span {
  width: 2.32em;
  height: 2.32em;
  color: #fff;
  background: var(--color);
  border-radius: 50%;
}
#index-body .i-init5 .right ul li .top .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 24px;
}
#index-body .i-init5 .right ul li .top .text i {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-init5 .right ul li.active .top .text i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
#index-body .i-init6 {
  background: url(../images/faq-bg.png) no-repeat left 26px;
  padding: 8.4375% 0 6.146%;
}
#index-body .i-init6 .left {
  width: 45.23%;
}
#index-body .i-init6 .right {
  width: 51.97%;
}
#index-body .i-init6 .right ul li {
  background-image: -webkit-gradient(linear, left top, right top, from(#f8f8f8), to(#ffffff));
  background-image: -webkit-linear-gradient(left, #f8f8f8 0%, #ffffff 100%);
  background-image: -moz-linear-gradient(left, #f8f8f8 0%, #ffffff 100%);
  background-image: linear-gradient(90deg, #f8f8f8 0%, #ffffff 100%);
  border-radius: 45px;
  margin-bottom: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-init6 .right ul li .top i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color);
}
#index-body .i-init6 .right ul li .top i img {
  width: 21px;
  height: 15px;
  -webkit-filter: invert(1);
  filter: invert(1);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -moz-transition: transform .5s, -moz-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s, -moz-transform .5s;
}
#index-body .i-init6 .right ul li:last-child {
  margin-bottom: 0;
}
#index-body .i-init6 .right ul li.active {
  background-color: #f8f8f8;
  border-radius: 20px;
}
#index-body .i-init6 .right ul li.active .top i img {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#index-body .i-init7 {
  padding-top: 5.0521%;
}
#index-body .i-init7 .left {
  width: 50%;
}
#index-body .i-init7 ul li .img {
  border-radius: 20px;
}
#index-body .i-init7 ul li .img img {
  position: relative;
  width: 100%;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
#index-body .i-init7 ul li .img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  -moz-transform: translatex(50%) scalex(2);
  -ms-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
#index-body .i-init7 ul li .img time {
  left: 15px;
  bottom: 9px;
  background-color: #000000;
  border-radius: 20px;
  color: #fff;
  z-index: 2;
  padding: 8px 11px;
}
#index-body .i-init7 ul li .img:hover img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  -moz-transform: translatex(0) scalex(1);
  -ms-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
#index-body .i-init7 ul li .img:hover img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  -moz-transform: translatex(-50%) scalex(2);
  -ms-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
#index-body .i-init7 ul li .top {
  color: #737373;
}
.i-wz {
  padding: 102px 0 146px;
  z-index: 1;
}
.i-wz p {
  white-space: nowrap;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
}
.i-wz .wz1 {
  background: var(--color);
  color: #fff;
  padding: 14px 0;
  -webkit-transform: rotate(0.5deg);
  -moz-transform: rotate(0.5deg);
  -ms-transform: rotate(0.5deg);
  transform: rotate(0.5deg);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.i-wz .wz1 p {
  -webkit-animation: 41.35s linear 0s infinite normal none running marquee1;
  -moz-animation: 41.35s linear 0s infinite normal none running marquee1;
  animation: 41.35s linear 0s infinite normal none running marquee1;
}
.i-wz .wz2 {
  z-index: -1;
  top: 0;
  left: -20px;
  width: 110%;
  background: #000;
  color: #fff;
  -webkit-transform: rotate(-5.6deg);
  -moz-transform: rotate(-5.6deg);
  -ms-transform: rotate(-5.6deg);
  transform: rotate(-5.6deg);
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  padding: 14px 0;
}
.i-wz .wz2 p {
  -webkit-animation: 41.35s linear 0s infinite normal none running marquee;
  -moz-animation: 41.35s linear 0s infinite normal none running marquee;
  animation: 41.35s linear 0s infinite normal none running marquee;
}
#footer {
  background: #fff;
}
#footer .box {
  background: url(../images/fbg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  border-radius: 20px;
}
#footer .title {
  font-size: 20px;
  line-height: 1.3;
  margin: 17px 0 31px 0;
}
#footer ul li {
  font-size: 16px;
  line-height: 1.6;
}
#footer ul li a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer ul li a:hover {
  color: var(--color);
}
#footer .f-ab {
  width: 28.11%;
}
#footer .f-ab p {
  line-height: 1.6;
}
#footer .f-ab .tb a {
  display: inline-block;
  font-size: 18px;
  position: relative;
  margin-right: 17px;
}
#footer .f-ab .tb a .code {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-ab .tb a .code img {
  width: 100%;
  height: 100%;
}
#footer .f-ab .tb a:last-child {
  margin-right: 0;
}
#footer .f-ab .tb a:hover .code {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
#footer .f-ab #ewm {
  width: 121px;
  border: 3px solid #fff;
}
#footer .f-contact {
  width: 21%;
}
#footer .f-form {
  width: 23.1%;
}
#footer .f-form p {
  line-height: 1.6;
}
#footer .f-form input {
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  border-radius: 25px;
  font-size: 14px;
  padding: 0 21px;
  margin-bottom: 12px;
 color: #000;
}
#footer .f-form input::-webkit-input-placeholder {
  color: #afafaf;
}
#footer .f-form input:-moz-placeholder {
  color: #afafaf;
}
#footer .f-form input::-moz-placeholder {
  color: #afafaf;
}
#footer .f-form input:-ms-input-placeholder {
  color: #afafaf;
}
#footer .f-form input::placeholder {
  color: #afafaf;
}
#footer .f-form button {
  border: 0;
  padding: 5px 9px 4px 54px;
}
#footer .f-form button i {
  width: 41px;
  height: 41px;
  margin-left: 35px;
  line-height: 41px;
}
#footer .f-form button::before {
  background: #fff;
}
#footer .f-form button:hover .btn-wrap span {
  color: var(--color);
}
#footer .f-form button:hover i {
  background: var(--color);
}
#footer .f-form button:hover i img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#footer .f-form button:hover::before {
  top: -40%;
}
#footer .f-copy {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  position: relative;
  padding: 27px 0 26px;
  background-color: #333333;
  border-radius: 40px;
}
#footer .f-copy svg {
  display: inline-block;
  vertical-align: top;
  width: auto;
  max-height: 26px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: 1px;
  fill: #fff;
}
#footer .f-copy svg text {
  fill: #fff;
}
@media (max-width: 1700px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 2em;
	 font-size: 15px;
  }
  #header .nav .ui.menu .logo {
    width: 18%;
	  padding-right: 0;
  }
  #header .nav .ui.menu .share a {
    font-size: 18px;
    margin-right: .6em;
  }
  .i-wz .wz2 {
    -webkit-transform: rotate(-7.3deg);
    -moz-transform: rotate(-7.3deg);
    -ms-transform: rotate(-7.3deg);
    transform: rotate(-7.3deg);
  }
 #header .nav .more{
	 margin-left: 0;
  }  	
}
@media (max-width: 1450px) {
  #header .nav .box {
    zoom: .86;
  }
  #header .nav .more {
    padding-left: 30px;
  }
  .i-title {
    font-size: 50px;
  }
  .i-wz .wz2 {
    -webkit-transform: rotate(-8.6deg);
    -moz-transform: rotate(-8.6deg);
    -ms-transform: rotate(-8.6deg);
    transform: rotate(-8.6deg);
    left: -29px;
  }
  .i-wz .wz1 {
    -webkit-transform: rotate(1deg);
    -moz-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    transform: rotate(1deg);
  }
}
@media (max-width: 1250px) {
  #banner .icon {
    display: none;
  }
  #index-body .i-init3 ul li .img-box .more {
    white-space: nowrap;
  }
  #index-body .i-init4 .content .list .item .card .bottom .img ul .slick-list {
    padding-right: 180px;
  }
  .i-title {
    font-size: 42px;
  }
  .i-wz p {
    font-size: 26px;
  }
  .i-wz .wz1 {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .i-wz .wz2 {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}
@media (max-width: 1000px) {
  .more1 {
    padding: 12px 22px;
    font-size: 16px;
  }
  .play-btn {
    font-size: 16px;
  }
  .more i {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .i-tag {
    font-size: 16px;
  }
  .i-title {
    font-size: 36px;
  }
  #index-body .i-init2 .header {
    position: initial;
  }
  #index-body .i-init2 .left .img1 .more {
    zoom: .6;
  }
  #index-body .i-init6 .left {
    display: none;
  }
  #index-body .i-init6 .right {
    width: 100%;
  }
  #index-body .i-init7 .left {
    width: 52%;
  }
  #index-body .i-init4 .content .list .item .card .top .left {
    width: 50%;
  }
  #index-body .i-init4 .content .list .item .card .bottom .img ul .slick-list {
    padding-right: 100px;
  }
  .i-wz .wz2 {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
    left: -36px;
  }
  #footer .f-nav {
    display: none;
  }
  #footer .f-ab,
  #footer .f-contact {
    width: 50%;
  }
  #footer #ewm {
    display: none;
  }
  #footer .f-form {
    width: 100%;
  }
}
@media (max-width: 700px) {
  #banner ul li .text .title {
    font-size: 30px;
  }
  #index-body .i-init2 {
    padding: 30px 0;
  }
  #index-body .i-init2 .i-title {
    width: 100%;
  }
  #index-body .i-init2 .left {
    width: 100%;
    margin-top: 30px;
  }
  #index-body .i-init2 .right {
    width: 100%;
    margin-top: 30px;
  }
  #index-body .i-init4 .content {
    height: auto;
  }
	#index-body .i-init4 .content .list {
    -webkit-perspective: initial;
    -moz-perspective: initial;
    perspective: initial;
}
	#index-body .i-init4 .content .list .item{
		position: initial;
		margin-top: 30px;
		-webkit-transform-style: initial; 
    -moz-transform-style: initial;
    transform-style: initial;
    -webkit-backface-visibility: initial;
    -moz-backface-visibility: initial;
     backface-visibility: initial;
    will-change: initial;
	}
	#index-body .i-init4 .content .list .item:first-child{
		margin-top: 0;
	}
	#index-body .i-init4 .content .list .item .card .top .left{
		width: 80%;
	}
  #index-body .i-init4 .content .list .item .card .top .link {
    width: 70px;
    height: 70px;
  }
  #index-body .i-init4 .content .list .item .card {
    padding-left: 15px;
	  grid-column-gap: inherit;
    grid-row-gap: inherit;
    aspect-ratio: inherit;
  }
  #index-body .i-init4 .content .list .item .card .bottom .arrow {
    zoom: .7;
  }
  #index-body .i-init5 .left,
  #index-body .i-init5 .right {
    width: 100%;
  }
  #index-body .i-init5 .right {
    margin-top: 30px;
  }
  .i-wz {
    zoom: .7;
  }
  #footer {
    padding: 0 15px 15px;
  }
  #footer .title {
    margin-bottom: 17px;
  }
  #footer .f-ab {
    width: 100%;
  }
  #footer .f-ab .icon {
    display: none;
  }
  #footer .f-contact {
    width: 100%;
    margin-top: 20px;
  }
  #footer .f-contact .title {
    display: none;
  }
  #footer .f-copy {
    padding: 13px 0 12px;
  }
}
@media (max-width: 500px) {
  #banner ul li .text .title {
    font-size: 20px;
    line-height: 1.4;
  }
  #banner ul li .text .con {
    display: none;
  }
  .i-tag {
    font-size: 14px;
    line-height: 2;
  }
  .i-title {
    font-size: 30px;
  }
  #index-body .i-init2 .left {
    padding-right: 0;
  }
  #index-body .i-init2 .left .img1 {
    width: 43%;
  }
  #index-body .i-init2 .left .img2 {
    width: 56%;
  }
  .font-18 {
    line-height: 2 !important;
  }
  #index-body .i-init2 .data ul {
    margin: -6px;
  }
  #index-body .i-init2 .data ul li {
    padding: 6px;
  }
  #index-body .i-init2 .data ul li .ig span {
    min-height: 56px;
    display: block;
  }
  #index-body .i-init3 .header .more {
    margin-top: 20px;
  }
  #index-body .i-init3 ul li .img-box .tit {
    font-size: 16px;
  }
  #index-body .i-init4 .content .list .item .card .top {
    padding-right: 15px;
  }
  #index-body .i-init4 .content .list .item .card .top .left {
    width: 100%;
  }
  #index-body .i-init4 .content .list .item .card .top .link {
    margin-top: 20px;
    zoom: .7;
  }
  #index-body .i-init4 .content .list .item .card .bottom .arrow {
    width: 30%;
  }
  #index-body .i-init4 .content .list .item .card .bottom .img {
    width: 70%;
  }
  #index-body .i-init6 .right ul li .top i {
    zoom: .8;
    height: 49px;
  }
  #index-body .i-init7 .left {
    width: 100%;
  }
  #index-body .i-init7 .top .more {
    margin-top: 20px;
  }
  .i-wz {
    zoom: .65;
    padding: 60px 0 100px;
  }
  .i-wz .wz1 {
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    transform: rotate(4deg);
  }
}
.grid-box {
    font-size: 0;
    [;
    letter-spacing: -4px;
    font-size: 12px;
    ]
}
.grid-box .column {
    display: inline-block;
    font-size: 12px;
    vertical-align: top;
    [;
    letter-spacing: 0;
    ]
}
.grid-box .column {
    width: 100%;
}
.grid-box.two>.column {
    width: 50%;
}
.grid-box.three>.column {
    width: 33.33333%;
}
.grid-box.four>.column {
    width: 25%;
}
.grid-box.five>.column {
    width: 20%;
}
.grid-box.six>.column {
    width: 16.6666667%;
}
.grid-box.seven>.column {
    width: 14.285714%;
}
.grid-box.eight>.column {
    width: 12.5%;
}
.grid-box.nine>.column {
    width: 11.11111111%;
}
.grid-box.ten>.column {
    width: 10%;
}
@media screen and (max-width: 1000px) {
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 33.33333%;
    }
    .grid-box.four>.column {
        width: 33.33333%;
    }
    .grid-box.five>.column {
        width: 33.33333%;
    }
}
@media screen and (max-width: 700px) {
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 50%;
    }
    .grid-box.four>.column {
        width: 50%;
    }
    .grid-box.five>.column {
        width: 50%;
    }
}
@media screen and (max-width: 500px) {
    .grid-box.two>.column {
        width: 100%;
    }
    .grid-box.three>.column {
        width: 100%;
    }
    .grid-box.four>.column {
        width: 100%;
    }
    .grid-box.five>.column {
        width: 100%;
    }
}
.inner-banner {
  height: 615px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.inner-banner .text {
  top: 60%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.inner-banner .text .box {
  max-width: 1000px;
  margin: 0 auto;
}
.inner-banner .text .more:last-child {
  background: #fff;
}
.inner-banner .text .more:last-child span {
  color: var(--color);
}
.inner-banner .text .more:last-child i {
  background: var(--color);
}
.inner-banner .text .more:last-child i img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.inner-banner .text .more:last-child:hover span {
  color: #fff;
}
.inner-banner::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.34);
}
.contact-page .contact-1 {
  padding: 4.8% 0 6.3542%;
}
.contact-page .contact-1 .left .bottom span {
  line-height: 1;
}
.contact-page .contact-1 .left .bottom p {
  line-height: 1.4;
}
.contact-page .contact-1 .right .currentTime {
  font-size: 165px;
  line-height: 1;
  font-weight: bold;
}
.contact-page .box {
  position: relative;
  z-index: 1;
}
.contact-page .box::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 69.832%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #ffffff 100%);
  background-image: -moz-linear-gradient(top, #f5f5f5 0%, #ffffff 100%);
  background-image: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
}
.contact-page .contact-2 {
  padding-top: 7.35%;
}
.contact-page .contact-2 .con {
  line-height: 1.6;
}
.contact-page .contact-2 ul li i {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  border: solid 2px var(--color);
}
.contact-page .contact-3 {
  padding-top: 8.79%;
}
.contact-page .contact-3 ul {
  margin: -8px -14px;
}
.contact-page .contact-3 ul li {
  padding: 8px 14px;
}
.contact-page .contact-3 ul li input,
.contact-page .contact-3 ul li .box,
.contact-page .contact-3 ul li select,
.contact-page .contact-3 ul li textarea {
  width: 100%;
  height: 70px;
  background-color: #f5f5f5;
  border-radius: 35px;
  border: 0;
  font-size: 14px;
  padding: 0 24px;
  color: #000;
}
.contact-page .contact-3 ul li input::-webkit-input-placeholder, .contact-page .contact-3 ul li .box::-webkit-input-placeholder, .contact-page .contact-3 ul li select::-webkit-input-placeholder, .contact-page .contact-3 ul li textarea::-webkit-input-placeholder {
  color: #afafaf;
}
.contact-page .contact-3 ul li input:-moz-placeholder, .contact-page .contact-3 ul li .box:-moz-placeholder, .contact-page .contact-3 ul li select:-moz-placeholder, .contact-page .contact-3 ul li textarea:-moz-placeholder {
  color: #afafaf;
}
.contact-page .contact-3 ul li input::-moz-placeholder, .contact-page .contact-3 ul li .box::-moz-placeholder, .contact-page .contact-3 ul li select::-moz-placeholder, .contact-page .contact-3 ul li textarea::-moz-placeholder {
  color: #afafaf;
}
.contact-page .contact-3 ul li input:-ms-input-placeholder, .contact-page .contact-3 ul li .box:-ms-input-placeholder, .contact-page .contact-3 ul li select:-ms-input-placeholder, .contact-page .contact-3 ul li textarea:-ms-input-placeholder {
  color: #afafaf;
}
.contact-page .contact-3 ul li input::placeholder,
.contact-page .contact-3 ul li .box::placeholder,
.contact-page .contact-3 ul li select::placeholder,
.contact-page .contact-3 ul li textarea::placeholder {
  color: #afafaf;
}
.contact-page .contact-3 ul li input[type="file"] {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.contact-page .contact-3 ul li textarea {
  height: 140px;
  border-radius: 20px;
  padding-top: 24px;
}
.contact-page .contact-3 ul li p {
  line-height: 1.6;
  color: #010101;
  opacity: 0.67;
}
.contact-page .contact-3 ul li button {
  border: 0;
  padding: 14px 9px 15px 54px;
}
.contact-page .contact-3 ul li button i {
  width: 41px;
  height: 41px;
  line-height: 41px;
  margin-left: 35px;
}
.contact-page .contact-3 ul li .box::after {
  display: none;
}
.contact-page .contact-3 ul li select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/xl.png) no-repeat right 32px center #f5f5f5;
}
.contact-page .contact-3 ul li select::-ms-expand {
  display: none;
}
.contact-page .contact-4 {
  padding: 5.625% 0 49px 0;
}
.contact-page .contact-4 .map {
  height: 456px;
}
.contact-page .contact-4 .map iframe {
  height: 100%;
  border: 0;
}
.contact-page .contact-4 .add i {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  border: solid 2px #1c66b1;
}
.contact-page .contact-4 .add .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contact-page .contact-4 .add .text p {
  line-height: 1.6;
}
.honor-page .honor-1 {
  background: url(../images/honor-bg.png) no-repeat center 90%;
}
.honor-page .honor-1 .header .left {
  width: 52%;
}
.honor-page .honor-1 .header .right {
  width: 46.2%;
}
.honor-page .honor-1 .icon ul {
  margin: -8px;
}
.honor-page .honor-1 .icon ul li {
  padding: 8px;
}
.honor-page .honor-1 .icon ul li .ig {
  background-color: #f6f6f6;
  border-radius: 20px;
  height: 130px;
}
.honor-page .honor-1 .content ul {
  margin: -23px -14.5px;
}
.honor-page .honor-1 .content ul li {
  padding: 23px 14.5px;
}
.factory-page {
  padding-top: 8.28125%;
  background: url(../images/factory-bg.jpg) no-repeat center top;
  background-size: 100% auto;
}
.factory-page .factory-1 {
  padding-bottom: 37px;
}
.factory-page .factory-2 .item {
  padding: 5.625% 0 7.5521% 0;
}
.factory-page .factory-2 .item .img-box {
  border-radius: 20px;
}
.factory-page .factory-2 .item .top {
  margin: 0 -300px;
}
.factory-page .factory-2 .item .top .slick-list {
  padding: 0 300px;
}
.factory-page .factory-2 .item .bottom {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.factory-page .factory-2 .item .bottom ul li .img {
  border: 1px solid transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-radius: 5px;
  overflow: hidden;
}
.factory-page .factory-2 .item .bottom ul .slick-current li .img {
  border-color: var(--color);
}
.factory-page .factory-2 .item:nth-child(even) {
  background-color: #f4f4f4;
}
.faq-page #index-body .i-init6 {
  background: transparent;
  padding-top: 45px;
}
.faq-page #index-body .i-init6 .box {
  max-width: 1735px;
  padding-right: 15px;
}
.faq-page #index-body .i-init6 .box .left {
  width: 47.326%;
}
.faq-page #index-body .i-init6 .box .right {
  padding-top: 143px;
  width: 48.024%;
}
.faq-page .left {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.faq-page .item:last-child {
  margin-bottom: 0;
}
.about-page #index-body .i-init2 {
  background: url(../images/about-bgb.jpg) no-repeat center bottom;
  padding-top: 0;
  padding: 5.73% 0 5.26042% 0;
}
.about-page #index-body .i-init2 .left .img1 .bottom {
  width: 58.13%;
  margin: -60px auto 0;
}
.about-page #index-body .i-init2 .left .play {
  width: 4.75em;
  height: 4.75em;
}
.about-page #index-body .i-init2 .right .con p {
  margin-top: 30px;
}
.about-page #index-body .i-init2 .right .con p:first-child {
  margin-top: 0;
}
.about-page #index-body .i-init2 .data ul {
  margin: -26.5px;
}
.about-page #index-body .i-init2 .data ul li {
  padding: 26.5px;
}
.about-page .about-1 {
  padding: 6.3542% 0 3.542%;
}
.about-page .about-1 ul li {
  color: #010101;
  border-radius: 20px;
  margin-bottom: 12px;
}
.about-page .about-1 ul li .con {
  width: 63%;
  line-height: 1.6;
}
.about-page .about-1 ul li:last-child {
  margin-bottom: 0;
}
.about-page .about-1 ul li:hover {
  background: var(--color);
  color: #fff;
}
.about-page .about-2 {
  padding: 5.73% 0 6.25%;
}
.about-page .about-2 .con {
  line-height: 1.6;
  color: #010101;
}
.about-page .about-2 .content {
  margin: 0 -300px;
}
.about-page .about-2 ul .slick-list {
  padding: 0 300px;
}
.about-page .about-2 ul li .img-box {
  border-radius: 20px;
}
.about-page .honor-1 {
  background: transparent;
  padding-bottom: 6.98%;
}
.about-page .about-3 {
  padding: 6.71875% 0 43px 0;
}
.about-page .about-3 .content .text {
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  line-height: 1.6;
  text-align: left;
}
.product-page {
  background-color: #f2f6fe;
}
.product-page .container {
  width: 1550px;
}
.product-page .sidebox {
  padding: 7.04% 0 7.1053%;
}
.product-page .sidebox .sideleft {
  width: 23.62%;
  background: #fff;
  border-radius: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.product-page .sidebox .sideleft ul li .yj {
  background-color: #f0f0f0;
  border-radius: 25px;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sidebox .sideleft ul li .yj i {
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.product-page .sidebox .sideleft ul li .yj:hover,
.product-page .sidebox .sideleft ul li .yj.active {
  background: var(--color);
  color: #fff;
}
.product-page .sidebox .sideleft ul li .children {
  padding: 9px 0 0 20px;
  display: none;
}
.product-page .sidebox .sideleft ul li .children li a {
  display: block;
  font-size: 14px;
  background-color: #f0f0f0;
  border-radius: 25px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sidebox .sideleft ul li .children li a:hover,
.product-page .sidebox .sideleft ul li .children li a.active {
  background: var(--color);
  color: #fff;
}
.product-page .sidebox .sideright {
  width: 76.38%;
}
.product-page .sidebox .sideright h1 {
  border-bottom: 1px solid rgba(114, 114, 114, 0.48);
}
.product-page .sidebox .sideright ul {
  margin: -40px -13px;
}
.product-page .sidebox .sideright ul li {
  padding: 40px 13px;
}
.product-page .sidebox .sideright ul li .ig .img-box {
  background: #fff;
  -webkit-box-shadow: 6px 6px 36px 2px rgba(97, 97, 97, 0.14);
  box-shadow: 6px 6px 36px 2px rgba(97, 97, 97, 0.14);
  border-radius: 20px;
}
.product-page .sidebox .sideright ul li .ig .text {
  top: 0;
  left: 0;
  width: 100%;
}
.product-page .sidebox .sideright ul li .ig .more {
  position: absolute;
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sidebox .sideright ul li .ig:hover .more {
  opacity: 1;
}
.product-page .sidebox .sideright .desc {
  line-height: 1.6;
  color: #010101;
  opacity: 0.8;
  /*max-height: 210px;*/
  overflow-y: auto;
}
.m-page {
  padding-top: 5%;
}
.m-page a,
.m-page span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 3px;
  width: 2.5em;
  height: 2.5em;
  background-color: #f5f5f5;
  border-radius: 10px;
  font-size: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.m-page a:hover,
.m-page span {
  background: var(--color);
  color: #fff;
}
.public-seo .container {
  width: 1550px;
}
.public-seo .public-about {
  padding: 7.4% 0;
}
.public-seo .public-about .left {
  width: 30.2%;
  border-radius: 20px;
  overflow: hidden;
}
.public-seo .public-about .left .play {
  width: 4.75em;
  height: 4.75em;
}
.public-seo .public-about .right {
  width: 69.8%;
}
.public-seo .public-about .right .con {
  color: #575757;
}
.public-seo .public-about .right .con p {
  margin-top: 27px;
}
.public-seo .public-about .right .con p:first-child {
  margin-top: 0;
}
.public-seo .public-honor {
  padding: 5% 0 5.573% 0;
}
.public-seo .public-honor .header .left {
  width: 45%;
}
.public-seo .public-honor .header .right {
  line-height: 1.6;
  color: #010101;
  width: 41%;
}
.public-seo .public-news {
  padding: 5.15625% 0 24px 0;
}
.public-seo .public-industry{
	padding: 5.15625% 0 24px 0;
}
.public-seo .public-industry .content p {
	line-height: 2em;
}
.public-seo .public-industry .content h2,
.public-seo .public-industry .content h3{
	font-size: 1.5em;
	line-height: 2em;
   font-weight: 800;
}
.prodet-page .content ol li,
.prodet-page .content ul li{
	list-style-type:disc;
	margin-left:2em;
}
.prodet-page .container {
  width: 1550px;
}
.prodet-page .container .item .content ol li{
	margin-top:2em;
}
.prodet-page .prodet-1 {
  background-color: #f6f6f6;
  padding: 5.521% 0 5.89%;
}
.prodet-page .prodet-1 .left {
  width: 55.26%;
}
.prodet-page .prodet-1 .left .small {
  width: 14.645%;
}
.prodet-page .prodet-1 .left .small ul {
  margin-bottom: -22px;
}
.prodet-page .prodet-1 .left .small ul .slick-track {
  display: block;
}
.prodet-page .prodet-1 .left .small ul li {
  padding-bottom: 22px;
}
.prodet-page .prodet-1 .left .small ul li .img {
  display: block;
  border: 1px solid transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
}
.prodet-page .prodet-1 .left .small ul li .img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .left .small ul .slick-current li .img {
  border-color: #1b1a1a;
}
.prodet-page .prodet-1 .left .small ul .slick-current li .img::after {
  opacity: 0;
}
.prodet-page .prodet-1 .left .big {
  width: 85.355%;
}
.prodet-page .prodet-1 .left .big .play{
	top: 86%;
	left: 16%;
	padding-left: 6px;
}
.prodet-page .prodet-1 .right {
  width: 44.74%;
}
.prodet-page .prodet-1 .right h1 {
  line-height: 1.3;
}
.prodet-page .prodet-1 .right .price {
  opacity: .77;
  border-bottom: 1px solid #b1b1b1;
}
.prodet-page .prodet-1 .right .con {
  line-height: 1.6;
  /*max-height: 103px;*/
  overflow-y: auto;
}
.prodet-page .prodet-1 .right .form {
  border-top: 1px solid #b1b1b1;
}
.prodet-page .prodet-1 .right .form ul {
  margin: -5.5px -10px;
}
.prodet-page .prodet-1 .right .form ul li {
  padding: 5.5px 10px;
}
.prodet-page .prodet-1 .right .form ul li label {
  line-height: 2;
  margin-bottom: 9px;
}
.prodet-page .prodet-1 .right .form ul li button {
  border: 0;
  background: #000;
}
.prodet-page .prodet-1 .right .form ul li button::before {
  background: var(--color);
}
.prodet-page .prodet-1 .right .form ul li button:hover i {
  background: #fff;
}
.prodet-page .prodet-1 .right .form ul li button:hover i img {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.prodet-page .prodet-1 .right .form ul li:last-child {
  width: auto;
  margin: 24px 0 0 auto;
}
.prodet-page .prodet-1 .right .form input {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border-radius: 20px;
  border: 0;
  padding: 0 15px;
}
.prodet-page .prodet-1 .right .m-link {
  line-height: 2;
  margin-top: -9%;
  width: 66%;
}
.prodet-page .prodet-2 {
  padding-bottom: 6.9271%;
}
.prodet-page .prodet-2 .item {
  padding: 6.2% 0 0 0;
}
.prodet-page .prodet-2 .item .title {
  border-bottom: 1px solid #b1b1b1;
}
.prodet-page .prodet-2 .item .title .icon {
  width: 15px;
  height: 15px;
  position: relative;
  cursor: pointer;
}
.prodet-page .prodet-2 .item .title .icon::before,
.prodet-page .prodet-2 .item .title .icon::after {
  content: '';
  position: absolute;
  background: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .item .title .icon::before {
  width: 100%;
  height: 4px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.prodet-page .prodet-2 .item .title .icon::after {
  width: 4px;
  height: 100%;
  top: 0;
  left: 52%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
}
.prodet-page .prodet-2 .item .title .icon.active::after {
  opacity: 1;
}
.prodet-page .prodet-2 .item .content {
  font-size: 16px;
  line-height: 1.6;
  color: #010101;
}
.prodet-page .prodet-2 .item .content table {
  border: 0;
}
.prodet-page .prodet-2 .item .content table td {
  border: 0;
  padding: 17.5px 15px;
}
.prodet-page .prodet-2 .item .content table tr:nth-child(odd) {
  background: rgba(224, 224, 224, 0.35);
}
.prodet-page .prodet-2 .item .content table tr:nth-child(even) {
  background: #fff;
}
.prodet-page .prodet-2 .item .content .list {
  margin: 0 -300px;
}
.prodet-page .prodet-2 .item .content .list .slick-list {
  padding: 0 400px;
}
.prodet-page .prodet-2 .item .content video {
  width: 100%;
  border-radius: 20px;
}
strong {
  font-weight: bold;
}
.resource-page .resource-1 {
  padding: 4.2% 0;
  background: #F8FAFC;
}
.resource-page .resource-1 .container {
  width: 1130px;
}
.resource-page .resource-1 .left {
  width: 23.3%;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.resource-page .resource-1 .left .ig {
  background: var(--color);
  color: #fff;
  padding: 24px;
}
.resource-page .resource-1 .left .icon {
  width: 64px;
  height: 64px;
  margin: 30px auto 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.resource-page .resource-1 .left .bottom {
  background: #fff;
  padding: 20px 0;
}
.resource-page .resource-1 .left .bottom i {
  height: 1px;
  display: block;
  background: #b1b1b1;
}
.resource-page .resource-1 .right {
  width: 50%;
}
.resource-page .resource-1 .right .title {
  line-height: 1;
}
.resource-page .resource-1 .right .form {
  padding: 24px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.resource-page .resource-1 .right .form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.resource-page .resource-1 .right .form input:focus {
  border-color: var(--color);
}
.resource-page .resource-1 .right .form button {
  text-align: center;
  border: 0;
  background: var(--color);
  color: #fff;
  width: 100%;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 20px;
}
.resource-page .resource-1 .right .form p {
  color: #575757;
}
.resource-page .resource-2 {
  padding: 4.2% 0;
}
.resource-page .resource-2 .con {
  color: #575757;
}
.resource-page .resource-2 video {
  width: 100%;
  border-radius: 20px;
}
.resource-page .resource-2 .desc {
  color: #575757;
}
.resource-page .resource-2 ul li:hover .title {
  color: var(--color);
}
.resource-page .resource-3 {
  background: #F8FAFC;
  padding: 4.2% 0;
}
.resource-page .resource-3 .con {
  color: #575757;
}
.resource-page .resource-3 .content {
  max-width: 800px;
  margin: 48px auto 0;
}
.resource-page .resource-3 .content ul li {
  background: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-bottom: 16px;
  cursor: pointer;
}
.resource-page .resource-3 .content ul li i {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.resource-page .resource-3 .content ul li .bottom {
  line-height: 1.6;
  color: #575757;
  border-left: 2px solid var(--color);
}
.resource-page .resource-3 .content ul li:hover {
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}
.resource-page .resource-3 .content ul li:last-child {
  margin-bottom: 0;
}
.resource-page .resource-3 .content ul li.active i {
  color: var(--color);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.resource-page .resource-3 .btn a:first-child {
  color: #575757;
}
.resource-page .resource-3 .btn a:last-child {
  color: var(--color);
}
.resource-page .resource-3 .btn a:last-child:hover {
  text-decoration: underline;
}
.news-page ul {
  margin: -15px;
}
.news-page ul li {
  padding: 15px;
}
.newdet-page .box {
  padding: 5% 0;
}
.newdet-page .box .left {
  width: 35%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.newdet-page .box .right {
  width: 65%;
  padding-left: 3%;
}
@media (max-width: 1700px) {
  .faq-page #index-body .i-init6 .box {
    max-width: 1420px;
  }
  .product-page .container,
  .prodet-page .container,
  .public-seo .container {
    width: 1430px;
  }
}
@media (max-width: 1450px) {
  .faq-page #index-body .i-init6 .box {
    max-width: 1220px;
  }
  .product-page .container,
  .prodet-page .container,
  .public-seo .container {
    width: 1230px;
  }
}
@media (max-width: 1250px) {
  .inner-banner {
    height: 400px;
  }
  .contact-page .contact-1 .right .currentTime {
    font-size: 130px;
  }
  .faq-page #index-body .i-init6 .box {
    max-width: 1020px;
  }
  .product-page .container,
  .prodet-page .container,
  .public-seo .container {
    width: 1030px;
  }
  .slickGap-143 {
    margin: 0 -20px;
  }
  .slickGap-143 li {
    padding: 0 20px;
  }
  .ml-26 {
    margin-left: 7px;
  }
  .prodet-page .prodet-1 .right .m-link {
    margin-top: -4%;
  }
  .resource-page .resource-1 .container {
    width: 1000px;
  }
}
@media (max-width: 1000px) {
  .inner-banner {
    height: 300px;
  }
  .inner-banner .text .right {
    display: none;
  }
  .contact-page .contact-1 .right .currentTime {
    font-size: 80px;
  }
  .flex-4 > * {
    width: 33.3333%;
  }
  .faq-page #index-body .i-init6 .box {
    padding: 0 15px;
  }
  .faq-page #index-body .i-init6 .box .right {
    width: 100%;
    padding-top: 0;
  }
  .product-page .container,
  .prodet-page .container,
  .public-seo .container {
    width: 700px;
  }
  .product-page .sidebox .sideleft {
    display: none;
  }
  .product-page .sidebox .sideright {
    width: 100%;
    padding-left: 0;
  }
  .public-seo .public-about .right .con {
    max-height: 200px;
    overflow-y: auto;
  }
  .public-seo .public-honor .header .left {
    width: 100%;
  }
  .public-seo .public-honor .header .right {
    width: 100%;
    margin-top: 10px;
  }
  .font-35 {
    font-size: 26px;
  }
  .font-40 {
    font-size: 30px;
  }
  .prodet-page .prodet-1 .left {
    width: 100%;
  }
  .prodet-page .prodet-1 .right {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .prodet-page .prodet-2 .item .title {
    font-size: 24px;
  }
  .resource-page .resource-1 .container {
    width: 700px;
  }
  .resource-page .resource-1 .left {
    width: 32%;
  }
  .resource-page .resource-1 .right {
    width: 60%;
  }
}
@media (max-width: 700px) {
  .contact-page .contact-1 .right {
    text-align: left;
    margin-top: 20px;
  }
  .contact-page .contact-2 ul {
    margin: -10px;
  }
  .contact-page .contact-2 ul li {
    padding: 10px;
  }
  .contact-page .contact-2 ul li .title {
    font-size: 20px;
  }
  .contact-page .contact-3 ul {
    margin: -6px;
  }
  .contact-page .contact-3 ul li {
    padding: 6px;
  }
  .contact-page .contact-4 .add .text .title {
    font-size: 20px;
  }
  .honor-page .honor-1 .header .left {
    width: 100%;
  }
  .honor-page .honor-1 .header .right {
    width: 100%;
    margin-top: 20px;
  }
  .honor-page .honor-1 .icon ul li {
    width: 33.3333%;
  }
  .flex-4 > *,
  .flex-3 > * {
    width: 50%;
  }
  .about-page #index-body .i-init2 .data ul {
    margin: -13px;
  }
  .about-page #index-body .i-init2 .data ul li {
    padding: 13px;
  }
  .about-page .about-1 ul li {
    padding: 20px 15px;
  }
  .product-page .container,
  .prodet-page .container,
  .public-seo .container {
    width: 100%;
  }
  .public-seo .public-about .left {
    width: 100%;
  }
  .public-seo .public-about .right {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .public-seo .public-news .header .more {
    margin: 20px 0 0 0;
  }
  .public-seo .public-news .time {
    margin-left: 0;
  }
  .public-seo .public-news .title {
    line-height: 2;
  }
  .resource-page .resource-1 .container {
    width: 100%;
  }
  .resource-page .resource-1 .left {
    width: 50%;
    margin: 0 auto;
  }
  .resource-page .resource-1 .left .title {
    font-size: 20px;
  }
  .resource-page .resource-1 .left .title em {
    font-size: 30px;
  }
  .resource-page .resource-1 .left .tit {
    font-size: 16px;
  }
  .resource-page .resource-1 .right {
    width: 100%;
    margin-top: 20px;
  }
  .font-30 {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .inner-banner {
    height: 200px;
  }
  .inner-banner .title,
  .inner-banner .con {
    display: none;
  }
  .inner-banner .btn {
    zoom: .7;
  }
  .inner-banner .btn .more:first-child {
    display: none;
  }
  .inner-banner .btn .more:last-child {
    margin-left: 0;
  }
  .inner-banner .mbx {
    margin: 0;
  }
  .contact-page .contact-1 .right .currentTime {
    font-size: 70px;
  }
  .font-16 {
    line-height: 2 !important;
  }
  .font-50 {
    font-size: 26px;
    line-height: 1.3;
  }
  .contact-page .contact-2 ul li {
    width: 100%;
  }
  .contact-page .contact-2 ul li i {
    width: 60px;
    height: 60px;
  }
  .flex-4 > *,
  .flex-3 > *,
  .flex-2 > * {
    width: 100%;
  }
  .contact-page .contact-4 .map {
    height: 300px;
  }
  .contact-page .contact-4 .add i {
    width: 60px;
    height: 60px;
  }
  .honor-page .honor-1 .icon ul li {
    width: 50%;
  }
  .honor-page .honor-1 .content ul {
    margin: -12px 0;
  }
  .honor-page .honor-1 .content ul li {
    padding: 12px 0;
  }
  .font-30 {
    font-size: 24px;
  }
  .about-page .about-1 ul li .con {
    width: 100%;
    margin-top: 20px;
  }
  .about-page .about-2 .header .more {
    margin-top: 20px;
  }
  .about-page .about-3 .content .text {
    padding: 0 15px 20px;
    max-height: 80px;
    overflow-y: auto;
  }
  .m-page a,
  .m-page span {
    font-size: 14px;
  }
  .prodet-page .prodet-1 .right .m-link {
    margin-top: 0;
    width: 100%;
  }
  .prodet-page .prodet-2 .item .title {
    font-size: 20px;
  }
  .font-20 {
    font-size: 16px;
  }
  .resource-page .resource-1 .left {
    width: 70%;
  }
  .resource-page .resource-1 .right .form {
    padding: 12px;
  }
  .newdet-page .box .left {
    width: 100%;
    position: initial;
  }
  .newdet-page .box .right {
    width: 100%;
    padding: 20px 0 0 0;
  }
}
.oem-page .i-title {
  font-size: 50px;
  line-height: 1.5;
}
.oem-page .oem-1 {
  padding: 5.625% 0 5.15625%;
}
.oem-page .oem-1 .header .con {
  color: #010101;
  line-height: 1.6;
}
.oem-page .oem-1 .content ul {
  margin: -24.5px;
}
.oem-page .oem-1 .content ul li {
  padding: 24.5px;
}
.oem-page .oem-1 .content ul li .ig {
  background-color: #ffffff;
  -webkit-box-shadow: 9px 9px 32px 0px rgba(0, 0, 0, 0.24);
  box-shadow: 9px 9px 32px 0px rgba(0, 0, 0, 0.24);
  border-radius: 20px;
  border: solid 7px #fff;
  height: 100%;
  position: relative;
  z-index: 1;
}
.oem-page .oem-1 .content ul li .ig .icon {
  width: 85px;
  height: 85px;
  background-color: #dbeafe;
  border-radius: 10px;
}
.oem-page .oem-1 .content ul li .ig .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.oem-page .oem-1 .content ul li .ig .text .title {
  line-height: 1.3;
  min-height: 91px;
}
.oem-page .oem-1 .content ul li .ig .text .con {
  color: #010101;
}
.oem-page .oem-1 .content ul li .ig::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 7px solid var(--color);
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.oem-page .oem-1 .content ul li .ig::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: -7px;
  left: -7px;
  bottom: -7px;
  right: -7px;
  border: 7px solid #dbeafe;
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.oem-page .oem-1 .content ul li:hover .ig,
.oem-page .oem-1 .content ul li.active .ig {
  background-color: #f8fafc;
  -webkit-box-shadow: 9px 9px 32px 0px rgba(0, 0, 0, 0.24);
  box-shadow: 9px 9px 32px 0px rgba(0, 0, 0, 0.24);
}
.oem-page .oem-1 .content ul li:hover .ig .icon,
.oem-page .oem-1 .content ul li.active .ig .icon {
  background: var(--color);
}
.oem-page .oem-1 .content ul li:hover .ig .icon img,
.oem-page .oem-1 .content ul li.active .ig .icon img {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.oem-page .oem-1 .content ul li:hover .ig::before,
.oem-page .oem-1 .content ul li.active .ig::before,
.oem-page .oem-1 .content ul li:hover .ig::after,
.oem-page .oem-1 .content ul li.active .ig::after {
  opacity: 1;
}
.oem-page .oem-2 {
  background-color: #fafafa;
  padding-bottom: 6.25%;
}
.oem-page .oem-2 .header .con {
  color: #010101;
  line-height: 1.6;
}
.oem-page .oem-2 .content ul {
  margin: -10px;
}
.oem-page .oem-2 .content ul .slick-slide {
  height: auto;
}
.oem-page .oem-2 .content ul .slick-slide > div {
  height: 100%;
}
.oem-page .oem-2 .content ul li {
  padding: 10px;
  height: 100%;
}
.oem-page .oem-2 .content ul li .ig {
  height: 100%;
  background: #fff;
  border-radius: 20px;
}
.oem-page .oem-2 .content ul li .ig span {
  display: inline-block;
  line-height: 1;
  padding: 9px 20px 9px 21px;
  background-color: #f4f4f4;
  border-radius: 5px;
  position: absolute;
  top: 12px;
  right: 24px;
}
.oem-page .oem-2 .content ul li .ig i {
  line-height: 46px;
  display: block;
}
.oem-page .oem-2 .content ul li .ig i img {
  vertical-align: middle;
}
.oem-page .oem-2 .content ul li .ig .text .title {
  min-height: 60px;
}
.oem-page .oem-2 .content ul li .ig:hover {
  -webkit-box-shadow: 9px 9px 32px 0px rgba(0, 0, 0, 0.24);
  box-shadow: 9px 9px 32px 0px rgba(0, 0, 0, 0.24);
}
.oem-page .oem-3 {
  background-color: #dbeafe;
  padding: 4.9% 0 5.0521%;
}
.oem-page .oem-3 .icon {
  width: 20.76%;
}
.oem-page .oem-3 .text {
  width: 79.24%;
}
.oem-page .oem-3 .text .con {
  line-height: 1.4;
}
.oem-page .oem-3 .text .list ul {
  margin: -7px;
}
.oem-page .oem-3 .text .list ul li {
  padding: 7px;
}
.oem-page .oem-3 .text .list ul li span {
  background: #fff;
  border-radius: 35px;
  border: solid 2px #1c66b1;
}
.oem-page .contact-page .contact-3 {
  padding: 4.95% 0 6.3542%;
}
.oem-page .oem-4 {
  padding: 6.67% 0 31px 0;
}
.oem-page .oem-4 .header .con {
  color: #010101;
  line-height: 1.6;
}
.oem-page .oem-4 .content ul {
  margin: -11px -18px;
}
.oem-page .oem-4 .content ul li {
  padding: 11px 18px;
  height: auto;
}
.oem-page .oem-4 .content ul li .ig {
  background-color: #f8fafc;
  border-radius: 20px;
  height: 100%;
}
.oem-page .oem-4 .content ul li .ig .icon {
  line-height: 66px;
  display: block;
}
.oem-page .oem-4 .content ul li .ig .icon img {
  vertical-align: middle;
}
.oem-page .oem-4 .content ul li .ig .title {
  line-height: 1.3;
}
.oem-page .oem-4 .content ul li .ig .con {
  line-height: 1.6;
  color: #010101;
  opacity: 0.8;
}
@media (max-width: 1250px) {
  .oem-page .i-title {
    font-size: 40px;
  }
}
@media (max-width: 1000px) {
  .oem-page .i-title {
    font-size: 36px;
  }
  .oem-page .oem-1 .content ul {
    margin: -10px;
  }
  .oem-page .oem-1 .content ul li {
    padding: 10px;
  }
  .oem-page .oem-1 .content ul li .ig {
    padding: 20px 15px;
    -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.24);
  }
  .oem-page .oem-1 .content ul li .ig .text {
    -webkit-box-flex: initial;
    -webkit-flex: initial;
    -moz-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    width: 100%;
    margin: 20px 0 0 0;
  }
  .oem-page .oem-4 .content ul {
    margin: -6px -9px;
  }
  .oem-page .oem-4 .content ul li {
    padding: 6px 9px;
  }
  .oem-page .oem-4 .content ul li .ig {
    padding: 20px 15px 40px;
  }
}
@media (max-width: 700px) {
  .oem-page .i-title {
    font-size: 30px;
  }
  .oem-page .oem-1 .content ul li .ig .text .title {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .oem-page .oem-1 .content ul li .ig .text .title {
    min-height: auto;
  }
  .oem-page .i-title {
    font-size: 26px;
  }
  .oem-page .oem-3 .icon {
    width: 100%;
  }
  .oem-page .oem-3 .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
}
#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;
  cursor: hand;
  -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;
}

.newdet-page .box .right .con h2{
  font-size: 1.4em;
}
.newdet-page .box .right .con strong{
  font-weight: bold!important;
}
.newdet-page .box .right .con p{
  line-height: 2em;
}
.newdet-page .box .right .con ul{
  padding-left: 40px;
  margin: 15px 0;
}
.newdet-page .box .right .con ul li{
  list-style: disc;
}