@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Regular.eot');
  src: url('../fonts/Cormorant-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Cormorant-Regular.woff2') format('woff2'), url('../fonts/Cormorant-Regular.woff') format('woff'), url('../fonts/Cormorant-Regular.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/GreatVibes-Regular.eot');
  src: url('../fonts/GreatVibes-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/GreatVibes-Regular.woff2') format('woff2'), url('../fonts/GreatVibes-Regular.woff') format('woff'), url('../fonts/GreatVibes-Regular.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.eot');
  src: url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Lato-Regular.woff2') format('woff2'), url('../fonts/Lato-Regular.woff') format('woff'), url('../fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
body {
  --color: #0263b9;
  max-width: 1920px;
  margin: 0 auto;
  font-family: 'Lato';
  font-weight: 400;
  color: #181818;
}
.body-overflow-box {
  position: relative;
  right: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.container {
  padding: 0 15px;
  position: relative;
  width: 1430px;
  margin: 0 auto;
}
.more {
  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;
  font-size: 24px;
  line-height: 1;
  font-family: 'Cormorant';
  background-color: #121212;
  color: #fff;
  border-radius: 33px;
  padding: 20px 26px 21px 21px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.more img {
  margin-right: 1.04167em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 8px;
  left: 8px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more:hover {
  color: #fff;
}
.more:hover::before {
  width: 100%;
}
.more:hover img {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#header {
  z-index: 20;
  position: fixed;
  top: 40px;
  right: 0;
  width: 100%;
}
#header .container {
  width: 1738px;
}
#header .nav {
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .menu-box {
  margin: 0 auto 0 0;
}
#header .nav .menu-box ul.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .menu-box ul.menu > li {
  font-family: 'Cormorant';
  margin-left: 2.9167em;
  color: #030303;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: right;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  text-transform: uppercase;
}
#header .nav .menu-box ul.menu > li > a {
  line-height: 1;
}
#header .nav .menu-box ul.menu > li > a i {
  position: absolute;
  left: 0;
  top: 30%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}
#header .nav .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: right;
  position: absolute;
  z-index: 1;
  font-size: 14px;
  background: #fff;
  top: 130%;
  right: 0;
  width: auto;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
  white-space: nowrap;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
  background: none;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li:hover a {
  color: #fff;
}
#header .nav .menu-box ul.menu > li:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .menu-box ul.menu > li:hover,
#header .nav .menu-box ul.menu > li.active {
  color: var(--color);
}
#header .nav .menu-box ul.menu > li:last-child {
  margin-left: 0;
}
#header .nav .h-search {
  cursor: pointer;
}
#header .nav .yuy ul {
  right: initial;
  left: 0;
  z-index: 100;
}
#header::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header.inner,
#header.active {
  top: 0;
}
#header.inner::after,
#header.active::after {
  width: 100%;
}
.text-color {
  color: var(--color);
}
#banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#banner .container {
  width: 1480px;
}
#banner ul li {
  position: relative;
}
#banner ul li > img {
  width: 100%;
}
#banner ul li .text {
  position: absolute;
  z-index: 1;
  top: 56%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 100%;
}
#banner ul li .text .box {
  max-width: 694px;
  font-family: 'Cormorant';
}
#banner ul li .text .title {
  line-height: .9;
  position: relative;
}
#banner ul li .text .title em {
  display: block;
  margin-right: .7em;
}
#banner ul li .text .title .wz {
  position: absolute;
  right: -67px;
  top: -76px;
  width: 121px;
}
#banner ul li .text .title svg {
  font-size: 39px;
  -webkit-animation: xz 10s linear infinite;
  -moz-animation: xz 10s linear infinite;
  animation: xz 10s linear infinite;
  font-family: 'Cormorant';
  text-transform: capitalize;
}
#banner ul li .text .title svg text {
  fill: rgba(0, 0, 0, 0.71);
}
#banner ul li .text .con {
  letter-spacing: 1px;
  opacity: .91;
  margin-right: 2.6em;
}
.tr_5 {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.font-18 {
  line-height: 1.6;
}
.font-16 {
  line-height: 1.8;
}
.font-14 {
  line-height: 2;
}
.font-30 {
  line-height: 1.2;
}
.title,
.i-title {
  font-family: 'Cormorant';
}
.i-tag {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 21px;
  border: solid 1px #979797;
  padding: 14px 32px 13px 22px;
  position: relative;
}
.i-tag::before {
  content: '';
  position: absolute;
  top: 52%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #979797;
}
@-webkit-keyframes img {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-moz-keyframes img {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes img {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes move {
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@-moz-keyframes move {
  50% {
    -moz-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@keyframes move {
  50% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    transform: translateY(15px);
  }
}
#index-body .i-category {
  background: url(../images/pp1.png) no-repeat left -48px;
}
#index-body .i-category .bot {
  position: relative;
  z-index: 2;
  color: #000;
}
#index-body .i-category .bot img {
  margin-top: -50px;
  width: 8.4375vw;
}
#index-body .i-category .bot .minTitl {
  display: inline-block;
  font-size: 18px;
  color: #000;
  line-height: 1;
  padding: 13px 41px 13px 35px;
  border-radius: 23px;
  border: solid 1px #eee;
}
#index-body .i-category .bot .textBox {
  font-family: 'Cormorant';
  line-height: 1.25;
  width: 98%;
  margin-right: auto;
  margin-left: auto;
}
#index-body .i-category .secondary {
  position: relative;
}
#index-body .i-category .secondary ul {
  margin: -35px;
}
#index-body .i-category .secondary ul li {
  margin: 35px;
}
#index-body .i-category .secondary ul li i {
  width: 114px;
  margin: 0 auto;
  display: block;
}
#index-body .i-category .secondary .icon {
  position: absolute;
  left: 0;
  bottom: -76px;
  width: 15%;
}
#index-body .i-category .content ul li .item .text {
  color: #000;
  max-width: 540px;
  z-index: 1;
}
#index-body .i-category .content ul li .item .text span {
  font-weight: 200;
  opacity: 0.85;
}
#index-body .i-category .content ul li .item .text .title {
  font-size: 4.6em;
  line-height: .86;
}
#index-body .i-category .content ul li .item .text .link {
  background: #fff;
  border-radius: 37px;
  color: #353535;
  line-height: 1;
  font-family: 'Cormorant';
  padding: 25px 55px 24px 67px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index-body .i-category .content ul li .item .text .link img {
  margin-right: 2.25em;
}
#index-body .i-category .content ul li .item .text .link::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category .content ul li .item .text .link:hover {
  color: #fff;
}
#index-body .i-category .content ul li .item .text .link:hover::after {
  width: 100%;
}
#index-body .i-category .content ul li .item .text .link:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#index-body .i-category .content ul li .item .right {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
#index-body .i-category .content ul li .item .right dl {
  width: 50%;
  margin: 0 auto;
}
#index-body .i-category .content ul li .item .right dl .slick-track {
  display: block;
}
#index-body .i-category .content ul li .item .right dl .img-box img {
  width: auto;
}
#index-body .i-category .content ul li .item .right dl .title {
  color: #fff;
  line-height: 1.3;
}
#index-body .i-category .content ul li .item .right .slick-dots {
  position: absolute;
  left: -40%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#index-body .i-category .content ul li .item .right .slick-dots li {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
}
#index-body .i-category .content ul li .item .right .slick-dots li::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50.0%,-50%);
  -moz-transform: translate(50.0%,-50%);
  -ms-transform: translate(50.0%,-50%);
  transform: translate(50.0%,-50%);
  width: 14px;
  height: 14px;
  background-color: #fcfbf2;
  border-radius: 50%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category .content ul li .item .right .slick-dots li button {
  display: none;
}
#index-body .i-category .content ul li .item .right .slick-dots li.slick-active {
  border-color: rgba(255, 255, 255, 0.75);
}
#index-body .i-category .content ul li .item .right .slick-dots li:last-child {
  margin-bottom: 0;
}
#index-body .i-product {
  padding-top: 6.146%;
}
#index-body .i-product .i-title {
  line-height: 1;
}
#index-body .i-product .con {
  color: #9b9b9b;
}
#index-body .i-product .arrow a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 61px;
  height: 61px;
  font-size: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.23);
  color: rgba(0, 0, 0, 0.23);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .arrow a.next i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#index-body .i-product .arrow a:hover {
  border-color: #000;
  color: #000;
}
#index-body .i-product .content {
  width: 87vw;
}
#index-body .i-product .content ul .slick-list {
  padding-left: 240px;
}
#index-body .i-product .content ul li .img-box {
  z-index: 1;
}
#index-body .i-product .content ul li .img-box span {
  top: 0;
  right: 0;
  width: 100%;
  height: 88%;
  z-index: -1;
}
#index-body .i-product .content ul li .img-box span img {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .content ul li .img-box:hover .i1{
  opacity: 0;
}
#index-body .i-product .content ul li .img-box:hover span img {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .i-product .content ul li .title {
  color: #604c37;
}
#index-body .i-product .content ul li .title:hover {
  color: #000;
}
#index-body .i-about {
  background: url(../images/abg.png) no-repeat center bottom;
  padding: 9.5% 0 10.9%;
  position: relative;
}
#index-body .i-about .box {
  max-width: 1170px;
  margin: 0 auto;
}
#index-body .i-about .header {
  max-width: 615px;
  margin: 0 auto;
}
#index-body .i-about .header .i-title {
  line-height: 1;
}
#index-body .i-about .con {
  color: rgba(65, 65, 65, 0.57);
  font-family: 'Cormorant';
  line-height: 1.3;
}
#index-body .i-about .con h1 {
  display: inline;
}
#index-body .i-about .data {
  max-width: 885px;
  margin-right: auto;
  margin-left: auto;
}
#index-body .i-about ul li {
  width: 245px;
  font-family: 'Cormorant';
}
#index-body .i-about ul li .num {
  line-height: 1;
  border-bottom: 1px solid #d2d2d2;
}
#index-body .i-about ul li .num sub {
  margin-bottom: 12px;
}
#index-body .i-about .icon {
  right: 0;
  bottom: 2%;
  width: 13.438%;
}
#index-body .i-about .icon1 {
  left: 0;
  bottom: 0;
  width: 27.188%;
}
#index-body .i-advantage {
  background: url(../images/adbg.png) no-repeat center;
  background-size: cover;
  padding: 0 0 6.5625%;
}
#index-body .i-advantage .i-title {
  line-height: 1;
}
#index-body .i-advantage .content .line {
  height: 1px;
  background-color: #b5b5b5;
  position: relative;
}
#index-body .i-advantage .content .line::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-advantage .content .icon {
  height: 76px;
}
#index-body .i-advantage .content .con {
  line-height: 1.5;
  color: #595959;
}
#index-body .i-advantage .content .link {
  font-size: 24px;
  width: 2.04167em;
  height: 2.04167em;
  border-radius: 50%;
  color: #fff;
  background-color: #090909;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index-body .i-advantage .content .link i {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-advantage .content .link::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-advantage .content .link:hover::after {
  width: 100%;
}
#index-body .i-advantage .content .link:hover i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#index-body .i-advantage .content ul li:hover .line::after {
  width: 100%;
}
#footer {
  background-color: #0f0f0f;
  position: relative;
  z-index: 1;
  color: #fff;
}
#footer .title {
  font-size: 24px;
  line-height: 1;
}
#footer .f-top {
  border-radius: 10px;
  border: solid 1px rgba(255, 255, 255, 0.3);
}
#footer .f-top .left {
  font-family: 'Cormorant';
  width: 26%;
  line-height: 1;
}
#footer .f-top .right {
  width: 60.046%;
  background-color: #ffffff;
  border-radius: 30px;
}
#footer .f-top .right ul li {
  position: relative;
}
#footer .f-top .right ul li input {
  width: 100%;
  padding: 3px 28px 0;
  height: 21px;
  border: 0;
  font-size: 16px;
  font-family: 'Cormorant';
  color: #1b1b1b;
}
#footer .f-top .right ul li input::-webkit-input-placeholder {
  color: rgba(27, 27, 27, 0.8);
}
#footer .f-top .right ul li input:-moz-placeholder {
  color: rgba(27, 27, 27, 0.8);
}
#footer .f-top .right ul li input::-moz-placeholder {
  color: rgba(27, 27, 27, 0.8);
}
#footer .f-top .right ul li input:-ms-input-placeholder {
  color: rgba(27, 27, 27, 0.8);
}
#footer .f-top .right ul li input::placeholder {
  color: rgba(27, 27, 27, 0.8);
}
#footer .f-top .right ul li button {
  width: 100%;
  border: 0;
  background-color: #1b1b1b;
  border-radius: 24px;
  font-size: 16px;
  padding: 13px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#footer .f-top .right ul li button::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-top .right ul li button:hover::after {
  width: 100%;
}
#footer .f-top .right ul li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #1b1b1b;
}
#footer .f-top .right ul li:first-child {
  width: 16.26%;
}
#footer .f-top .right ul li:nth-child(2) {
  width: 29.55%;
}
#footer .f-top .right ul li:nth-child(3) {
  width: 33.808%;
}
#footer .f-top .right ul li:nth-child(3)::after {
  display: none;
}
#footer .f-top .right ul li:last-child {
  width: 20.382%;
}
#footer .f-top .right ul li:last-child::after {
  display: none;
}
#footer .f-bottom ul li {
  font-size: 18px;
  line-height: 1.8;
  color: #eeeeee;
}
#footer .f-bottom ul li:last-child {
  margin-bottom: 0;
}
#footer .f-bottom ul li a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-bottom ul li a:hover {
  color: #fff;
  font-weight: bold;
}
#footer .f-bottom .left {
  width: 30%;
}
#footer .f-bottom .left #ewm {
  width: 88px;
  border-radius: 10px;
  border: 7px solid #fff;
}
#footer .f-bottom .left .share a {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  margin-left: 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-bottom .left .share a:last-child {
  margin-left: 0;
}
#footer .f-bottom .left .share a:hover {
  background-color: #ffffff;
  color: var(--color);
}
#footer .f-bottom .left .con {
  line-height: 1.43;
  max-width: 328px;
}
#footer .f-bottom .right {
  width: 70%;
}
#footer .f-bottom .f-product ul li {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 5px;
}
#footer .f-bottom .f-product ul li:last-child {
  margin-bottom: 0;
}
#footer .f-bottom .f-news {
  max-width: 208px;
}
#footer .f-bottom .f-news ul li {
  font-size: 16px;
  line-height: 1.2;
}
#footer .f-bottom .f-news ul li:last-child {
  margin-bottom: 0;
}
#footer .f-bottom .f-contact {
  max-width: 306px;
}
#footer .f-bottom .f-contact ul li {
  font-size: 16px;
  line-height: 1.5;
}
#footer .f-bottom .f-contact ul li .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#footer .f-bottom .f-contact ul li i {
  width: 18px;
}
#footer .f-bottom .f-contact ul li em {
  font-weight: bold;
}
#footer .f-copy {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
#footer svg {
  max-height: 26px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  fill: #fff;
}
#footer svg text {
  fill: #fff;
}
@media (max-width: 1700px) {
  #header .container {
    width: 1430px;
  }
  #banner .container {
    width: 1400px;
  }
  #banner ul li .text .box {
    margin-right: 5%;
  }
  #index-body .i-product .content {
    width: 96vw;
  }
  #index-body .i-category .content ul li .item .right dl .title{
    font-size: 36px;
  }
}
@media (max-width: 1450px) {
  #header {
    top: 20px;
  }
  #header .container {
    width: 1230px;
  }
  #banner .container {
    width: 1200px;
  }
  #banner ul li .text {
    top: 60%;
  }
  #index-body .i-category .bot img {
    margin-top: -35px;
  }
  #index-body .i-product .content ul .slick-list {
    padding-left: 160px;
  }
  #index-body .i-category .content ul li .item .right dl {
    width: 56%;
  }
  #index-body .i-category .content ul li .item .right .slick-dots {
    left: -34%;
  }
  #index-body .i-category .content ul li .item .right dl .title{
    font-size: 30px;
  }
  #footer .title {
    font-size: 22px;
  }
  .fixed-toolbar {
    left: 10px;
  }
}
@media (max-width: 1250px) {
  #index-body .i-category .bot img {
    margin-top: -27px;
  }
  #index-body .i-category .content ul li .item .right dl .title {
    font-size: 26px;
  }
  #index-body .i-category .content ul li .item .text .title{
    font-size: 3em;
  }
  #footer .f-top .right {
    width: 70%;
  }
  #footer .f-bottom {
    zoom: .76;
  }
}
@media (max-width: 1000px) {
  #banner ul li .text {
    top: 50%;
  }
  #banner ul li .text .box {
    margin-right: 0;
  }
  #banner ul li .text .title .wz {
    display: none;
  }
  .more {
    font-size: 20px;
    padding: 16px 26px 17px 15px;
  }
  .more::after {
    top: 6px;
    width: 42px;
    height: 42px;
  }
  #index-body .i-category .bot img {
    margin-top: -14px;
  }
  #index-body .i-category .secondary ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #index-body .i-product .content {
    width: 100%;
  }
  #index-body .i-product .content ul .slick-list {
    padding-left: 0;
  }
  #index-body .i-category .content ul li .item .right dl .title {
    font-size: 18px;
  }
  #index-body .i-category .content ul li .item .text .title {
    font-size: 2.6em;
  }
  #index-body .i-category .content ul li .item .text .link {
    font-size: 16px;
    padding: 16px 20px 15px 22px;
  }
  #index-body .i-about ul li {
    width: 200px;
  }
  #footer .f-top .left {
    font-size: 30px;
  }
  #footer .f-top .right {
    margin-top: 20px;
  }
  #footer .f-bottom {
    zoom: 1;
  }
  #footer .f-bottom .left {
    width: 45%;
  }
  #footer .f-bottom .right {
    width: 55%;
    padding-right: 4%;
  }
  #footer .f-bottom .f-nav,
  #footer .f-bottom .f-product,
  #footer .f-bottom .f-news {
    display: none;
  }
  #footer .f-bottom .f-contact {
    max-width: 100%;
  }
  #footer .f-copy {
    display: block;
  }
  #footer .f-copy p {
    display: inline;
  }
}
@media (max-width: 700px) {
  .more {
    font-size: 18px;
    padding: 16px 26px 17px 12px;
  }
  .more::after {
    width: 36px;
    height: 36px;
  }
  .font-28,
  .font-24 {
    font-size: 18px;
  }
  #index-body .i-category {
    background: transparent;
  }
  #index-body .i-category .bot .minTitl {
    font-size: 16px;
    padding: 7px 21px 7px 18px;
  }
  #index-body .i-category .bot img {
    margin-top: -9px;
  }
  #index-body .i-category .secondary ul {
    margin: -15px;
  }
  #index-body .i-category .secondary ul li {
    margin: 0;
    width: 33.3333%;
    padding: 15px;
  }
  #index-body .i-category .content ul li .item .text {
    max-width: 400px;
  }
  #index-body .i-category .content ul li .item .text .title {
    font-size: 2em;
  }
  #index-body .i-category .content ul li .item .text .link {
    padding: 12px 20px 10px;
  }
  #index-body .i-category .content ul li .item .text .link img {
    margin-right: 10px;
  }
  #index-body .i-category .content ul li .item .right dl {
    width: 67%;
  }
  #index-body .i-category .content ul li .item .right dl .title {
    font-size: 18px;
  }
  #index-body .i-category .content ul li .item .right .slick-dots {
    left: -20px;
  }
  #index-body .i-category .content ul li .item .right .slick-dots li {
    width: 20px;
    height: 20px;
  }
  #index-body .i-category .content ul li .item .right .slick-dots li::after {
    width: 6px;
    height: 6px;
  }
  #index-body .i-category .content ul li .item .right{
    zoom: .8;
  }
  .font-22 {
    font-size: 16px;
  }
  #index-body .i-product .arrow a {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
  #index-body .i-about ul li {
    width: 140px;
  }
  .font-30 {
    font-size: 20px;
  }
  #index-body .i-advantage .content .con {
    padding-left: 0;
  }
  #footer .f-top .right {
    padding: 20px 15px !important;
  }
  #footer .f-top .right ul {
    margin: -10px 0;
  }
  #footer .f-top .right ul li {
    width: 50% !important;
    margin: 10px 0;
  }
  #footer .f-top .right ul li input {
    padding: 0 14px;
  }
  #footer .f-top .right ul li:nth-child(2)::after {
    display: none;
  }
  #footer .f-top .right ul li:nth-child(3) {
    width: 100% !important;
  }
  #footer .f-bottom .left {
    display: none;
  }
  #footer .f-bottom .right {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  #banner ul li .text .title {
    font-size: 30px;
  }
  #banner ul li .text .con {
    display: none;
  }
  #banner ul li .text .btn {
    margin-top: 20px;
  }
  .more {
    font-size: 15px;
    padding: 10px 13px 9px 12px;
  }
  .more img {
    width: 18px;
    margin-right: 10px;
  }
  .more::after {
    top: 5px;
    width: 24px;
    height: 24px;
  }
  #index-body .i-category .bot img {
    margin-top: -2px;
  }
  #index-body .i-category .secondary ul li {
    width: 50%;
  }
  #index-body .i-category .content ul li .item .left {
    width: 100%;
  }
  #index-body .i-category .content ul li .item .right {
    width: 100%;
    padding: 30px 0;
  }
  #index-body .i-category .content ul li .item .right{
    zoom: 1;
  }
  #index-body .i-product .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .i-product .header .left {
    width: 100%;
  }
  #index-body .i-product .header .arrow {
    margin-top: 20px;
  }
  #index-body .i-category .content ul li .item .left {
    position: relative;
    z-index: 1;
  }
  #index-body .i-category .content ul li .item .left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  #index-body .i-category .content ul li .item .text {
    top: 20%;
    z-index: 2;
  }
  #index-body .i-about .con {
    font-size: 16px;
    line-height: 1.8;
  }
  #index-body .i-advantage .i-title {
    margin-bottom: 10px;
  }
  .i-tag {
    padding: 7px 16px 6px 11px;
  }
  .i-tag::before {
    right: 6px;
  }
  #footer .f-top .right ul li {
    width: 100% !important;
  }
  #footer .f-top .right ul li::after {
    display: none;
  }
  #footer .f-top .right ul li button {
    padding: 7px 0;
  }
}
.oxy-nav-menu .mb2-search input[type='submit']{
  background-image: url(../images/icon-search-white.png);
}
@-webkit-keyframes sway {
  0% {
    -webkit-transform: scaleY(1) rotate(-2deg);
    transform: scaleY(1) rotate(-2deg);
  }
  50% {
    -webkit-transform: scaleY(1) rotate(2deg);
    transform: scaleY(1) rotate(2deg);
  }
  100% {
    -webkit-transform: scaleY(1) rotate(-2deg);
    transform: scaleY(1) rotate(-2deg);
  }
}
@-moz-keyframes sway {
  0% {
    -moz-transform: scaleY(1) rotate(-2deg);
    transform: scaleY(1) rotate(-2deg);
  }
  50% {
    -moz-transform: scaleY(1) rotate(2deg);
    transform: scaleY(1) rotate(2deg);
  }
  100% {
    -moz-transform: scaleY(1) rotate(-2deg);
    transform: scaleY(1) rotate(-2deg);
  }
}
@keyframes sway {
  0% {
    -webkit-transform: scaleY(1) rotate(-2deg);
    -moz-transform: scaleY(1) rotate(-2deg);
    transform: scaleY(1) rotate(-2deg);
  }
  50% {
    -webkit-transform: scaleY(1) rotate(2deg);
    -moz-transform: scaleY(1) rotate(2deg);
    transform: scaleY(1) rotate(2deg);
  }
  100% {
    -webkit-transform: scaleY(1) rotate(-2deg);
    -moz-transform: scaleY(1) rotate(-2deg);
    transform: scaleY(1) rotate(-2deg);
  }
}
.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;
  gap: 0.5em;
}
.inner-page .m-page a,
.inner-page .m-page span {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  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;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
background-color: var(--color);
    color: white;
}
.about-page .about-1 {
  max-height: 70vh;
}
.about-1.o-hide .ui.container {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50.0%,-50%);
    -moz-transform: translate(50.0%,-50%);
    -ms-transform: translate(50.0%,-50%);
    transform: translate(50.0%,-50%);
    text-align: center;
}
.about-2 .box .left ul li span.h6 {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.about-2 .box .left ul li span.h6:after {
    content: '';
    width: 40px;
    height: 5px;
    background-color: #000;
    position: absolute;
    right: 0;
    bottom: 0;
}
.about-2 .box .left ul li .text {
    text-transform: capitalize;
}
.tect {
    position: absolute;
    z-index: 1;
     top: 18%;
    color: #fff;
}
.about-page .about-3 .play {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.about-page .about-3 .play:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    border-radius: inherit;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
}
.about-page .about-3 {
  max-height: 70vh;
}
.about-page .about-4 .list li {
  border-bottom: 1px solid #eee;
}
.about-page .about-5 li {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.inner-page .text{
  line-height: 1.8;
  color: #818181;
}
.img-after {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 100%;
    pointer-events: none;
}
.img-after .tree i {
  position: absolute;
  max-width: 300px;
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation: sway 5s ease-in-out infinite alternate;
  -moz-animation: sway 5s ease-in-out infinite alternate;
  animation: sway 5s ease-in-out infinite alternate;
}
.img-after .tree i:nth-child(1) {
  left: 5%;
  bottom: 5%;
}
.img-after .tree i:nth-child(2) {
  right: 6%;
  bottom: 5%;
  zoom: .5;
}
.img-after .tree i:nth-child(3) {
  right: 15%;
  bottom: 15%;
  zoom: .4;
}
.img-after .tree i:nth-child(4) {
  right: 2%;
  bottom: 40%;
  zoom: .3;
}
.inner-page .sideBarBox .sideBarLeft form {
  height: 3.125em;
  border-radius: 2em;
  background-color: #f5f7fa;
}
.inner-page .sideBarBox .sideBarLeft form input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 1em;
}
.inner-page .sideBarBox .sideBarLeft form input::-webkit-input-placeholder {
  color: #999;
}
.inner-page .sideBarBox .sideBarLeft form input:-moz-placeholder {
  color: #999;
}
.inner-page .sideBarBox .sideBarLeft form input::-moz-placeholder {
  color: #999;
}
.inner-page .sideBarBox .sideBarLeft form input:-ms-input-placeholder {
  color: #999;
}
.inner-page .sideBarBox .sideBarLeft form input::placeholder {
  color: #999;
}
.inner-page .sideBarBox .sideBarLeft form button {
  width: 3.125em;
  border: none;
  background-color: transparent;
}
.inner-page .sideBarBox .sideBarLeft form button i {
  font-size: 1.5em;
}
.inner-page .sideBarBox .sideBarLeft .nav a {
  margin-bottom: .5em;
}
.inner-page .sideBarBox .sideBarLeft .nav a i.icon {
  width: 0;
  transition: .5s;
  overflow: hidden;
}
.inner-page .sideBarBox .sideBarLeft .nav a i.iconfont {
  margin-right: auto;
}
.inner-page .sideBarBox .sideBarLeft .nav a i.icon img {
  max-width: none;
  width: 1.5em;
}
.inner-page .sideBarBox .sideBarLeft .nav li:hover> a i.icon,
.inner-page .sideBarBox .sideBarLeft .nav li.active> a i.icon {
  width: 1.5em;
}
.inner-page .sideBarBox .sideBarLeft .nav li.active>ul {
  display: block;
}
.inner-page .sideBarBox .sideBarLeft .nav li.active> a {
  color: var(--color)
}
.inner-page .sideBarBox .sideBarLeft .nav li.active> a i.iconfont {
  transform: rotate(90deg);
}
.inner-page .sideBarBox .sideBarLeft .nav ul ul {
  padding-right: 1.6em;
  color: #666;
}
.inner-page .sideBarBox .sideBarLeft .info {
  min-height: 60vh;
  color: white;
  position: relative;
  z-index: 1;
}
.inner-page .proList a.img-box img.pos {
  top: 0;
  right: 0;
}
.inner-page .proList a.img-box:hover img.pos {
  opacity: 1;
}
.product-1 .sideBarBox .sideBarLeft .post ul li img {
    object-fit: cover;
    width: 100%;
    height: 70px;
}
.product-1 .sideBarLeft {
    position: sticky;
    top: 130px;
}
.product-1 .sideBarRight .proList ul li a.img-box {
    background: #96ccef;
    padding-bottom: 30px;
}
.product-1 .sideBarRight .proList ul li a.img-box img{
  display: block;
  -webkit-box-reflect: below -100px -webkit-linear-gradient(bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
}
.prodet-3 ul li .img-box{
   background: #ccc;
    padding-bottom: 30px;
}
.prodet-3 ul li .img-box img{
   display: block;
  -webkit-box-reflect: below -100px -webkit-linear-gradient(bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
}
.sideBarRight .newsList a.img-box img {
    object-fit: cover;
    height: 450px;
    width: 100%;
}
.sideBarRight .newsList a.img-box {
    margin-bottom: 30px;
}
.product-1 .sideBarRight .proList ul li .img-box:hover img {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
}
.inner-page .proList a.img-box img.pos {
  top: 0;
  right: 0;
}
.inner-page .proList a.img-box:hover img.pos {
  opacity: 1;
}
.prodet-page .prodet-1 .slick li img {
  width:100%;
}
.prodet-page .prodet-1 .slick li span,
.prodet-page .prodet-1 .slick li i {
  display:none;
}
.prodet-page .prodet-2 .options{
  border-bottom: 1px solid #dbdbdb;
}
.prodet-page .prodet-2 .options span {
  padding: .7em 0;
  display: inline-block;
  position: relative;
  opacity: .5;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .options span:after {
  content: '';
  width: 0;
  bottom: -1px;
  right: 0;
  height: 2px;
  background-color: var(--color);
  position: absolute;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .options span:hover,
.prodet-page .prodet-2 .options span.active {
  opacity: 1;
}
.prodet-page .prodet-2 .options span:hover:after,
.prodet-page .prodet-2 .options span.active:after {
  width: 100%;
}
.prodet-page .prodet-2 .ret .slide {
  display: none;
}
.prodet-page .prodet-2 {
  color: white;
  z-index: 1;
}
.prodet-page .prodet-2 .tit{
  font-weight: bold;
  text-transform: uppercase;
}
.prodet-page .prodet-2 .tit::after{
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: var(--color);
  flex: 1;
  height: 2px;
  margin-right: 6px;
}
.prodet-page .prodet-2 .mask {
  position: absolute;
  width: 100%;
  height: 200%;
  top: -25%;
  z-index: -1;
}
.prodet-page .prodet-2 .mask i {
  background-color: rgba(255, 255, 255, 0.1);
  width: 2px;
  height: 100%;
}
.prodet-page .prodet-2 .table {
  padding: 3.5%;
  background-color: white;
  color: black;
}
.prodet-page .prodet-2 .table .ov {
  overflow: hidden;
}
.prodet-page .prodet-2 .table #scroll {
  margin-left: -20px;
  padding-left: 20px;
} 
.prodet-page .prodet-2 .table table tr:nth-child(even) {
  background-color: #f4f4f4;
}
.prodet-page .prodet-2 .table table td {
  border: none;
  padding: .9em 2em;
}
.prodet-page .prodet-2 .table table td:first-child {
  width: 30% !important;
}
.prodet-page .prodet-2 .table table td:last-child {
  width: 70% !important;
}
.prodet-page .prodet-2 .table .table2 {
  white-space: nowrap;
  overflow-y: auto;
  overflow-x: hidden;
}
.prodet-page .prodet-2 .table .table2 table {
  width: auto !important;
  overflow: unset !important;
}
.prodet-page .prodet-2 .table .table2
.prodet-page .prodet-2 .table .table2 table tr td {
  width: auto !important;
}
.prodet-page .prodet-2 .left .faqC ul li .box .faqTitle{
    cursor: pointer;
    position: relative;
    background: #fff;
    border-radius: 10px;
    color: #000;
}
.prodet-page .prodet-2 .left .faqC ul li .box .faqContent{
    display: none;
}
.prodet-page .prodet-2 .left .faqC ul li .box .faqContent p{
  display: inline;
}
.prodet-page .prodet-2 .left .faqC ul li .box .faqTitle i{
  position: absolute;
  left: 20px;
}
.prodet-2 .ret .slide ul li {
   background: url(../images/init-2-bg.jpg);
}
.prodet-2.pro-miao01 .ret .slide .flex.flex-wap.flex-jb {
   align-items: center;
}
.prodet-3 .h2 {
  white-space: normal;
}
/*.pro-list-top .ui.container {
  top: 35% !important;
}*/
.contact-page .contact-1 .list li {
  max-width: 300px;
}
.contact-page .contact-1 .list li i {
  font-size: 1.5em;
}
.contact-page .contact-1 iframe {
  height: 70vh;
  border: none;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  background-color: #eee;
}
.contact-page .contact-2 .ui.container {
  max-width: 1000px;
}
.contact-page .contact-2 .form ul li input,
.contact-page .contact-2 .form ul li textarea {
  padding: 1em;
  border: 1px solid #eaeaea;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-2 .form ul li input::-webkit-input-placeholder, .contact-page .contact-2 .form ul li textarea::-webkit-input-placeholder {
  color: #999;
}
.contact-page .contact-2 .form ul li input:-moz-placeholder, .contact-page .contact-2 .form ul li textarea:-moz-placeholder {
  color: #999;
}
.contact-page .contact-2 .form ul li input::-moz-placeholder, .contact-page .contact-2 .form ul li textarea::-moz-placeholder {
  color: #999;
}
.contact-page .contact-2 .form ul li input:-ms-input-placeholder, .contact-page .contact-2 .form ul li textarea:-ms-input-placeholder {
  color: #999;
}
.contact-page .contact-2 .form ul li input::placeholder,
.contact-page .contact-2 .form ul li textarea::placeholder {
  color: #999;
}
.contact-page .contact-2 .form ul li input:focus,
.contact-page .contact-2 .form ul li textarea:focus {
  border-color: var(--color);
}
.contact-page .contact-2 .form ul li textarea {
  height: 10em;
}
.contact-page .contact-2 .form ul li button {
  margin-top: 1em;
}
.contact-1 .list {
    width: 85%;
    margin: 0 auto;
}
.contact-1 .con-top {
    width: 55%;
    margin: 0 auto;
}
@media screen and (max-width: 1250px) {
  .about-1{
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .about-2 .left ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .about-page .about-5 li .tect {
    position:static;
    color:block;
    background-color:black;
  }
  .about-page .about-5 li {
    flex-direction: column;
    position:static;
  }
  .about-page .about-5 li > img {
    transform:unset !important;
  }
  .product-1 .sideBarLeft {
    position:static !important;
  }
  .inner-page .sideBarBox .sideBarLeft form + hr ~ * {
    display: none;
  }
  .inner-page .sideBarBox .sideBarLeft form + hr {
    margin-bottom: 0;
  }
  .contact-page .contact-1 iframe{
    height: 40vh;
  }
}
@media screen and (max-width: 700px) {
  .about-page .about-5 li .tect {
    width:100%;
    padding: 15px;
  }
  .about-page .about-5 li > img {
    height:280px;
  }
  .about-page .about-5 li .tect .more {
    margin-bottom:.5em;
  }
   .proList ul.grid {
    grid-template-columns: 1fr 1fr;
  }
  .proList ul .more {
    zoom: .8;
  }
  .contact-page .contact-1 iframe {
    height: 40vh;
  }
  .contact-page .contact-1 .list li {
    max-width: none;
    width: 100%;
  }
  .contact-1 .con-top{
    width: 100%;
  }
}
.sustainable-page .sustainable-1 .text {
  color: #747474;
}
.sustainable-page .sustainable-1 .img {
  min-height: 31.77083333vw;
  color: white;
  padding: 5% 7.5% 10%;
}
.sustainable-page .sustainable-1 .img .text {
  color: inherit;
}
.sustainable-page .sustainable-1 .img .play {
  position: absolute;
  left: 17.5%;
  bottom: 0;
  -webkit-transform: translate(-0.0,80);
  -moz-transform: translate(-0.0,80);
  -ms-transform: translate(-0.0,80);
  transform: translate(-0.0,80);
}
.sustainable-page .sustainable-1 span.h1 {
  line-height: 1;
  font-weight: bold;
  margin-top: auto;
  opacity: .05;
}
.sustainable-page .sustainable-2 .text {
  max-width: 710px;
  margin-right: auto;
  margin-left: auto;
}
.sustainable-page .sustainable-2 .list {
  z-index: 1;
}
.sustainable-page .sustainable-2 .list span.h1 {
  line-height: .8;
  font-weight: bold;
  opacity: .05;
  top: -2%;
  right: 0;
  z-index: -1;
}
.sustainable-page .sustainable-2 .list li {
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 8.5%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.sustainable-page .sustainable-2 .list li i {
  width: 1em;
  height: 1em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.sustainable-page .sustainable-2 .list li i img {
  max-width: 100%;
  max-height: 100%;
}
.sustainable-page .sustainable-2 .list li span.h6 {
  line-height: 1.2;
}
.sustainable-page .sustainable-2 .list li .text {
  color: #808080;
}
.sustainable-page .sustainable-2 .list li:hover {
  background-color: var(--color);
  color: white;
}
.sustainable-page .sustainable-2 .list li:hover i {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.sustainable-page .sustainable-2 .list li:hover .text {
  color: inherit;
}
.sustainable-page .sustainable-3 .list .right {
  padding: 0 6%;
}
.sustainable-page .sustainable-4 {
  background-color: #f7f7f7;
}
.sustainable-page .sustainable-4 .list {
  -webkit-filter: drop-shadow(0 16px 10px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 16px 10px rgba(0, 0, 0, 0.2));
  overflow: hidden;
}
.sustainable-page .sustainable-4 .list .slick-list {
  overflow: unset;
}
.sustainable-page .sustainable-4 .list li img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.sustainable-page .sustainable-4 .list li:hover img {
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  transform: translateY(-10%);
}
.sustainable-page .sustainable-5 {
  color: white;
}
.sustainable-page .sustainable-5 .text {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
}
.sustainable-page .sustainable-5 span.tag {
  color: inherit;
}
.inner-page .play {
    width: 80px;
    text-transform: uppercase;
    letter-spacing: .37em;
    position: relative;
    cursor: pointer;
    margin-right: auto;
    margin-left: auto;
}
.play svg {
    fill: white;
    -webkit-animation: xz 5s linear infinite;
    -moz-animation: xz 5s linear infinite;
    animation: xz 5s linear infinite;
    display: block;
}
.play path {
    fill: transparent;
}
.faq-page .list{
  padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}
.faq-page .list .con{
  line-height: 28px;
  color: #666666;
}
@media screen and (max-width: 1250px) {
  .sustainable-page .sustainable-1 .img {
    min-height: 40vw;
  } 
  .sustainable-page .sustainable-2 .list ul{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1000px){
  .sustainable-page .sustainable-1 .img .play {
    left: 16.5%;
  } 
  .sustainable-page .sustainable-3 .list .right {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 700px){
  .sustainable-page .sustainable-1 .img {
    height: 70vw;
  }
   .sustainable-page .sustainable-1 .img .play {
    left: 12%;
  }
  .sustainable-page .sustainable-2 .list ul{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
#pups_shadow {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from {
  position: fixed;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50.0%,-50%);
  -moz-transform: translate(50.0%,-50%);
  -ms-transform: translate(50.0%,-50%);
  transform: translate(50.0%,-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;
  right: 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;
  left: 10px;
  background: #eee;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from i.close::after,
#pups_from i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  right: 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-left: 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;
}
.hwaq-num-strip{
  top: -6px !important;
}
.seoPublic .Auxil-news .list ul li .content p{
  font-weight: 400;
}
.page-header01 .logo img{
  filter: invert(1);
}
.seoPublic .Auxil-news .list ul li .content a.link{
  font-weight: 400;
}