@font-face {
  font-family: 'Grift';
  src: url('../fonts/Grift-Regular.eot');
  src: url('../fonts/Grift-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Grift-Regular.woff2') format('woff2'), url('../fonts/Grift-Regular.woff') format('woff'), url('../fonts/Grift-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Grift';
  src: url('../fonts/Grift-Bold.eot');
  src: url('../fonts/Grift-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Grift-Bold.woff2') format('woff2'), url('../fonts/Grift-Bold.woff') format('woff'), url('../fonts/Grift-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
body {
  font-family: "Grift";
  max-width: 1920px;
  --color: #f1ab3e;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1490px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#header .nav .ui.menu {
  margin: 0 auto;
  height: 90px;
  width: auto;
  max-width: 1640px;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  clip-path: polygon(0 0,40% 0,40% 100%,0 100%);
  transition: .5s;
}
#header.active .nav .ui.menu .logo {
  filter: unset;
  clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
  height: 100%;
  width: 40%;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li > a:before {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background-color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > a:before {
  opacity: 1;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .box {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}
#header.active {
  background-color: white;
  color: black;
}
#header.active .nav {
  border-bottom-color: rgba(0, 0, 0, 0.2);
}
#header.active .nav .ui.menu .box {
  border-left-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
span.h2 {
  line-height: 1.2;
}
.more {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color);
  height: 2.82352941em;
  padding: 0 0.82352941em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more:hover,
.product-page .product-1 .sideBarLeft ul li:hover .box .content .more
 {
  background-color: var(--color);
  color: white;
}
.link {
  padding-bottom: 0.375em;
  border-bottom: 1px solid black;
  line-height: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.link:hover,
.init-5 .box .right ul li:hover .link{
  color: var(--color);
  border-bottom-color: var(--color);
}
span.tag {
  /*font-style: italic;*/
  line-height: 1;
}
.text {
  line-height: 1.66666667;
}
#banner li {
  position: relative;
}
#banner li video {
  position: relative;
  z-index: -2;
}
#banner li:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;

  z-index: -1;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner li .content span.page {
  font-style: italic;
  line-height: 1;
}
#banner li .content span.page em {
  margin-bottom: .5em;
}
#banner li .content span.h3 {
  width: 50%;
  line-height: 1.2;
}
#banner li .content p {
  max-width: 220px;
}
#index-body .init-1 .box {
  background-color: #f7f7f7;
}
#index-body .init-1 .box .img img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .box .content {
  padding: 8%;
}
#index-body .init-1 .box:hover .img img:not([class]) {
  opacity: 0;
}
#index-body .init-1 .box:hover .img img[class] {
  opacity: 1;
}
#index-body .init-2 {
  overflow: hidden;
}
#index-body .init-2 .img {
  height: 25vw;
  color: white;
  padding: 5%;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}
#index-body .init-2 .img span {
  display: block;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#index-body .init-2 .img:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(rgba(0, 0, 0, 0.3)));
  background-image: -webkit-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.3));
  background-image: -moz-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.3));
  background-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.3));
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: -1;
}
#index-body .init-2 .img2 {
  height: 5.72916667vw;
  display: block;
}
#index-body .init-2 .slick-slider:not(.slick-vertical) .slick-track .slick-slide > div {
  height: auto;
}
#index-body .init-2 a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 ul {
  margin: -0.5em;
}
#index-body .init-2 ul li {
  padding: .5em;
}
#index-body .init-2 ul li > .pre {
  overflow: hidden;
}
#index-body .init-2 ul li dl {
  margin: 0 -3px;
}
#index-body .init-2 ul li dd {
  padding: 0 3px;
  display: block !important;
}
#index-body .init-2 ul li .big {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 ul li .small {
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 ul li:hover .big {
  padding-bottom: 6.5625vw;
}
#index-body .init-2 ul li:hover .big a {
  height: 18.4375vw;
}
#index-body .init-2 ul li:hover .big a span {
  opacity: 1;
}
#index-body .init-2 ul li:hover .big a:before {
  opacity: 1;
}
#index-body .init-2 ul li:hover .small {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#index-body .init-3 .play {
  width: 4em;
  height: 4em;
  background-color: transparent;
}
#index-body .init-3 .play:after,
#index-body .init-3 .play:before {
  background-color: white;
}
#index-body .init-3 .text {
  color: #545454;
}
#index-body .init-3 span.h2 {
  max-width: 560px;
  line-height: 1.4;
}
#index-body .init-4 .top .text {
  line-height: 1.33333333;
  font-weight: bold;
}
#index-body .init-4 .bottom .left {
  z-index: 1;
  background-color: #93bedf;
}
#index-body .init-4 .bottom .left .mask i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: -1;
}
#index-body .init-4 .bottom .left .mask i:nth-child(1) {
  opacity: 1;
}
#index-body .init-4 .bottom .left p {
  max-width: 90px;
}
#index-body .init-4 .bottom .left span.h6 {
  line-height: 1;
}
#index-body .init-4 .bottom .left:hover .mask i:nth-child(1) {
  opacity: 0;
}
#index-body .init-4 .bottom .left:hover .mask i:nth-child(2) {
  opacity: 1;
}
#index-body .init-4 .bottom .center {
  background-color: #f1ab3e;
  color: white;
}
#index-body .init-4 .bottom .center span.h6 {
  line-height: .8;
}
#index-body .init-4 .bottom .center .link {
  border-bottom-color: white;
}
#index-body .init-4 .bottom .center .link:hover {
  color: black;
  border-bottom-color: black;
}
#index-body .init-4 .bottom .right span.h6 {
  line-height: 1;
}
#index-body .init-4 .bottom .right .text {
  color: #646464;
}
#index-body .init-5 .box .left .img {
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index-body .init-5 .box .left .img:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: inherit;
  z-index: -1;
  animation: fd 5s linear alternate infinite;
}
@keyframes fd {
  form {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
#index-body .init-5 .box .left .img span.cat {
  height: 2.375em;
  padding: 0 1.75em;
  background-color: #f1f2f6;
  color: black;
}
#index-body .init-5 .box .left .img span.h6 {
  font-style: italic;
}
#index-body .init-5 .box .left .img .content {
  width: 100%;
}
#index-body .init-5 .box .left .img form {
  border: 1px solid white;
  border-radius: 2.5em;
  width: 100%;
}
#index-body .init-5 .box .left .img form input {
  width: 100%;
  padding: 0 1em;
  background-color: transparent;
  border: none;
}
#index-body .init-5 .box .left .img form input::-webkit-input-placeholder {
  color: white;
}
#index-body .init-5 .box .left .img form input:-moz-placeholder {
  color: white;
}
#index-body .init-5 .box .left .img form input::-moz-placeholder {
  color: white;
}
#index-body .init-5 .box .left .img form input:-ms-input-placeholder {
  color: white;
}
#index-body .init-5 .box .left .img form input::placeholder {
  color: white;
}
#index-body .init-5 .box .left .img form button {
  height: 2.25em;
  padding: 0 1.375em;
  border-radius: 2.5em;
  border: none;
  background-color: white;
  color: black;
}
#index-body .init-5 .box .right li .box2 {
  background-color: #f1f2f6;
  background-repeat: no-repeat;
  background-position: right 5% bottom;
  background-size: 100%;
}
#index-body .init-5 .box .right li .box2 time {
  line-height: 1.2;
}
#index-body .init-5 .box .right li .box2 span.h6 {
  line-height: 1.2;
}
#index-body .init-5 .box .right li .box2 .text {
  color: #4b4b4b;
}
#footer .footer-top span.h6 {
  line-height: 1;
}
#footer .footer-center .line {
  width: 100%;
  max-width: 190px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.66);
  position: relative;
}
#footer .footer-center .line:before {
  content: '';
  width: 15%;
  height: 3px;
  position: absolute;
  left: 0;
  top: -1px;
  background-color: white;
}
#footer .footer-center span.h6 {
  line-height: 1;
}
#footer .footer-center .info {
  line-height: 2;
  max-width: 350px;
}
#footer .footer-center .nav {
  line-height: 2;
}
#footer .footer-center .nav a:hover {
  text-decoration: underline;
}
#footer .footer-center .nav li ul {
  display: none;
}
#footer .footer-center .share a {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: white;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-center .share a:hover {
  background-color: var(--color);
  color: white;
}
#footer .footer-center form {
  width: 510px;
}
#footer .footer-center form input {
  width: 100%;
  padding-bottom: 1.42857143em;
  padding-top: .9em;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  background-color: transparent;
}
#footer .footer-center form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
#footer .footer-center form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
#footer .footer-center form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
#footer .footer-center form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
#footer .footer-center form input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}
#footer .footer-center form button {
  background-color: #fdf4e6;
  border: none;
  border-radius: 3em;
  height: 4em;
  padding: 0 2.57142857em;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-weight: bold;
}
#footer .footer-center form button:hover {
  background-color: var(--color);
  color: white;
}
#footer .coy svg {
  max-height: 1.625em;
  width: auto;
  display: block;
  fill: white;
}
@media screen and (max-width: 1250px) {
  #banner li .content span.page {
    display: none;
  }
  #banner li .content div.flex {
    display: none;
  }
  #index-body .init-2 .img {
    height: 30vw !important;
  }
  #index-body .init-2 .small {
    position: static !important;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    margin-top: 10px;
  }
  #index-body .init-2 .small a {
    height: 10vw;
  }
  #index-body .init-2 ul li:hover .big {
    padding-bottom: 0;
  }
  #index-body .init-2 ul li .big a span {
    opacity: 1;
  }
  #index-body .init-2 ul li .big a:before {
    opacity: 1;
  }
  #index-body .init-3 .play {
    max-width: 70px;
  }
  .font-19 {
    font-size: 16px;
  }
  #footer .footer-center form {
    width: 350px;
  }
}
@media screen and (max-width: 1000px) {
  #footer .footer-center .slide:nth-child(2),
  #footer .footer-center .slide:nth-child(3) {
    display: none;
  }
  #index-body .init-5 .box .left .img {
    height: 300px;
  }
  #index-body .init-4 .bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .init-4 .bottom .left {
    width: 100%;
    padding-left: 15%;
  }
  #index-body .init-4 .bottom .center {
    width: 100%;
  }
  #index-body .init-4 .bottom .right {
    width: 100%;
  }
  #banner span.h2 img {
    max-height: .8em;
  }
  .font-42 {
    font-size: 24px;
  }
  .font-24 {
    font-size: 18px;
  }
  #index-body .init-2 .img {
    height: 50vw !important;
  }
  #index-body .init-2 .small a {
    height: 16vw;
  }
  .font-36 {
    font-size: 20px;
  }
  .font-30 {
    font-size: 20px;
  }
}
@media screen and (max-width: 700px) {
  #footer .footer-center {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-center .slide {
    width: 100%;
    margin-bottom: 20px;
  }
  #footer .footer-center .slide form,
  #footer .footer-center .slide .info {
    max-width: none;
    width: 100%;
  }
  #footer .coy {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #banner li .content span.h3 {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  #index-body .init-4 .bottom .left {
    padding-left: 0;
  }
}

@-webkit-keyframes xz {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes xz {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes xz {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.inner-page .play {
  position: relative;
  cursor: pointer;
  cursor: hand;
}
.play.pos {
  position: absolute;
}
.play svg {
  width: 7.14285714em;
  height: auto;
  text-transform: uppercase;
  letter-spacing: .2em;
  -webkit-animation: xz 5s linear infinite;
  -moz-animation: xz 5s linear infinite;
  animation: xz 5s linear infinite;
  display: block;
}
.play svg path {
  fill: none;
}
.inner-banner .backImg {
  height: 560px;
  color: white;
}
.inner-banner .play {
  top: 100%;
  padding: 10px;
  background-color: white;
  border-radius: 100%;
  color: black;
  z-index: 1;
}
.inner-banner .play i {
  font-size: 2em;
}
.inner-page .more {
  background-color: #f7f7f7;
}
.inner-page .more:hover {
  background-color: var(--color)
}
.inner-page .m-page div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: .5em;
}
.inner-page .m-page div a,
.inner-page .m-page div span {
  width: 2em;
  height: 2em;
  border-radius: .5em;
  background-color: #f8f8f8;
  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;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page div a:hover,
.inner-page .m-page div span:hover {
  background-color: var(--color) !important;
  color: white;
}
.inner-page .m-page div span.current {
  background-color: var(--color) !important;
  color: white;
}
.inner-page .sideBarBox .sideBarRight {
  background-color: #f8f8f8;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.inner-page .sideBarBox .sideBarRight form {
  height: 2.63636364em;
  background-color: white;
  border-radius: 1.5em;
}
.inner-page .sideBarBox .sideBarRight form input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 1em;
}
.inner-page .sideBarBox .sideBarRight form input::-webkit-input-placeholder {
  color: #dedede;
}
.inner-page .sideBarBox .sideBarRight form input:-moz-placeholder {
  color: #dedede;
}
.inner-page .sideBarBox .sideBarRight form input::-moz-placeholder {
  color: #dedede;
}
.inner-page .sideBarBox .sideBarRight form input:-ms-input-placeholder {
  color: #dedede;
}
.inner-page .sideBarBox .sideBarRight form input::placeholder {
  color: #dedede;
}
.inner-page .sideBarBox .sideBarRight form button {
  background-color: transparent;
  border: none;
  margin: 0 1em;
}
.inner-page .sideBarBox .sideBarRight .nav {
  line-height: 1.2;
}
.inner-page .sideBarBox .sideBarRight .nav i {
  width: 0.75em;
  height: 0.75em;
  border-radius: 0.16666667em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarRight .nav i.iconfont {
  border: 1px solid black;
}
.inner-page .sideBarBox .sideBarRight .nav i.iconfont:before {
  font-size: .5em;
}
.inner-page .sideBarBox .sideBarRight .nav em {
  white-space: nowrap;
}
.inner-page .sideBarBox .sideBarRight .nav span {
  height: 1px;
  background-color: #adadad;
}
.inner-page .sideBarBox .sideBarRight .nav a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarRight .nav a.active,
.inner-page .sideBarBox .sideBarRight .nav a:hover {
  color: var(--color);
}
.inner-page .sideBarBox .sideBarRight .nav a.active i.iconfont,
.inner-page .sideBarBox .sideBarRight .nav a:hover i.iconfont {
  border-color: var(--color);
  background-color: var(--color);
  color: white;
}
.inner-page .sideBarBox .sideBarRight .reat time {
  color: #979797;
}
.inner-page .sideBarBox .sideBarRight .reat .text {
  color: #979797;
}
.inner-page .proList .box {
  background-color: white;
}
.inner-page .proList .box .img-box img {
  max-height: 300px;
  margin: 0 auto;
  width: auto;
  display: block;
}
.inner-page .proList .box .content {
  padding: 10%;
  padding-top: 0;
}
.inner-page .proList .box .content span.cat {
  color: var(--color);
  line-height: 1;
}
.inner-page .proList .box .content span.h6 {
  line-height: 1;
}
.about-page .about-1 span.h6 {
  color: #595959;
  border-left: 2px solid #a9a9a9;
  padding-left: 2.41666667em;
  line-height: 1;
  display: block;
  position: relative;
  z-index: 1;
}
.about-page .about-1 .img {
  height: 48.4375vw;
  width: 125%;
  margin-left: -29%;
  margin-top: -16%;
  margin-bottom: -14%;
  position: relative;
  background-size: contain;
}
.about-page .about-1 .img canvas {
  z-index: -1;
  position: relative;
}
.about-page .about-1 .text {
  color: #5f5f5f;
}
.about-page .about-2 {
  color: #000;
}
.about-page .about-2 .backImg {
  background-attachment: fixed;
}
.about-page .about-2 .left {
  position: -webkit-sticky;
  position: sticky;
  top: 40%;
}
.about-page .about-2 span.h2 {
  line-height: 1;
}
.about-page .about-2 svg {
  fill: white;
}
.about-page .about-2 span.h6 {
  line-height: 1;
}
.about-page .about-2 span.h6 sub {
  vertical-align: baseline;
  margin-left: .7em;
}
.about-page .about-2 .line {
  width: 50px;
}
.about-page .about-2 .line ul li {
  height: 90px;
  width: 2px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(rgba(0, 0, 0, 0.8)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.8), transparent);
  background-image: -moz-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.8), transparent);
  background-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.8), transparent);
  position: relative;
}
.about-page .about-2 .line ul li i {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  border: 2px solid #07121a;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-page .about-2 .year {
  font-style: italic;
}
.about-page .about-3 .left span.h2 {
  line-height: 1;
}
.about-page .about-3 .left .drop {
  position: relative;
  z-index: 1;
  user-focus: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.about-page .about-3 .left .drop > div {
  height: 100%;
  position: relative;
}
.about-page .about-3 .left .drop > div:before {
  content: '';
  width: 241.66666667%;
  padding-top: 241.66666667%;
  border-radius: 100%;
  border: 1px solid #ccc;
  position: absolute;
  left: -30%;
  top: -30%;
  z-index: -1;
}
.about-page .about-3 .left .drop .more {
  background-color: transparent;
  height: auto;
  padding: 0;
  font-style: italic;
  color: var(--color);
  line-height: 1;
}
.about-page .about-3 .left .drop .more i:after {
  border-color: var(--color);
}
.about-page .about-3 .left .drop .btn {
  -webkit-transform: rotate(-43.4deg) translate(-30%, -63%);
  -moz-transform: rotate(-43.4deg) translate(-30%, -63%);
  -ms-transform: rotate(-43.4deg) translate(-30%, -63%);
  transform: rotate(-43.4deg) translate(-30%, -63%);
}
.about-page .about-3 .left .drop .btn .prev {
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  transform: rotate(-15deg);
  color: var(--color);
}
.about-page .about-3 .left .drop .btn .next {
  -webkit-transform: rotate(18deg);
  -moz-transform: rotate(18deg);
  -ms-transform: rotate(18deg);
  transform: rotate(18deg);
  color: var(--color);
}
.about-page .about-3 .left .drop img {
  user-focus: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  position: relative;
  -webkit-transition: .5s transform;
  -moz-transition: .5s transform;
  transition: .5s transform;
}
.about-page .about-3 .left .drop .dropBtn {
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  max-width: 2em;
  -webkit-transform: translateY(-30%);
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.about-page .about-3 .left .drop .dropBtn img {
  -webkit-transform: rotate(43.4deg);
  -moz-transform: rotate(43.4deg);
  -ms-transform: rotate(43.4deg);
  transform: rotate(43.4deg);
}
.about-page .about-3 .left .drop .dropBtn.drag-right img {
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  transform: rotate(-40deg);
}
.about-page .about-3 .left .drop .dropBtn.drag-left img {
  -webkit-transform: rotate(140deg);
  -moz-transform: rotate(140deg);
  -ms-transform: rotate(140deg);
  transform: rotate(140deg);
}
.about-page .about-3 .right .list {
  width: 150%;
  margin-left: -50%;
  padding-left: 50%;
  overflow: hidden;
}
.about-page .about-3 .right .list .slick-list {
  overflow: unset;
}
.about-page .about-4 {
  /*background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(#fafafa));
  background-image: -webkit-linear-gradient(bottom, transparent, #fafafa);
  background-image: -moz-linear-gradient(bottom, transparent, #fafafa);*/
  background: #fafafa;
}
.about-page .about-4 span.h2 {
  line-height: 1;
}
.about-page .about-4 .text {
  color: #5b5b5b;
}
.about-page .about-4 ul.slick {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
.contact-page span.h2 {
  line-height: 1;
}
.contact-page span.tag {
  line-height: 1;
  color: var(--color);
}
.contact-page .contact-1 .right {
  background-color: #fafafa;
}
.contact-page .contact-1 .right .text {
  line-height: 2;
  color: #585858;
}
.contact-page .contact-2 .info i {
  color: var(--color);
}
.contact-page .contact-2 .info p {
  max-width: 480px;
}
.contact-page .contact-2 .form input,
.contact-page .contact-2 .form textarea {
  width: 100%;
  padding: .5em 1em;
  border-radius: .5em;
  border: none;
  background-color: #f7f7f7;
}
.contact-page .contact-2 .form input::-webkit-input-placeholder,
.contact-page .contact-2 .form textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}
.contact-page .contact-2 .form input:-moz-placeholder,
.contact-page .contact-2 .form textarea:-moz-placeholder {
  color: #b3b3b3;
}
.contact-page .contact-2 .form input::-moz-placeholder,
.contact-page .contact-2 .form textarea::-moz-placeholder {
  color: #b3b3b3;
}
.contact-page .contact-2 .form input:-ms-input-placeholder,
.contact-page .contact-2 .form textarea:-ms-input-placeholder {
  color: #b3b3b3;
}
.contact-page .contact-2 .form input::-webkit-input-placeholder, .contact-page .contact-2 .form textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}
.contact-page .contact-2 .form input:-moz-placeholder, .contact-page .contact-2 .form textarea:-moz-placeholder {
  color: #b3b3b3;
}
.contact-page .contact-2 .form input::-moz-placeholder, .contact-page .contact-2 .form textarea::-moz-placeholder {
  color: #b3b3b3;
}
.contact-page .contact-2 .form input:-ms-input-placeholder, .contact-page .contact-2 .form textarea:-ms-input-placeholder {
  color: #b3b3b3;
}
.contact-page .contact-2 .form input::placeholder,
.contact-page .contact-2 .form textarea::placeholder {
  color: #b3b3b3;
}
.contact-page .contact-2 .form textarea {
  height: 6em;
}
.contact-page .contact-2 .form button {
  border: none;
}
.contact-page .contact-2 .form button em {
  margin-left: 1em;
}
.contact-page .contact-3 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(#fafafa));
  background-image: -webkit-linear-gradient(bottom, transparent, #fafafa);
  background-image: -moz-linear-gradient(bottom, transparent, #fafafa);
  background-image: linear-gradient(to top, transparent, #fafafa);
}
.contact-page .contact-3 .play {
  background-color: var(--color);
  top: 0;
  padding: 10px;
  border-radius: 100%;
  color: white;
}
.contact-page .contact-3 .play svg {
  fill: white;
}
.contact-page .contact-3 .play i {
  font-size: 1.5em;
}
.contact-page .contact-3 iframe {
  width: 100%;
  background-color: #eee;
  border: none;
  display: block;
}
.contact-page .contact-3 span.h6 {
  color: #717171;
}
.news-page span.h2 {
  line-height: 1;
}
.news-page span.h6 {
  line-height: 1.2;
}
.news-page .more {
  color: black;
  background-color: white;
}
.news-page .more i:after {
  border-color: black;
}
.news-page .more:hover {
  background-color: var(--color);
  color: white;
}
.news-page .more:hover i:after {
  border-color: white;
}
.news-page time {
  color: #979797;
}
.news-page .text {
  color: #979797;
}
.news-page .news-1 .link a {
  height: 2em;
  padding: 0 1em;
 
  border: 1px solid #b3b3b3;
  color: #474747;
  min-width: 4em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .link a.active,
.news-page .news-1 .link a:hover {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.news-page .news-1 span.cat {
  height: 2.27272727em;
  padding: 0 1.5em;
  border-radius: 1.5em;
  background-color: white;
}
.news-page .news-1 .search {
  width: 100%;
  border: 1px solid white;
  padding: .5em .7em;
}
.news-page .news-1 .search input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 1em;
}
.news-page .news-1 .search input::-webkit-input-placeholder {
  color: white;
}
.news-page .news-1 .search input:-moz-placeholder {
  color: white;
}
.news-page .news-1 .search input::-moz-placeholder {
  color: white;
}
.news-page .news-1 .search input:-ms-input-placeholder {
  color: white;
}
.news-page .news-1 .search input::placeholder {
  color: white;
}
.news-page .news-1 .search button {
  height: 2.45454545em;
  padding: 0 1.72727273em;
  border-radius: 1.5em;
  background-color: white;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border: none;
}
.news-page .news-1 .search button:hover {
  background-color: var(--color);
  color: white;
}
.news-page .news-1 .bottom .left .content {
  color: white;
  width: 100%;
}
.news-page .news-1 .bottom .right li {
  background-color: #f8f8f8;
}
.news-page .news-2 .list li {
  background-color: #f8f8f8;
}
.newdet-page h1 {
  line-height: 1;
}
.newdet-page .text {
  color: #979797;
}
.newdet-page .m-link a {
  color: #979797;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .m-link a:hover {
  color: var(--color);
}
.product-page .product-1 {
  background-color: #f8f8f8;
}
.product-page .product-1 .sideBarRight {
  background-color: white;
}
.product-page .product-1 .sideBarRight form {
  background-color: #f8f8f8;
}
.product-page .product-1 .m-page div a,
.product-page .product-1 .m-page div span {
  background-color: white;
}
.product-page .about-2 {
  background-color: #f8f8f8;
}
.prodet-page {
 
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-bottom: 21px;
}
.prodet-page .prodet-1 .big {
  background-color: #f7f7f7;
  margin-top: -40%;
  padding: 10% 0 0 0;
}
.prodet-page .prodet-1 .small img {
  background-color: #f7f7f7;
}
.inner-page.prodet-page .prodet-1 .left {
  position: -webkit-sticky;
  position: sticky;
  top: 40%;
}
.prodet-page .prodet-1 .big span.tag {
  color: var(--color);
  line-height: 1;
}
.prodet-page .prodet-1 .left img.two {
  mix-blend-mode: darken;
}
.prodet-page .prodet-1 h1 {
  line-height: 1.2;
}
.prodet-page .prodet-1 .text {
  /*line-height: 2;*/
  color: #686868;
}
.prodet-page .prodet-1 .text p {
  margin-bottom: 10px;
}
.prodet-page .prodet-1 .line {
  width: 40%;
  height: 2px;
  background-color: #686868;
  position: relative;
}
.prodet-page .prodet-1 .line:after {
  content: '';
  height: 3px;
  width: 40%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color);
}
.prodet-page .prodet-1 .list span.h6 {
  color: #686868;
}
.prodet-page .news-1 .left {
  height: 660px;
}
.prodet-page .news-1 .faq {
  padding: 3.5%;
  background-color: white;
}
.prodet-page .news-1 .faq li {
  margin-top: 1em;
}
.prodet-page .news-1 .faq li .text {
  color: #888686;
}
.prodet-page .prodet-3 {
  color: white;
}
.prodet-page .prodet-3 .play {
  top: 100%;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 100%;
  color: black;
      z-index: 9;
}
.prodet-page .prodet-3 .play i {
  font-size: 1.3em;
}
.prodet-page .prodet-3 span.h2 {
  line-height: 1;
}
.prodet-page .prodet-3 span.h6 {
  line-height: 1;
}
.prodet-page .prodet-3 span.h6 sub {
  vertical-align: baseline;
}
.prodet-page .prodet-4 .list li,
.prodet-page .prodet-4 .list .box {
  height: 100%;
}
.prodet-page .prodet-4 .list .box {
  background-color: white;
}
.prodet-page .prodet-4 .list .box span.h6 {
  line-height: 1.2;
}
.prodet-page .prodet-4 .list .box time,
.prodet-page .prodet-4 .list .box .text {
  color: #979797;
}
@media screen and (max-width: 1800px) {
  .product-page .init-3 .drop .btn {
    -webkit-transform: rotate(-17.5deg) translate(-25%, -25%);
    -moz-transform: rotate(-17.5deg) translate(-25%, -25%);
    -ms-transform: rotate(-17.5deg) translate(-25%, -25%);
    transform: rotate(-17.5deg) translate(-25%, -25%);
  }
}
@media screen and (max-width: 1450px) {
  .about-page .about-2 .line {
    width: 70px;
  }
  #header .nav .menu-menu-container > .menu > .menu-item.menu-product .menu-content .left .left-nav-product:nth-child(8) ~ * {
    display: none;
  }
}
@media screen and (max-width: 1250px) {
  .body-overflow-box {
    padding-top: 0;
  }
  .inner-banner .backImg {
    height: 300px;
  }
  .about-page .about-2 .line {
    width: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .about-page .about-2 .left {
    position: relative;
    top: 0;
  }
  .about-page .about-3 .left .drop {
    display: none;
  }
  .about-page .about-3 .left span.h2 {
    width: 100%;
    text-align: left;
  }
  .about-page .about-3 .right .list {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
  .about-page .about-1 .img {
    display: none;
  }
  .contact-page .contact-1 .right {
    padding: 5% !important;
  }
  .contact-page .contact-1 .left {
    height: 60vw;
  }
  .contact-page .contact-3 iframe {
    height: 60vw;
  }
  .news-page .news-1 .bottom .left {
    padding: 5% !important;
  }
  .inner-page .sideBarBox .sideBarRight {
    display: none;
  }
  .inner-page .sideBarBox .sideBarLeft {
    width: 100%;
  }
  .prodet-page .prodet-1 .big {
    margin-top: 0;
  }
  .prodet-page .news-1 .left {
    height: auto;
  }
  .prodet-page .news-1 .faq {
    padding: 4% !important;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner .backImg {
    min-height: 200px;
    height: auto;
    padding: 8%;
  }
  .inner-banner .backImg .play {
    display: none;
  }
  .about-page .about-2 .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-2 .number {
    width: 100%;
    margin-top: 5%;
  }
  .about-page .about-2 .number ul {
    gap: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-2 .year {
    width: 80%;
  }
  .slickGap-80 {
    margin: 0 -8px;
  }
  .slickGap-80 li {
    padding: 0 8px;
  }
  .news-page .news-1 .bottom .right li,
  .prodet-page .prodet-4 .list .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .news-page .news-1 .bottom .right li .img-box,
  .prodet-page .prodet-4 .list .box .img-box {
    width: 100%;
    height: 50vw;
  }
  .news-page .news-1 .bottom .right li .content,
  .prodet-page .prodet-4 .list .box .content {
    width: 100%;
  }
  .news-page .news-1 .top .right {
    display: none;
  }
  .news-page .news-1 .search button {
    zoom: .8;
  }
  .product-page .about-page .about-2 .top .text {
    width: 100%;
    margin-top: 5%;
  }
  .init-3 .drop {
    height: auto;
    padding-bottom: 5%;
  }
  .container2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  #footer .footer-center .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-center .box .slide {
    width: 100%;
  }
}
.init-5 .list div#clientX img {
  width: 80%;
  height: 280px;
  object-fit: cover;
}
.init-5 .list li .box img {
  height: 215px;
  width: 100%;
  object-fit: cover;
}
.news-page .news-2 .list li img {
  width: 100%;
  object-fit: cover;
  max-height: 350px;
}
/*详情*/
.table-ny table tr td {
  border: 0;
  font-size: 18px;
  padding: 15px 35px;
}
.table-ny table tr {
  background: #f8f8f8;
}
.table-ny table tr:nth-child(even) {
  background: #fff;
}
.table-ny table {
    border: 0;
}
.prodet-page .news-1 .faq ul {
  max-height: 460px;
  overflow: overlay;
}
.service-3 {
  padding: 5% 0;
}
.service-3 .list li .content {
  padding: 5%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  border-radius: 15px;
}
@media screen and (max-width: 1250px) {
  .news-page .news-1 .top .right {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .inner-page.prodet-page .prodet-1 .left,
  .factory-page .factory-1 .left {
    position: static !important;
    top: auto !important;
  }
  .more {
    zoom: .8;
  }
}
@media screen and (max-width: 700px) {
  .service-3 .list {
    width: 100%;
  }
}
h1.hhhh {
  display: inline;
}
h1.prohq {
  font-size: 30px;
  padding-bottom: 10px;
}
.coy.flex.flex-ac.flexGap-50.font-20.flex-w {
  gap: 8px!Important;
}
a.foooo {
  width: 229px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.text.font-16.mt-30.wow.fadeInUp {
  max-height: 500px;
  overflow-y: auto;
}
.wow-wrap {
  -webkit-filter: opacity(0) blur(2px);
  filter: opacity(0) blur(2px);
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), -webkit-filter 1s ease-out;
  transition: -webkit-transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), -webkit-filter 1s ease-out;
  -moz-transition: transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), filter 1s ease-out, -moz-transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93);
  transition: transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), filter 1s ease-out;
  transition: transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), filter 1s ease-out, -webkit-transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), -moz-transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), -webkit-filter 1s ease-out;
}
i .wow-wrap {
  line-height: 1;
}
.wow-wrap[data-wow-type="up"] {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
.wow-wrap[data-wow-type="down"] {
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
.wow-wrap[data-wow-type="left"] {
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}
.wow-wrap[data-wow-type="right"] {
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}
.wow-wrap[data-wow-type="scale"] {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.wow-wrap.wow-active {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-filter: none;
  filter: none;
}

/*设计*/

@media (min-width:1001px) {
.init-3 .box .left {
    position: sticky;
    top: 15%;
}
}
/*.inner-banner .backImg {

    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
        background-position: center top;
}*/

.news-1 .link{
  border-bottom: 0px solid black;
}
.more:hover i,
.link:hover i,
.init-5 .box .right ul li:hover .link i,
.product-page .product-1 .sideBarLeft ul li:hover .box .content .more i{
    transform: rotate(45deg);

}

.more i,
.link i {
  transition: transform 0.3s ease;
}
.color-y{
  color: var(--color);
}
.bg-y{
  background: var(--color);
}


.about-page .about-23 {
  position: relative;
}
.about-page .about-23:after,
.about-page .about-23:before {
  content: '';
  width: 100%;
  height: 25vh;
  margin-left: auto;
  display: block;
  position: -webkit-sticky;
  position: sticky;
}
.about-page .about-23:before {
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(white));
  background-image: -webkit-linear-gradient(bottom, transparent, white);
  background-image: -moz-linear-gradient(bottom, transparent, white);
  background-image: linear-gradient(to top, transparent, white);
  top: 0;
}
.about-page .about-23:after {
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(white));
  background-image: -webkit-linear-gradient(top, transparent, white);
  background-image: -moz-linear-gradient(top, transparent, white);
  background-image: linear-gradient(to bottom, transparent, white);
}
.about-page .about-23 .img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;

}
.about-page .about-23 .img img {
  position: -webkit-sticky;
  position: sticky;
  bottom: -15%;

}
.about-page .about-23 .box .left {
  top: 35%;
  position: -webkit-sticky;
  position: sticky;

}
.about-page .about-23 .box .right {
  position: relative;
}
.about-page .about-23 .box .right .year {
  line-height: .8;
  position: -webkit-sticky;
  position: sticky;
  top: 40%;
  color: var(--color);
}
.about-page .about-23 .box .right .year svg {
  position: absolute;
    left: 1em;
    top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  z-index: -1;
}
.about-page .about-23 .box .right .year svg .circle1 {
  stroke: var(--color);
  stroke-dasharray: 566;
  stroke-dashoffset: 566;
}
.about-page .about-23 .box .right .list li {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-23 .box .right .list li .year {
  margin-right: 1em;
  color: #ddd;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  width: 2.733em;
}
.about-page .about-23 .box .right .list li .content {
    padding: 5% 2%;
    border-top: 2px solid #666;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
        width: 100%;
}
.about-page .about-23 .box .right .list li.active {
  opacity: 1;
}
.about-page .about-23 .box .right .list li.active .year {
  color: var(--color);
}
.about-page .about-23 .box .right .list li .year .font-em-20{
    font-size: 1.8em;
}
.about-page .about-23 .box .right .year .font-em-20 {
    font-size: 1.8em;
}
.about-page .about-23 .box .right .list li.active .content {
   border-top: 2px solid var(--color);
      background: var(--color);
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .about-page .about-23 .box .left {
    position: static;
  }
  .about-page .about-23 .box .right .year svg {
    width: 30vw;
  }
}

@media screen and (max-width: 700px) {
  .about-page .about-23 .box .right .year em {
    font-size: 1em;
  }
  .about-page .about-23 .box .right .year svg {
    width: 20vw;
  }
}

/*设计-end*/