body {
  --color: #95692b;
  max-width: 1920px;
  margin: 0 auto;
  font-family: 'Arial';
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.container {
  padding: 0 15px;
  position: relative;
  width: 1754px;
  margin: 0 auto;
}
.more {
  display: inline-block;
  font-size: 20px;
  background-color: #c4a374;
  color: #fff;
  border-radius: 28px;
  padding: 11px 35px 9px 34px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.more::before,
.more::after {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--color)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--color)), color-stop(75%, var(--color)), color-stop(0, transparent));
  background: -webkit-linear-gradient(left, var(--color) 25%, transparent 0, transparent 50%, var(--color) 0, var(--color) 75%, transparent 0);
  background: -moz-linear-gradient(left, var(--color) 25%, transparent 0, transparent 50%, var(--color) 0, var(--color) 75%, transparent 0);
  background: linear-gradient(90deg, var(--color) 25%, transparent 0, transparent 50%, var(--color) 0, var(--color) 75%, transparent 0);
  content: "";
  z-index: -1;
  inset: 0;
  position: absolute;
  -webkit-transform: translateY(var(--progress, 100%));
  -moz-transform: translateY(var(--progress, 100%));
  -ms-transform: translateY(var(--progress, 100%));
  transform: translateY(var(--progress, 100%));
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -moz-transition: transform 0.2s ease, -moz-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease, -moz-transform 0.2s ease;
}
.more::after {
  --progress: -100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--color)), color-stop(50%, var(--color)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--color)));
  background: -webkit-linear-gradient(left, transparent 0, transparent 25%, var(--color) 0, var(--color) 50%, transparent 0, transparent 75%, var(--color) 0);
  background: -moz-linear-gradient(left, transparent 0, transparent 25%, var(--color) 0, var(--color) 50%, transparent 0, transparent 75%, var(--color) 0);
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--color) 0, var(--color) 50%, transparent 0, transparent 75%, var(--color) 0);
}
.more.white {
  background: #fff;
  color: #0a0a0a;
}
.more.white:hover {
  color: #fff;
}
.more:hover {
  color: #fff;
}
.more:hover::before,
.more:hover::after {
  --progress: 0;
}
#header {
  z-index: 20;
  position: fixed;
  top: 19px;
  left: 0;
  width: 100%;
}
#header .nav {
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .menu-box {
  margin: 0 0 0 auto;
}
#header .nav .menu-box ul.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .menu-box ul.menu > li {
  margin-right: 5.056em;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  text-transform: capitalize;
}
#header .nav .menu-box ul.menu > li > a {
  line-height: 1;
}
#header .nav .menu-box ul.menu > li > a i {
  position: absolute;
  right: 0;
  top: 30%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}
#header .nav .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  z-index: 1;
  font-size: 14px;
  background: #fff;
  top: 130%;
  left: 0;
  width: auto;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
  white-space: nowrap;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
  background: none;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li:hover a {
  color: #fff;
}
#header .nav .menu-box ul.menu > li:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .menu-box ul.menu > li:hover,
#header .nav .menu-box ul.menu > li.active {
  color: var(--color);
}
#header .nav .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .h-search {
  cursor: pointer;
  font-size: 25px;
}
#header .nav .h-search::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 0;
  width: 2px;
  height: 29px;
  background: #000;
  -webkit-transform: skew(-16deg);
  -moz-transform: skew(-16deg);
  -ms-transform: skew(-16deg);
  transform: skew(-16deg);
}
#header .nav .yuy span {
  display: inline-block;
  text-align: center;
  line-height: 1;
}
#header .nav .yuy span i {
  display: block;
  margin-top: -3px;
}
#header .nav .yuy ul {
  left: initial;
  right: 0;
  z-index: 100;
}
#header .nav .msg {
  display: inline-block;
  font-size: 18px;
  background-color: #ffffff;
  border-radius: 19px;
  padding: 6px 29px 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#header .nav .msg::before,
#header .nav .msg::after {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--color)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--color)), color-stop(75%, var(--color)), color-stop(0, transparent));
  background: -webkit-linear-gradient(left, var(--color) 25%, transparent 0, transparent 50%, var(--color) 0, var(--color) 75%, transparent 0);
  background: -moz-linear-gradient(left, var(--color) 25%, transparent 0, transparent 50%, var(--color) 0, var(--color) 75%, transparent 0);
  background: linear-gradient(90deg, var(--color) 25%, transparent 0, transparent 50%, var(--color) 0, var(--color) 75%, transparent 0);
  content: "";
  z-index: -1;
  inset: 0;
  position: absolute;
  -webkit-transform: translateY(var(--progress, 100%));
  -moz-transform: translateY(var(--progress, 100%));
  -ms-transform: translateY(var(--progress, 100%));
  transform: translateY(var(--progress, 100%));
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -moz-transition: transform 0.2s ease, -moz-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease, -moz-transform 0.2s ease;
}
#header .nav .msg::after {
  --progress: -100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--color)), color-stop(50%, var(--color)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--color)));
  background: -webkit-linear-gradient(left, transparent 0, transparent 25%, var(--color) 0, var(--color) 50%, transparent 0, transparent 75%, var(--color) 0);
  background: -moz-linear-gradient(left, transparent 0, transparent 25%, var(--color) 0, var(--color) 50%, transparent 0, transparent 75%, var(--color) 0);
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--color) 0, var(--color) 50%, transparent 0, transparent 75%, var(--color) 0);
}
#header .nav .msg:hover {
  color: #fff;
}
#header .nav .msg:hover::before,
#header .nav .msg:hover::after {
  --progress: 0;
}
#header::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 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.active {
  top: 0;
}
#header.active::after {
  width: 100%;
}
#header.active .nav .msg {
  background: #000;
  color: #fff;
}
.text-color {
  color: var(--color);
}
#banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#banner ul li {
  position: relative;
}
#banner ul li > img {
  width: 100%;
}
#banner ul li .text {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 5.1042%;
}
#banner ul li .text .box {
  max-width: 620px;
}
#banner ul li .text .title {
  line-height: 1.2;
}
#banner ul li .text .title1 {
  line-height: 1.5;
}
#banner ul li .text .con {
  letter-spacing: 1px;
}
#banner ul li .text .title,
#banner ul li .text .title1,
#banner ul li .text .con,
#banner ul li .text .btn,
#banner ul li .text .img {
  opacity: 0;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul .swiper-slide-active .text .title,
#banner ul .swiper-slide-active .text .title1,
#banner ul .swiper-slide-active .text .con,
#banner ul .swiper-slide-active .text .btn,
#banner ul .swiper-slide-active .text .img {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#banner ul .swiper-slide-active .text .title {
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
#banner ul .swiper-slide-active .text .title1 {
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  transition-delay: .5s;
}
#banner ul .swiper-slide-active .text .con {
  -webkit-transition-delay: .8s;
  -moz-transition-delay: .8s;
  transition-delay: .8s;
}
#banner ul .swiper-slide-active .text .btn {
  -webkit-transition-delay: 1.1s;
  -moz-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
#banner ul .swiper-slide-active .text .img {
  -webkit-transition-delay: 1.4s;
  -moz-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.tr_5 {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.font-18 {
  line-height: 1.6;
}
.font-16 {
  line-height: 1.8;
}
.font-14 {
  line-height: 2;
}
.font-30 {
  line-height: 1.2;
}
.title,
.i-title {
  font-weight: bold;
}
.i-tag {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  color: #1b1b1b;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  display: block;
  padding-bottom: 21px;
}
.i-title {
  font-size: 60px;
  line-height: 1.2;
  color: #282828;
}
@-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 .con {
  line-height: 1.3;
  opacity: .7;
  width: 45%;
}
#index-body .i-category .content ul {
  height: 719px;
}
#index-body .i-category .content ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: margin 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: margin 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin 0.5s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1), -moz-box-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin 0.5s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin 0.5s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -moz-box-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -ms-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#index-body .i-category .content ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -moz-transition: transform 0.5s ease, -moz-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease, -moz-transform 0.5s ease;
}
#index-body .i-category .content ul li .tit {
  color: #fff;
  height: 113px;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category .content ul li .tit::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  -webkit-clip-path: polygon(14% 0%, 100% 0%, 90% 100%, 0% 100%);
  clip-path: polygon(14% 0%, 100% 0%, 90% 100%, 0% 100%);
}
#index-body .i-category .content ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(57, 35, 4, 0.2);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category .content ul li:first-child {
  -webkit-clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  z-index: 1;
}
#index-body .i-category .content ul li:first-child.active1 {
  -webkit-clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
}
#index-body .i-category .content ul li:first-child.active .tit {
  margin-right: 9%;
}
#index-body .i-category .content ul li:nth-child(2) {
  margin-left: -3.3%;
  -webkit-transform: skew(-11deg);
  -moz-transform: skew(-11deg);
  -ms-transform: skew(-11deg);
  transform: skew(-11deg);
  z-index: 2;
}
#index-body .i-category .content ul li:nth-child(2).active,
#index-body .i-category .content ul li:nth-child(2).active1 {
  -webkit-transform: skew(-9deg);
  -moz-transform: skew(-9deg);
  -ms-transform: skew(-9deg);
  transform: skew(-9deg);
  margin-left: -2.7%;
}
#index-body .i-category .content ul li:nth-child(2).active .tit,
#index-body .i-category .content ul li:nth-child(2).active1 .tit {
  margin-right: -7%;
  padding-right: 8%;
}
#index-body .i-category .content ul li:last-child {
  -webkit-clip-path: polygon(32% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 3;
  margin-left: -3.3%;
}
#index-body .i-category .content ul li:last-child.active {
  -webkit-clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  margin-left: -2.7%;
}
#index-body .i-category .content ul li:last-child.active .tit {
  margin-right: -4%;
}
#index-body .i-category .content ul li:last-child.active1 {
  -webkit-clip-path: polygon(26% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0% 100%);
  margin-left: -2.7%;
}
#index-body .i-category .content ul li.active {
  -webkit-box-flex: 2.3;
  -webkit-flex: 2.3;
  -moz-box-flex: 2.3;
  -ms-flex: 2.3;
  flex: 2.3;
}
#index-body .i-category .content ul li.active .tit {
  opacity: 1;
}
#index-body .i-category .content ul li.active::before {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
#index-body .i-product {
  padding: 10.6771% 0 0 0;
  position: relative;
  z-index: 1;
}
#index-body .i-product .left {
  width: 21.737%;
}
#index-body .i-product .left ul li a {
  color: #a3a3a3;
  padding-left: 33px;
  position: relative;
  letter-spacing: 1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: block;
}
#index-body .i-product .left ul li a::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  background: url(../images/p-icon.png) no-repeat center;
  background-size: 100% 100%;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .left ul li a:hover,
#index-body .i-product .left ul li a.active {
  color: #c4a374;
}
#index-body .i-product .left ul li a:hover::before,
#index-body .i-product .left ul li a.active::before {
  opacity: 1;
}
#index-body .i-product .left ul li:last-child {
  margin-bottom: 0;
}
#index-body .i-product .right {
  width: 78.263%;
}
#index-body .i-product .right .item {
  display: none;
}
#index-body .i-product .right .item.active {
  display: block;
}
#index-body .i-product .right .img {
  width: 60.782%;
}
#index-body .i-product .right .img .big {
  position: relative;
  z-index: 1;
  text-align: center;
}
#index-body .i-product .right .img .big img {
  display: inline-block;
}
#index-body .i-product .right .img .big::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/p-tx.png) no-repeat center;
  background-size: 100% 100%;
}
#index-body .i-product .right .img .small {
  max-width: 332px;
  margin: 0 0 0 100px;
  padding: 45px 0;
}
#index-body .i-product .right .img .small dl {
  margin: -14.5px;
}
#index-body .i-product .right .img .small dl dd {
  padding: 14.5px;
}
#index-body .i-product .right .img .small dl dd .img-box {
  border-radius: 50%;
  background-color: #f8fafb;
  -webkit-box-shadow: 4px 7px 29px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 4px 7px 29px 0px rgba(0, 0, 0, 0.1);
  border: solid 4px #ffffff;
}
#index-body .i-product .right .text {
  width: 39.218%;
}
#index-body .i-product .right .text .title {
  line-height: 1.2;
}
#index-body .i-product .right .text .con {
  line-height: 1.56;
  opacity: .7;
}
#index-body .i-product .tp {
  position: absolute;
  -webkit-animation: move 5s linear infinite;
  -moz-animation: move 5s linear infinite;
  animation: move 5s linear infinite;
}
#index-body .i-product .tp.tp1 {
  left: 0;
  max-width: 153px;
  top: 30%;
}
#index-body .i-product .tp.tp2 {
  top: 40%;
  right: 0;
  max-width: 177px;
}
#index-body .i-about {
  background: url(../images/abg.png) no-repeat center bottom;
}
#index-body .i-about .box {
  background-position: center 100px;
  background-repeat: no-repeat;
  background-size: auto;
}
#index-body .i-about .top .i-title {
  width: 33%;
}
#index-body .i-about .top .right {
  width: 41%;
  color: #282828;
  opacity: 0.8;
}
#index-body .i-about .top .right .link span {
  color: rgba(40, 40, 40, 0.9);
  line-height: 1;
}
#index-body .i-about .top .right .link em {
  width: 1.75em;
  height: 1.75em;
  border-radius: 50%;
  background-color: #c4a374;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-about .top .right .link em i {
  font-size: 20px;
}
#index-body .i-about .top .right .link:hover span {
  color: var(--color);
}
#index-body .i-about .top .right .link:hover em {
  background: var(--color);
}
#index-body .i-about .img {
  margin-top: 10.673%;
}
#index-body .i-about .img .circle {
  width: 14.5em;
  height: 14.5em;
  top: -29px;
  border-radius: 50%;
  background: rgba(196, 163, 116, 0.2);
  right: 12.7%;
  z-index: 1;
  -webkit-clip-path: inset(0 50% 0 50%);
  clip-path: inset(0 50% 0 50%);
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
#index-body .i-about .img .circle::before,
#index-body .i-about .img .circle::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
}
#index-body .i-about .img .circle::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  left: 50%;
  background-color: #a37c45;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index-body .i-about .img .circle::after {
  width: 197px;
  height: 1px;
  left: -22%;
}
#index-body .i-about .img .imgs {
  display: inline-block;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
#index-body .i-about .img .imgs .play {
  color: #fff;
  font-weight: 500;
}
#index-body .i-about .bottom ul li .num {
  color: #755b34;
  line-height: 1;
  font-weight: bold;
}
#index-body .i-about .bottom ul li p {
  color: #282828;
  opacity: 0.6;
  line-height: 1.3;
  margin-top: 23px;
}
#index-body .i-service {
  height: 781px;
}
#index-body .i-service .header {
  top: 63px;
  left: 0;
  width: 100%;
  z-index: 8;
}
#index-body .i-service .header .i-tag {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
#index-body .i-service .header .arrow a {
  font-size: 24px;
  width: 2.46em;
  height: 2.46em;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index-body .i-service .header .arrow a::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-service .header .arrow a:hover {
  color: #fff;
}
#index-body .i-service .header .arrow a:hover::after {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
#index-body .i-service .img ul li {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: 100% 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-service .img ul li.active {
  opacity: 1;
  z-index: 2;
  -webkit-animation: img 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  -moz-animation: img 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  animation: img 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
}
#index-body .i-service .img ul li.zIndex {
  opacity: 1;
  z-index: 1;
}
#index-body .i-service .text {
  top: 130px;
  left: 0;
  width: 100%;
  z-index: 6;
  color: #fff;
}
#index-body .i-service .text ul {
  max-width: 757px;
}
#index-body .i-service .text ul li .num {
  font-size: 188px;
  line-height: 1;
}
#index-body .i-service .text ul li .desc .title {
  line-height: 1.1;
}
#index-body .i-service .text ul li .desc .con {
  opacity: 0.8;
  max-height: 115px;
  overflow-y: auto;
}
#index-body .i-service::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50.3646%;
  height: 100%;
  background: #744d16;
  z-index: 3;
}
#index-body .i-news .tab ul li a {
  width: 9.4167em;
  padding: 10px 0 8px;
  border-radius: 27px;
  border: solid 1px #666666;
  letter-spacing: 1px;
  color: #7f7f7f;
}
#index-body .i-news .tab ul li:hover a,
#index-body .i-news .tab ul li.active a {
  background: var(--color);
  border-color: var(--color);
  color: #fff;
}
#index-body .i-news .tab ul li:first-child {
  margin-left: 0;
}
#index-body .i-news .arrow {
  top: -23%;
  right: 7%;
}
#index-body .i-news .arrow a {
  width: 2.6em;
  height: 2.6em;
  border-radius: 50%;
  background-color: #dbdbdb;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index-body .i-news .arrow a::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-news .arrow a:hover::after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#index-body .i-news .content {
  margin-right: -112px;
  width: 95vw;
}
#index-body .i-news .content ul .slick-list {
  padding-right: 366px !important;
}
#index-body .i-news .content .ig {
  height: 563px;
  background-color: #f8f8f8;
  z-index: 1;
}
#index-body .i-news .content .ig .tit {
  line-height: 1.5;
}
#index-body .i-news .content .ig .con {
  line-height: 1.75;
  color: #666;
}
#index-body .i-news .content .ig .bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.11);
}
#index-body .i-news .content .ig .bottom span {
  font-weight: bold;
  line-height: 1;
  color: var(--color);
}
#index-body .i-news .content .ig .bottom em {
  line-height: 1.4;
  color: #0d0d0d;
  opacity: 0.7;
}
#index-body .i-news .content .ig .bg {
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  -moz-transition: 0.8s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  transition: 0.8s cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
#index-body .i-news .content .ig .bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
#index-body .i-news .content .ig:hover {
  color: #fff;
}
#index-body .i-news .content .ig:hover .con {
  color: #fff;
}
#index-body .i-news .content .ig:hover .bg {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .i-news .content .ig:hover .bottom span{
  color: #fff;
}
#index-body .i-news .content .ig:hover .bottom em{
  color: #fff;
}
#footer {
  background: url(../images/fbg.png) no-repeat center bottom #fff;
  position: relative;
  z-index: 1;
  background-size: 100% auto;
  border-top: 1px solid rgba(113, 105, 96, 0.2);
}
#footer .tit {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
#footer ul li {
  font-size: 18px;
  line-height: 1.7;
  color: #716f6e;
  margin-bottom: 2px;
}
#footer ul li:last-child {
  margin-bottom: 0;
}
#footer .left {
  width: 18.3%;
}
#footer .right {
  width: 81.7%;
}
#footer .f-top .right .title {
  line-height: 1.6;
  color: #1a1a1a;
}
#footer .f-top .right .btn {
  height: 52px;
}
#footer .f-top .right .btn .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: 18px;
  letter-spacing: 0px;
  padding: 0 28px;
  height: 100%;
}
#footer .f-top .right .btn .link {
  width: 52px;
  height: 100%;
  background-color: #c4a374;
  border-radius: 50%;
  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;
}
#footer .f-top .right .btn .link img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-top .right .btn:hover .more::before,
#footer .f-top .right .btn:hover .more::after {
  --process: 0;
}
#footer .f-top .right .btn:hover .link {
  background: var(--color);
}
#footer .f-top .right .btn:hover .link img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#footer .f-top .right .menu {
  padding: 0 17.03% 6px 0;
}
#footer .f-top .right .menu ul li {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-top .right .menu ul li:hover {
  color: #000;
}
#footer .f-bottom {
  border-top: 1px solid rgba(113, 105, 96, 0.2);
}
#footer .f-bottom .right {
  padding-right: 7.2%;
}
#footer .f-bottom .right .f-contact ul li {
  line-height: 1.6;
}
#footer .f-bottom .right p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 278px;
  color: #716f6e;
}
#footer .f-bottom .right .code {
  width: 106px;
  background: rgba(0, 0, 0, 0.1);
  padding: 7px 6px 6px 7px;
}
#footer .f-bottom .right .code #ewm {
  width: 93px;
  border: 5px solid #fff;
}
#footer .f-copy {
  font-size: 18px;
  line-height: 1.6;
  color: #716f6e;
}
#footer svg {
  max-height: 26px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  fill: #716f6e;
}
#footer svg text {
  fill: #716f6e;
}
#footer svg:hover {
  fill: #000;
}
#footer svg:hover text {
  fill: #000;
}
#footer .f-back {
  top: -10.5%;
  right: 24px;
  font-size: 24px;
  width: 2.46em;
  height: 2.46em;
  border-radius: 50%;
  background-color: #c4a374;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}
#footer .f-back::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-back:hover::after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media (max-width: 1700px) {
  #index-body .i-category .content ul li:nth-child(2) {
    -webkit-transform: skew(-12deg);
    -moz-transform: skew(-12deg);
    -ms-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  #index-body .i-category .content ul li:nth-child(2).active,
  #index-body .i-category .content ul li:nth-child(2).active1 {
    -webkit-transform: skew(-7deg);
    -moz-transform: skew(-7deg);
    -ms-transform: skew(-7deg);
    transform: skew(-7deg);
    margin-left: -2%;
  }
  #index-body .i-product .right .img .small {
    margin: 0 0 0 50px;
  }
  #index-body .i-about .top .i-title {
    width: 41%;
  }
  #index-body .i-service .text ul {
    max-width: 670px;
  }
  #index-body .i-news .content .ig {
    height: 500px;
  }
}
@media (max-width: 1450px) {
  #header .nav .menu-box ul.menu > li {
    margin-right: 3.6em;
  }
  #header .nav .h-search {
    margin-left: 40px;
  }
  #banner ul li .text {
    padding-bottom: 3%;
  }
  #banner ul li .text .title {
    font-size: 40px;
  }
  #banner ul li .text .title1 {
    font-size: 28px;
  }
  #banner ul li .text .con {
    font-size: 18px;
  }
  #banner ul li .text .img {
    zoom: .6;
  }
  #index-body .i-category .con {
    width: 40%;
  }
  #index-body .i-product .box {
    padding: 0 70px;
  }
  #index-body .i-product .right .img .small {
    margin: 0 0 0 20px;
  }
  .i-title {
    font-size: 50px;
  }
  #index-body .i-about .img .circle {
    right: 1.7%;
  }
  #index-body .i-about .img .circle::after {
    left: -40%;
  }
  #index-body .i-service .text ul {
    max-width: 580px;
  }
  #index-body .i-news .content ul .slick-list {
    padding-right: 200px !important;
  }
  .fixed-toolbar {
    right: 10px;
  }
}
@media (max-width: 1250px) {
  .i-title {
    font-size: 40px;
  }
  #index-body .i-category .content ul {
    height: 600px;
  }
  #index-body .i-news .content .ig {
    height: 400px;
  }
  #index-body .i-category .content ul li:nth-child(2) {
    -webkit-transform: skew(-11deg);
    -moz-transform: skew(-11deg);
    -ms-transform: skew(-11deg);
    transform: skew(-11deg);
  }
  #index-body .i-category .content ul li:nth-child(2).active,
  #index-body .i-category .content ul li:nth-child(2).active1 {
    -webkit-transform: skew(-6deg);
    -moz-transform: skew(-6deg);
    -ms-transform: skew(-6deg);
    transform: skew(-6deg);
    margin-left: -2%;
  }
  #index-body .i-product .box {
    padding: 0 30px;
  }
  #index-body .i-product .left ul li a {
    padding-left: 23px;
  }
  #index-body .i-product .tp.tp1 {
    max-width: 110px;
  }
  #index-body .i-product .tp.tp2 {
    max-width: 130px;
  }
  #index-body .i-about .img .circle::after {
    left: -53%;
  }
  #index-body .i-service {
    height: 700px;
  }
  #index-body .i-service .text ul li .num {
    font-size: 160px;
  }
  #index-body .i-service .text ul {
    max-width: 460px;
  }
  #footer .f-top,
  #footer .f-bottom {
    zoom: .8;
  }
}
@media (max-width: 1000px) {
  #banner ul li .text .img {
    display: none;
  }
  .font-36 {
    font-size: 30px;
  }
  .font-24 {
    font-size: 20px;
  }
  .font-18 {
    font-size: 18px;
  }
  .i-tag {
    font-size: 20px;
  }
  .i-title {
    font-size: 36px;
  }
  #index-body .i-category .con {
    width: 100%;
    margin-top: 20px;
    text-align: left;
  }
  #index-body .i-category .content ul {
    height: 500px;
  }
  #index-body .i-category .content ul li:nth-child(2) {
    -webkit-transform: skew(-9deg);
    -moz-transform: skew(-9deg);
    -ms-transform: skew(-9deg);
    transform: skew(-9deg);
  }
  #index-body .i-category .content ul li:nth-child(2).active,
  #index-body .i-category .content ul li:nth-child(2).active1 {
    -webkit-transform: skew(-6deg);
    -moz-transform: skew(-6deg);
    -ms-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  #index-body .i-product .box {
    padding: 0;
  }
  #index-body .i-product .box .left {
    display: none;
  }
  #index-body .i-product .box .right {
    width: 100%;
  }
  #index-body .i-product .tp {
    display: none;
  }
  #index-body .i-about .box {
    background: transparent !important;
  }
  #index-body .i-about .top .i-title {
    width: 100%;
  }
  #index-body .i-about .top .right {
    width: 100%;
    margin-top: 20px;
  }
  #index-body .i-about .img {
    margin-top: 3%;
  }
  #index-body .i-about .img .circle {
    display: none;
  }
  #index-body .i-about .bottom {
    padding: 30px 0 0 0;
  }
  #index-body .i-about .bottom ul {
    margin: -10px 0;
  }
  #index-body .i-about .bottom ul li {
    padding: 10px 0;
  }
  #index-body .i-service {
    height: 600px;
  }
  #index-body .i-service .text ul {
    max-width: 320px;
  }
  #index-body .i-service .text ul li .num {
    font-size: 100px;
  }
  #footer .left,
  #footer .right {
    width: 100%;
  }
  #footer .f-top {
    zoom: 1;
  }
  #footer .f-top .left .img {
    display: none;
  }
  #footer .f-top .right {
    padding-left: 0;
  }
  #footer .f-top .right .menu {
    display: none;
  }
  #footer .f-bottom {
    zoom: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  #footer .f-bottom .f-copy {
    width: 100%;
    margin-top: 20px;
  }
  #footer .f-bottom .right {
    padding: 0;
  }
  #footer .f-bottom .right .f-code {
    display: none;
  }
}
@media (max-width: 700px) {
  .more {
    font-size: 18px;
    padding: 9px 17px 7px;
  }
  #banner ul li .text .title {
    font-size: 30px;
  }
  #banner ul li .text .title1 {
    font-size: 20px;
  }
  .i-tag {
    font-size: 18px;
    padding-bottom: 11px;
  }
  .i-title {
    font-size: 30px;
  }
  .font-24,
  .font-20 {
    font-size: 18px;
    line-height: 1.6 !important;
  }
  #index-body .i-category .content ul {
    height: 400px;
  }
  #index-body .i-category .content ul li {
    width: 50%;
    -webkit-clip-path: initial !important;
    clip-path: initial !important;
  }
  #index-body .i-category .content ul li:first-child.active .tit {
    margin-right: 0;
  }
  #index-body .i-category .content ul li:nth-child(2) {
    -webkit-transform: skew(0deg) !important;
    -moz-transform: skew(0deg) !important;
    -ms-transform: skew(0deg) !important;
    transform: skew(0deg) !important;
    margin-left: 0 !important;
  }
  #index-body .i-category .content ul li:last-child {
    margin-left: 0 !important;
  }
  #index-body .i-product .right .img {
    width: 100%;
  }
  #index-body .i-product .right .text {
    width: 100%;
  }
  #index-body .i-about .bottom ul li {
    width: 50%;
  }
  #index-body .i-service {
    height: 420px;
  }
  #index-body .i-service .header {
    top: 30px;
  }
  #index-body .i-service .header .arrow a {
    font-size: 20px;
  }
  #index-body .i-service .img ul li {
    background-size: 100% 100%;
  }
  #index-body .i-service .text {
    zoom: .76;
  }
  #index-body .i-news .arrow {
    top: -19%;
  }
  #index-body .i-news .tab ul li a {
    font-size: 18px;
  }
  #index-body .i-news .content {
    margin-right: 0;
    width: 100%;
  }
  #index-body .i-news .content ul .slick-list {
    padding-right: 0 !important;
  }
  #footer .f-bottom .right .f-add {
    margin-top: 12px;
  }
  #footer .f-bottom .right p {
    max-width: 100%;
  }
  #footer .f-copy {
    font-size: 18px;
  }
  #footer ul li {
    font-size: 18px;
    line-height: 1.8;
  }
  #footer .f-top .right .top {
    margin-top: 20px;
  }
  #footer .f-bottom .right p {
    font-size: 18px;
    line-height: 1.8;
  }
  #footer .f-back {
    top: -11.5%;
  }
}
@media (max-width: 500px) {
  #banner ul li .text .title {
    font-size: 24px;
  }
  #banner ul li .text .title1 {
    font-size: 14px;
  }
  #banner ul li .text .con {
    display: none;
  }
  .more {
    font-size: 15px;
  }
  .font-18 {
    font-size: 18px;
    line-height: 1.8 !important;
  }
  #index-body .i-category .content ul {
    height: auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .i-category .content ul li {
    -webkit-box-flex: initial;
    -webkit-flex: initial;
    -moz-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    width: 100%;
    height: 300px;
  }
  #index-body .i-category .content ul li .tit {
    opacity: 1;
  }
  #index-body .i-category .content ul li::before {
    opacity: 0;
  }
  #index-body .i-category .content ul li.active {
    width: 100%;
  }
  #index-body .i-product .right .text {
    padding-top: 30px;
  }
  #index-body .i-about .top .right .img img:first-child {
    width: 60%;
  }
  #index-body .i-about .top .right .img img:last-child {
    width: 24%;
  }
  #index-body .i-service {
    height: 340px;
  }
  #index-body .i-service .header {
    top: 16px;
  }
  #index-body .i-service .header .arrow a {
    font-size: 18px;
  }
  #index-body .i-service .text {
    zoom: .56;
    top: 190px;
  }
  #index-body .i-news .tab {
    zoom: .7;
  }
  #index-body .i-news .arrow {
    zoom: .6;
    right: 0;
    top: -18%;
  }
}
.inner-banner {
  padding: 208px 0;
  border:1px solid #ddd;
  background: #fafafa;
}
/*.inner-banner .ui.container {
  max-width: 1200px;
}*/
.inner-banner .ui.container h2 {
  font-weight: bold;
  color: #131313;
  font-size: 34px;
  text-transform: capitalize;
}
.inner-banner .ui.container p {
  max-width: 1200px;
  line-height: 1.6;
  margin: 25px 0;
}
.inner-banner .ui.container .mbx {
  margin-left: 30px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #8e8e8e;
  position: relative;
  border-bottom: 1px solid #8e8e8e;
  font-size: 18px;
  flex-wrap: wrap;
}
.inner-banner .ui.container .mbx:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 1px solid #020003;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -30px;
}
.inner-banner .ui.container .mbx a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: #000;
}
@media (max-width: 1250px) {
  .inner-banner{
    margin-top: 60px;
  }
  .inner-banner{
    padding: 60px 0;
  }
}
@media (max-width: 700px) {
  .inner-banner .ui.container .mbx{
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .inner-banner .ui.container h2 {
    font-size: 20px;
  }
  .inner-banner {
    padding: 30px 0;
  }
}
.about-page .about-1{
  position: relative;
}
.about-page .about-1 .play{
  z-index: 9;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #fff;
display: flex;
justify-content: center;
  align-items: center;
}
.about-page .about-1 .play i{
  font-size: 36px;
}
.about-page .about-1 img {
  width: 100%;
}
.about-page .font-50 {
  font-size: 50px;
}
.about-page .about-2 .ui.container {
  background: #fff;
  z-index: 3;
}
.about-page .about-2 .ui.container > p {
  color: #323232;
  line-height: 2;
  margin-bottom: 35px;
}
.about-page .about-2 .ui.container ul.data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 50px;
}
.about-page .about-2 .ui.container ul.data li {
  text-align: center;
  color: #131313;
}
.about-page .about-2 .ui.container ul.data li span {
  font-size: 48px;
  font-weight: 700;
}
.about-page .about-2 .ui.container ul.data li p {
  font-size: 18px;
}
.about-page .about-2 .ui.container .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 45px;
}
.about-page .about-2 .ui.container .top .block {
  width: 128px;
  height: 128px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #333654;
  color: #fff;
  text-align: center;
}
.about-page .about-2 .ui.container .top .block em {
  font-weight: bold;
  line-height: 1;
}
.about-page .about-2 .ui.container .top .block p {
  line-height: 1;
  margin-top: 10px;
}
.about-page .about-2 .ui.container .top h3 {
  font-weight: bold;
  max-width: 625px;
  margin-left: 55px;
  text-transform: uppercase;
}
.about-page ul.applist .about-2 .ui.container .top h1{
  margin-left: 0;
  max-width: none;
}
.about-page .about-2 .main ul{
  margin: -30px;
}
.about-page .about-2 .main ul li{
  padding: 30px;
}
.about-page ul.applist .slick-arrow{
  width: 50px;
  height: 60px;
  display: block;
  position: absolute;
  z-index: 3;
  top: 43%;
  border: none;
  color: transparent;
}
.about-page ul.applist .slick-arrow.slick-prev{
  background: url(/nbforwell/2023/02/13/innerapp-left.png) center center no-repeat;
  left: 10%;
}
.about-page ul.applist .slick-arrow.slick-prev:hover{
  background: url(/nbforwell/2023/02/13/innerapp-left.png) center center no-repeat ;
}
.about-page ul.applist .slick-arrow.slick-next{
background: url(/nbforwell/2023/02/13/innerapp-right.png) center center no-repeat ;
right: 10%;
}
.about-page ul.applist .slick-arrow.slick-next:hover{
  background: url(/nbforwell/2023/02/13/innerapp-right.png) center center no-repeat ;
}
.about-page ul.applist .slick-dots{
  display: flex;
  justify-content: center;
  align-content: center;
  position: relative;
  margin-top: 50px;
}
.about-page ul.applist .slick-dots li{
  width: 10px;
  height: 10px;
  border-radius:100%;
  background: #ccc;
  margin: 0 5px; 
}
.about-page ul.applist .slick-dots li button{
  display: none;
}
.about-page .about-3 {
  padding: 85px 0;
}
.about-page ul.applist .slick-dots li.slick-active{
  background: #000;
}

.about-page .about-3 .ui.container ul.advlist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-page .about-3 .ui.container ul.advlist li {
  padding: 12px;
}
.about-page .about-3 .ui.container ul.advlist li .item {
  height: 287px;
  border-radius: 10px;
  border: solid 1px #c4a374;
  text-align: left;
  padding: 0 30px;
  padding-top: 25px ;
}
.about-page .about-3 .ui.container ul.advlist li .item img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.about-page .about-3 .ui.container ul.advlist li .item:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #c4a374;
}
.about-page .about-3 .ui.container ul.advlist li .item:hover img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
.about-page .about-3 .ui.container ul.advlist li .item:hover h5 {
  color: #fff;
}
.about-page .about-3 .ui.container ul.advlist li .item:hover p {
  color: #fff;
}
.about-page .about-3 .ui.container ul.advlist li .item h5 {
  color: #232323;
  margin-top: 25px;
  margin-bottom: 30px;
  font-weight: 700;
}
.about-page .about-3 .ui.container ul.advlist li .item p {
  line-height: 1.5;
  color: #323232;
}
.about-page .about-4 {
  padding-top: 110px;
  padding-bottom: 130px;
  position: relative;
}
.about-page .about-4:before {
  width: 95%;
  position: absolute;
  height: 100%;
  content: "";
  background: #191919;
  right: 0;
  top: 0;
}
.about-page .about-4 > .ui.container {
  max-width: 1200px;
}
.about-page .about-4 > .ui.container .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-page .about-4 > .ui.container .top .left {
  display: inline-block;
}
.about-page .about-4 > .ui.container .top .left span.tag {
  padding-left: 35px;
  position: relative;
  font-size: 18px;
  color: #8e8e8e;
}
.about-page .about-4 > .ui.container .top .left span.tag::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about-page .about-4 > .ui.container .top .left h3 {
  color: #fff;
  font-weight: 400;
}
.about-page .about-4 > .ui.container .top .left h3 em {
  font-weight: 700;
}
.about-page .about-4 .main {
  margin-top: 50px;
}
.about-page .about-4 .main .ui.container {
  position: relative;
  left: 300px;
  max-width: 1800px;
}
.about-page .about-4 .main .ui.container ul.catelist {
  margin: 0 -15px;
}
.about-page .about-4 .main .ui.container ul.catelist li {
  padding: 0 15px;
}
.about-page .about-5 {

  padding-bottom: 60px;
}
.about-page .about-5 .ui.container .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 3px solid #191919;
  margin-bottom: 90px;
}
.about-page .about-5 .ui.container .top h3 {
  display: inline-block;
  font-weight: bold;
}
.about-page .about-5 .ui.container .factorybox ul{
  margin: 0 -10px;
}
.about-page .about-5 .ui.container .factorybox ul li{
  padding: 0 10px;
}
.about-page .about-5 .ui.container .main ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 -30px;
}
.about-page .about-5 .ui.container .main ul li {
  padding: 30px;
  text-align: left;
}
.about-page .about-5 .ui.container .main ul li span {
  font-weight: 700;
}
.about-page .about-5 .ui.container .main ul li p {
  margin-top: 45px;
  color: #131313;
  line-height: 2;
}
.newdet-page{
  padding-top: 100px;
}
.newdet-page .news-main {
  border: solid 1px #e4e4e4;

border-radius: 24px;
}
.newdet-page .news-main .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #fff;
}
.newdet-page .news-main .top .left {
  padding: 20px;
}
.newdet-page .news-main .top .left span.date {
  color: #232323;
}
.newdet-page .news-main .top .left h1 {
  color: #232323;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 30px;
}
.newdet-page .news-main .top .left ul.sharelist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.newdet-page .news-main .top .left ul.sharelist li {
  margin-right: 20px;
  display: inline-block;
  width: auto;
  color: #131313;
}
.newdet-page .news-main .top .left ul.sharelist li a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 18px;
}
.newdet-page .news-main .top .left ul.sharelist li a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: #35b7a9;
}
.newdet-page .news-main .content{
  font-size: 18px;
  line-height: 1.75;
  color: #323232;
  padding: 40px 20px;
}
.newdet-page .news-main .navbtn {
  margin-top: 60px;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.newdet-page .news-main .navbtn a {
  font-size: 18px;
  color: #cfcfcf;
}
.newdet-page .news-main .navbtn a:nth-child(1) {
  padding-left: 50px;
  background: url(../images/inner-fanye1.png) center left no-repeat;
}
.newdet-page .news-main .navbtn a:nth-child(2) {
  padding-right: 50px;
  background: url(../images/inner-fanye.png) center right no-repeat;
  text-align: right;
}
.play2 {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.play2::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 100%;
  background: transparent;
  background: #fff;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.play2::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 100%;
  background: #fff;
  background: transparent;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.inner-page{
  padding: 5% 0 6%;
  border-radius: 100px 100px 0 0; 
  background: -webkit-gradient(linear, left top, left bottom, color-stop(100%, #ffffff), color-stop(0%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, #ffffff 100%, rgba(255, 255, 255, 0) 0%);
  background: -moz-linear-gradient(top, #ffffff 100%, rgba(255, 255, 255, 0) 0%);
  background: linear-gradient(to bottom, #ffffff 100%, rgba(255, 255, 255, 0) 0%);
  -webkit-box-shadow: 0 15px 120px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 120px rgba(0, 0, 0, 0.1);
  margin-top: -156px;
}
.inner-page span.tag {
  display: inline-block;
  font-size: 18px;
  padding-left: 35px;
  position: relative;
  color: #8e8e8e;
  margin-bottom: 20px;
}
.inner-page span.tag:before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #000000;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gxs-news {
  padding: 95px 0;
  background: #fff;
}
.gxs-news .ui.container {
  max-width: 1200px;
  text-align: center;
}
.gxs-news .ui.container span.tag {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  padding-left: 35px;
  font-size: 18px;
  color: #8e8e8e;
  margin-bottom: 20px;
}
.gxs-news .ui.container span.tag:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gxs-news .ui.container h3 {
  margin-bottom: 25px;
}
.gxs-news .ui.container h3 em {
  font-weight: 700;
}
.gxs-news .ui.container ul.newslist {
  margin-top: 58px;
}
.gxs-news .ui.container ul.newslist li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex!important;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #e4e4e4;
  margin-bottom: 30px;
}
.gxs-news .ui.container ul.newslist li .img-box {
  margin: -1px 0;
}
.gxs-news .ui.container ul.newslist li .textbox {
  padding: 0 60px;
  text-align: left;
}
.gxs-news .ui.container ul.newslist li .textbox .date {
  color: #232323;
}
.gxs-news .ui.container ul.newslist li .textbox h5 {
  color: #232323;
  font-weight: bold;
  margin: 15px 0;
}
.gxs-news .ui.container ul.newslist li .textbox p {
  line-height: 1.65;
  color: #232323;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 35px;
}
.gxs-news .ui.container ul.newslist li .textbox a.more4 {
  padding-left: 20px;
  position: relative;
  font-size: 18px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-news .ui.container ul.newslist li .textbox a.more4:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  padding-left: 40px;
}
.gxs-news .ui.container ul.newslist li .textbox a.more4:hover:before {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.gxs-news .ui.container ul.newslist li .textbox a.more4:hover span {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.gxs-news .ui.container ul.newslist li .textbox a.more4:hover em {
  text-decoration: none;
}
.gxs-news .ui.container ul.newslist li .textbox a.more4 em {
  text-decoration: underline;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-news .ui.container ul.newslist li .textbox a.more4:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: solid 1px #232323;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-news .ui.container ul.newslist li .textbox a.more4 span {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #efefef;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-news .ui.container ul.newslist li .textbox a.more4 span i {
  color: #000;
  font-size: 24px;
}
.gallery-page .gallery-1 ul{
  margin:0 -10px;
  padding: 95px 0;
  padding-bottom:0; 
}
.gallery-page .gallery-1 ul li{
  padding: 10px 10px;
}
.lelatepro {
  padding: 95px 0;
}
.lelatepro .ui.container ul.relatelist {
  margin: 0 -10px;
  margin-top: 70px;
}
.lelatepro .ui.container ul.relatelist li {
  padding: 10px;
}
.lelatepro .ui.container ul.relatelist li:hover .img-box a.more5 {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  bottom: 0;
}
.lelatepro .ui.container ul.relatelist li .img-box {
  position: relative;
}
.lelatepro .ui.container ul.relatelist li .img-box a.more5 {
  position: absolute;
  bottom: -100%;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  width: 100%;
  display: inline-block;
  font-size: 20px;
  color: #fff;
  background: #000;
  z-index: 3;
  padding: 10px;
  text-align: center;
}
.lelatepro .ui.container ul.relatelist li h5 {
  font-weight: 700;
  margin-top: 20px;
}
.product-jq-page .product-search {
  margin: 0 0 15px;
  background: transparent;
  padding: 15px 0;
  position: relative;
  z-index: 1;
}
.product-jq-page .product-search h5 {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  text-transform: capitalize;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.product-jq-page .product-search .left {
  width: 65%;
  padding-right: 10%;
  position: relative;
  padding-left: 150px;
}
.product-jq-page .product-search .left .select {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.product-jq-page .product-search .left .select span {
  line-height: 60px;
  height: 60px;
  padding: 0 30px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  font-size: 18px;
  border-radius: 18px;
  color: #888a88;
  display: block;
}
.product-jq-page .product-search .left .select span i {
  float: right;
  line-height: inherit;
}
.product-jq-page .product-search .left .select ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #e5e5e5;
  background: white;
  padding: 0 15px;
  display: none;
}
.product-jq-page .product-search .left .select ul li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px #eee dashed;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-jq-page .product-search .left .select ul li:last-child {
  border-bottom: none;
}
.product-jq-page .product-search .left .select ul li:hover {
  color: var(--color);
}
.product-jq-page .product-search .left .select:hover ul {
  display: block;
}
.product-jq-page .product-search .right {
  width: 35%;
  position: relative;
  padding-left: 100px;
}
.product-jq-page .product-search .right .search {
  position: relative;
}
.product-jq-page .product-search .right .search input {
  line-height: 60px;
  height: 60px;
  padding: 0 30px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  font-size: 18px;
  width: 100%;
  background: transparent;
}
.product-jq-page .product-search .right .search input[type="submit"] {
  width: 40px;
  position: absolute;
  background: url("../images/icon-search-black.png") center center no-repeat;
  background-size: 14px;
  border: none;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1400px) {
  .about-page .about-4:before {
    width: 100%;
  }
  .about-page .about-4 .main .ui.container {
    left: 0;
  }
}
@media screen and (max-width: 1400px) {
  .about-page .about-5 .ui.container .main ul li p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .font-45 {
    font-size: 32px;
  }
  .about-page .about-2 .ui.container ul.data {
    padding: 0 0;
  }
  .about-page .about-2 .ui.container ul.data li span {
    font-size: 36px;
  }
  .about-page .about-3 .ui.container ul.advlist li.column {
    width: 50%;
  }
  .gxs-news .ui.container ul.newslist li .textbox {
    padding: 20px;
  }
  .flex-4 > * {
    width: 33.3333%;
  }
}
@media screen and (max-width: 700px) {
  .font-45 {
    font-size: 20px;
  }
  .inner-page{
    margin-top: -80px;
  }
  .about-page .about-2 .ui.container {
    background: #fff;
    z-index: 3;
  }
  .about-page .about-2 .ui.container ul.data {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-3 .ui.container ul.advlist li.column {
    width: 100%;
  }
  .about-page .about-3 .ui.container ul.advlist li .item {
    height: 240px;
  }
  .about-page .about-5 .ui.container .main ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .font-100 {
    font-size: 56px;
  }
  .about-page .about-5 .ui.container .main ul li p {
    margin-top: 0;
  }
  .newdet-page .news-main .top .left {
    width: 100%;
    padding: 40px 0;
  }
  .newdet-page .news-main .top .right {
    width: 100%;
  }
  .gxs-news{
    padding: 20px 0;
  }
  .product-jq-page .product-search .right{
    width: 100%;
    padding-left: 70px;
  }
  .product-jq-page .product-search .left {
    width: 100%;
    padding-right: 0%;
    position: relative;
    padding-left:120px;
    margin-top: 20px;   
  }
  .product-jq-page .product-search .box{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .product-jq-page .product-search .left .select span{
    height: 25px;
    overflow: hidden;
  }
  .flex-3 > *,
  .flex-4 > * {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner .ui.container h2 {
    font-size: 20px;
  }
  .inner-banner {
    padding: 40px 0;
  }
  .about-page .about-3 .ui.container ul.advlist li .item h5 {
    margin: 10px 0;
  }
  .about-page .about-4 > .ui.container .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-2 .ui.container .top .block {
    display: none;
  }
  .about-page .about-2 .ui.container .top h3 {
    margin-left: 0;
  }
  .about-page .about-4 {
    padding-top: 55px;
    padding-bottom: 40px;
    position: relative;
  }
  .about-page .about-5 .ui.container .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-5 .ui.container .top {
    margin-bottom: 20px;
  }
  .newdet-page .news-main .content{
    font-size: 14px;
  }
  .newdet-page .news-main .navbtn{
    flex-wrap: wrap;
  }
  .gallery-page .gallery-1 ul{
    padding: 30px 0;
  }
  .flex-2 > *,
  .flex-3 > *,
  .flex-4 > * {
    width: 100%;
  }
}
.faq-page {
  background: #fafafa;
}
.faq-page .box ul {
  margin-right: -2rem;
  padding-top: 95px;
  padding-bottom: 30px;
}
.faq-page .box ul li {
  padding-right: 2rem;
  margin-bottom: 20px;
}
.faq-page .box ul li .title {
  padding: 30px 30px 30px 80px;
  cursor: pointer;
  position: relative;
  border: 1px solid #fff;
  margin-bottom: 0px;
  background-color: #fff;
}
.faq-page .box ul li .title::after {
  content: "\e812";
  font-family: iconfont;
  font-weight: normal;
  font-size: 18px;
  position: absolute;
  top: 20px;
  left: 20px;
  background: #55595f;
  padding: 9px 14px;
  color: #fff;
}
.faq-page .box ul li .title h6 {
  font-size: 18px;
  margin-bottom: 0;
  color: #000;
}
.faq-page .box ul li .accordion-info {
  display: none;
  padding: 20px;
  margin-top: 0px;
  margin-left: 0px;
  background: #fff;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}
.faq-page .box ul li.active .title {
  color: #fff;
  background: #f26122;
  border: 1px solid #f26122;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
.faq-page .box ul li.active .title h6 {
  color: #fff;
}
.faq-page .box ul li.active .title::after {
  background: #fff;
  color: #f26122;
}
.inner-page .m-page {
  margin-top: 45px;
  text-align: center;
}
.inner-page .m-page a,
.inner-page .m-page span {
  margin: 0 13px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 100%;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: rgba(40,40,40,0.5);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page a::after,
.inner-page .m-page span::after {
  content: '';
  width: 130%;
  height: 130%;
  position: absolute;
  left: -15%;
  top: -15%;
  border-radius: inherit;
  border: 2px solid #ececec;
}
.inner-page .m-page a:hover {
  background-color: #000;
  color: #fff;
}
.inner-page .m-page span.current {
  background-color: #000;
  color: #fff;
}
.news-page{
padding:100px 0 100px 0;
}
.news-1 .list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #e4e4e4;
  margin-bottom: 30px;
  border-radius: 30px;
}
.news-1 .list li .img-box {
  margin: -1px 0;
}
.news-1 .list li .textbox {
  padding:60px;
  text-align: left;
  border-radius: 28px;
}
.news-1 .list li .textbox .date {
  color: #232323;
}
.news-1 .list li .textbox h5 {
  color: #232323;
  font-weight: bold;
  margin: 15px 0;
}
.news-1 .list li .textbox p {
  line-height: 1.65;
  color: #232323;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 35px;
}
.news-1 .list li .textbox a.more4 {
  padding-left: 20px;
  position: relative;
  font-size: 18px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.news-1 .list li .textbox a.more4:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  padding-left: 40px;
}
.news-1 .list li .textbox a.more4:hover:before {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.news-1 .list li .textbox a.more4:hover span {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.news-1 .list li .textbox a.more4:hover em {
  text-decoration: none;
}
.news-1 .list li .textbox a.more4 em {
  text-decoration: underline;
  font-size: 18px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.news-1 .list li .textbox a.more4:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: solid 1px #232323;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.news-1 .list li .textbox a.more4 span {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #efefef;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.news-1 .list li .textbox a.more4 span i {
  color: #000;
  font-size: 24px;
}
.inner-page {

}
@media screen and (max-width: 1000px) {
  .faq-page .box ul {
    margin-right: 0;
  }
  .faq-page .box ul li {
    width: 100% !important;
    padding-right: 0;
  }
}
@media screen and (max-width: 700px) {
  .faq-page .box ul li .title::after {
    left: 10px;
  }
  .faq-page .box ul li .title {
    padding: 20px 10px 20px 66px;
  }
  .faq-page .box ul li .accordion-info {
    padding: 20px 10px;
  }
}
.contact-page .contact-1 {
  padding: 50px 0;
  padding-top: 0;
}
.contact-page .contact-1 .header p {
  font-size: 18px;
  line-height: 1.5;
  color: #7b7b7b;
  margin-top: 10px;
  width: 70%;
}
.contact-page .contact-1 .content {
  margin-top: 40px;
}
.contact-page .contact-1 .content ul {
  margin-right: -60px;
  margin-bottom: -50px;
}
.contact-page .contact-1 .content ul li {
  padding-right: 60px;
  margin-bottom: 50px;
}
.contact-page .contact-1 .content ul li .img {
  display: inline-block;
  vertical-align: top;
}
.contact-page .contact-1 .content ul li .text {
  display: inline-block;
  width: 80%;
  padding-left: 35px;
}
.contact-page .contact-1 .content ul li .text h4 {
  font-size: 24px;
  color: #282828;
  line-height: 1.4;
}
.contact-page .contact-1 .content ul li .text p {
  font-size: 18px;
  line-height: 1.5;
  color: #898989;
  margin-top: 8px;
}
.contact-page .contact-2 {
  position: relative;
  z-index: 10;
  margin-bottom: -6%;
}
.contact-page .contact-2 .box {
  background-color: #ffffff;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
  padding: 40px 60px;
  border-radius: 28px;
}
.contact-page .contact-2 .box h3 {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
}
.contact-page .contact-2 .box form {
  margin-top: 30px;
}
.contact-page .contact-2 .box form ul {
  margin-right: -10px;
}
.contact-page .contact-2 .box form ul li {
  padding-right: 10px;
  margin-bottom: 20px;
}
.contact-page .contact-2 .box form ul li input[type="text"],
.contact-page .contact-2 .box form ul li textarea {
  width: 100%;
  height: 60px;
  background-color: #fafafa;
  color: #3d4459;
  text-indent: 0px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #fafafa;
  font-size: 18px;
  font-weight: 400;
  padding-left: 20px;
}
.contact-page .contact-2 .box form ul li input[type="text"]:focus,
.contact-page .contact-2 .box form ul li textarea:focus {
  border-color: #eee;
}
.contact-page .contact-2 .box form ul li input[type="text"]::placeholder,
.contact-page .contact-2 .box form ul li textarea::placeholder {
  color: #898989;
}
.contact-page .contact-2 .box form ul li input[type="text"]::-webkit-input-placeholder,
.contact-page .contact-2 .box form ul li textarea::-webkit-input-placeholder {
  color: #898989;
}
.contact-page .contact-2 .box form ul li input[type="text"]:-ms-input-placeholder,
.contact-page .contact-2 .box form ul li textarea:-ms-input-placeholder {
  color: #898989;
}
.contact-page .contact-2 .box form ul li textarea {
  height: 140px;
  padding-top: 20px;
}
.contact-page .contact-2 .box form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-2 .box form ul li input[type="submit"] {
  display: inline-block;
  color: #fff;
  width: 169px;
  height: 53px;
  text-align: center;
  border-radius: 30px;
  border: none;
  background: #000;
  font-size: 18px;
  margin: 0 0 0 auto;
  transition: .5s;
  -webkit-transition: .5s;
  -ms-transiton: .5s;
  -o-transition: .5s;
}
.contact-page .contact-2 .box form ul li input[type="submit"]:hover {
   background-color: #343653;
}
.contact-page .contact-2 .box form ul li:last-child {
  text-align: right;
}
@media screen and (max-width: 1280px) {
  .contact-page .contact-2 .box {
    padding: 40px 20px;
  }
  .contact-page .contact-1 .content ul {
    margin-right: -40px;
  }
  .contact-page .contact-1 .content ul li {
    padding-right: 40px;
  }
  .contact-page .contact-1 .content ul li .text {
    padding-left: 20px;
    width: 76%;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .content ul li .img {
    width: 100%;
  }
  .contact-page .contact-1 .content ul li .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 700px) {
  .contact-page .contact-1 .header p {
    width: 100%;
    font-size: 14px;
  }
  .contact-page .contact-1 .content ul {
    margin-right: 0;
  }
  .contact-page .contact-1 .content ul li {
    width: 100%;
    padding-right: 0;
  }
  .contact-page .contact-1 .content ul li .text h4 {
    font-size: 20px;
  }
  .contact-page .contact-1 .content ul li .text p {
    font-size: 14px;
  }
  .contact-page .contact-2 .box {
    padding: 40px 10px;
  }
  .contact-page .contact-2 .box form ul {
    margin-right: 0;
  }
  .contact-page .contact-2 .box form ul li {
    width: 100%;
    padding-right: 0;
  }
}
.inner-page h2.title,.inner-page h1.title {
  font-size: 35px;
  color: #242424;
  line-height: 1.2;
  position: relative;
  z-index: 3;
}
.inner-page h2.title em,.inner-page h1.title em {
  color: #333654;
}
.product-page {
  padding: 50px 0;
}
.product-page .product-1 .top {
  padding-right: 0;
}
.product-page .product-1 .top .box {
  background-color: #ffffff;
  /*box-shadow: 0px 0px 37px 0px rgba(0, 0, 0, 0.1);*/
}
.product-page .product-1 .top .box h2.title {
  font-size:36px;
  font-weight: bold;
}
.product-page .product-1 .top .box p {
  font-size: 18px;
  line-height: 1.75;

  color: #1a1a1a;
  margin-top: 14px;
}
.product-page .product-1 .sidebarBox {
  margin-top: 60px;
}
.product-page .product-1 .sidebarBox .sideLeft {
  width: 25%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  display: none;
}
.product-page .product-1 .sidebarBox .sideLeft form {
  line-height: 60px;
  height: 60px;
  position: relative;
  background-color: #c70025;
  border-radius: 5px;
}
.product-page .product-1 .sidebarBox .sideLeft form input {
  height: 100%;
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 70px;
  font-weight: 500;
  font-size: 18px;
  color: white;
  border: none;
  background: transparent;
}
.product-page .product-1 .sidebarBox .sideLeft form input::-webkit-input-placeholder {
  color: white;
}
.product-page .product-1 .sidebarBox .sideLeft form input:-moz-placeholder {
  color: white;
}
.product-page .product-1 .sidebarBox .sideLeft form input::-moz-placeholder {
  color: white;
}
.product-page .product-1 .sidebarBox .sideLeft form input:-ms-input-placeholder {
  color: white;
}
.product-page .product-1 .sidebarBox .sideLeft form input::placeholder {
  color: white;
}
.product-page .product-1 .sidebarBox .sideLeft form input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  background: url("../images/pr-search.png") center center no-repeat;
  padding: 0;
  width: 60px;
}
.product-page .product-1 .sidebarBox .sideLeft .side {
  border-radius: 5px;
  padding: 45px 20px;
  border: 1px solid #e5e5e5;
  margin-top: 50px;
}
.product-page .product-1 .sidebarBox .sideLeft .side h5 {
  color: #1a1a1a;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.product-page .product-1 .sidebarBox .sideLeft .side .navList {
  margin-top: 40px;
}
.product-page .product-1 .sidebarBox .sideLeft .side .navList li {
  padding: 7px 0;
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.7);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.product-page .product-1 .sidebarBox .sideLeft .side .navList li:hover,
.product-page .product-1 .sidebarBox .sideLeft .side .navList li.active {
  color: #c70025;
}
.product-page .product-1 .sidebarBox .sideLeft .side .navList li a {
  display: inline-block;
  padding-left: 20px;
}
.product-page .product-1 .sidebarBox .sideLeft .side .navList li i {
  position: absolute;
  top: 8px;
  left: 0;
}
.product-page .product-1 .sidebarBox .sideLeft .side .navList li ul {
  display: none;
}
.product-page .product-1 .sidebarBox .sideLeft .side .navList li ul li {
  padding-left: 15px;
}
.product-page .product-1 .sidebarBox .sideLeft .side .navList li ul li a {
  padding-left: 0;
}
.product-page .product-1 .sidebarBox .sideRight {
  width: 100%;
  padding-left: 0%;
}
.product-page .product-1 .sidebarBox .sideRight .text {
  font-size: 18px;
  padding-top: 30px;
    padding-bottom: 30px;
  line-height: 32px;
  width: 100%;
}
.product-page .product-1 .sidebarBox .sideRight .productList {
  margin-top: 15px;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul {
  margin: -15px;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li {
  padding: 15px;
  position: relative;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .box {
  border: 1px solid #cecece;
  overflow: hidden;
  border-radius: 20px;
  background-color: #fff;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .box .img {
  text-align: center;
  padding-top: 20px;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .box .con {
  margin: 30px 13px 0;
  padding: 15px 0 20px;
  font-size: 18px;
  color: rgba(9, 9, 9, 0.87);
  position: relative;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .box .con h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 60px;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .box .con a.more em.movebj{
  background: #eee;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .box .con::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cecece;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .box .con::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #343653;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .box:hover .con::before {
  width: 100%;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .box:hover .con::after {
  opacity: 0;
}
.news-tage ul{
  margin: -10px;
}
.news-tage ul.cate3{
  margin-top: 20px;
  border-top: 1px solid #aaa;
  padding-top: 20px;
}
.news-tage ul li{
  width: auto!important;
  padding: 10px;
}
.news-tage ul li .mml-text {
  background: #f4f4f4;
  padding: 15px;
  -webkit-transition: background 0.3s, border 0.3s, border-radius 0.3s, -webkit-transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.3s;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, -webkit-transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.3s;
  -moz-transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -moz-transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), -moz-transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.3s;
  border-radius: 10px;
}
.news-tage ul li .mml-text i {
  min-height: 60px;
}
.news-tage ul li .mml-text img {
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.news-tage ul li .mml-text p {
  -webkit-transition-property: color,background;
  -moz-transition-property: color,background;
  transition-property: color,background;
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  transition-timing-function: ease;
  margin-top: 0!important;
}
.news-tage ul li:hover .mml-text {
  background-color: #262626;
  border-radius: 6px 6px 6px 6px;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.news-tage ul li:hover .mml-text img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.news-tage ul li:hover .mml-text p {
  color: #FFFFFF!important;
}
.news-tage ul li.active .mml-text {
  background-color: var(--color);
}
.news-tage ul li.active .mml-text img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.news-tage ul li.active .mml-text p {
  color: #FFFFFF!important;
}
.product-page .sideRight .productList .product_cont{
  -webkit-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: rotateY(90deg) translateY(-50%);
    -webkit-transform: rotateY(90deg) translateY(-50%);
    -moz-transform: rotateY(90deg) translateY(-50%);
    -ms-transform: rotateY(90deg) translateY(-50%);
    -o-transform: rotateY(90deg) translateY(-50%);
    -webkit-transform-origin: left;
    transform-origin: left;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
    -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
    -moz-transition: -moz-transform 0.5s, opacity 0.3s;
    position: absolute;
    width: calc(100% + 16px);
    height: calc(100% - 30px);
    top: 50%;
    left:calc(100% - 15px);
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 9;
    border: 1px solid lightgrey;
    border-radius: 0;
    padding: 15px;
}
.product-page .product-1{
  padding-bottom: 100px;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li:hover .product_cont{
  opacity: 1;
  transform: rotateY(0) translateY(-50%);
  -webkit-transform: rotateY(0) translateY(-50%);
  -moz-transform: rotateY(0) translateY(-50%);
  -ms-transform: rotateY(0) translateY(-50%);
  -o-transform: rotateY(0) translateY(-50%);
}
.product-page .product-1 .productList ul li:nth-child(3n) .product_cont {
    left: inherit;
    right: calc(100% - 15px);
    -webkit-transform-origin: right;
    transform-origin: right;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul.smallImg{
  overflow: hidden;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul.smallImg li{
  padding: 10px;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul.smallImg li a{
  display: block;
  overflow: hidden;
  border: 1px solid #e6e6e6;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .product_cont .tip_title{
  font-size: 20px;
  padding: 10px;
  background: #343653;
  color: #fff;
  display: inline-block;
  margin-left: 16px;
  margin-left: -10px;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .product_cont .des .stitle{
  font-size: 20px;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .product_cont .des{
  font-size: 18px;
  margin: 10px 0 25px;
  height:370px;
  overflow-y: auto;
  line-height: 2;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .product_cont .des::-webkit-scrollbar-thumb {
    opacity: 0;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .product_cont .des .con{
  opacity: 1;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .product_cont .des .con ul{
  margin: 0;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .product_cont .des .con ul li{
  padding: 5px 0;
}
.product-page .product-1 .sidebarBox .sideRight .productList ul li .product_cont .more em.movebj{
  background: #eee;
}
@media screen and (max-width: 1400px) {
  .product-page .product-1 .sidebarBox .sideRight .productList ul {
    margin: -10px;
  }
  .product-page .product-1 .sidebarBox .sideRight .productList ul li {
    padding: 10px;
  }
}
@media screen and (max-width: 1366px) {
  .inner-page h2.title,.inner-page h1.title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1250px) {
  .product-page .product-1 .sidebarBox .sideLeft {
    display: none;
  }
  .product-page .product-1 .sidebarBox .sideRight {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .product-page .product-1 .top {
    display: none!important;
  }
  .product-page .product-1 .top .box {
    padding: 30px 20px;
  }
  .product-page .product-1 .sidebarBox .sideRight .text {
    width: 100%;
  }
  .product-page .product-1 .sidebarBox .sideRight .productList ul li {
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .product-page .product-1 .top .box {
    padding: 30px 10px;
  }
  .product-page .product-1 .top .box p {
    font-size: 14px;
  }
  .product-page .product-1 .sidebarBox .sideRight .text {
    font-size: 14px;
    line-height: 2;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
  }
  .product-page .product-1 .sidebarBox .sideRight .productList ul li {
    width: 100%;
  }
  .product-page .product-1 .sidebarBox .sideRight .productList ul li .box .con {
    font-size: 14px;
  }
}
@media screen and (max-width:1600px){
  #index-body .product .top .left ul{
    height: 450px;
  }
}
@media screen and (max-width:1400px){
  #index-body .product .top .left ul{
    height: 400px;
  }
  .product-page .sideRight .productList .product_cont{
    width: calc(100%);
    height: calc(100% - 20px);
  }
}
@media screen and (max-width:1200px){
  #index-body .product .top .left ul{
    height: 450px;
  }
}
@media screen and (max-width:1000px){
  #index-body .product .top .left ul{
    height: auto;
  }
  .product-page .product-1 .sidebarBox .sideRight .productList ul.smallImg{
    height: 150px;
  }
  .product-page .sideRight .productList .product_cont{
    position: unset;
    transform: rotate(0deg) translateY(0);
    opacity: 1;
  }
  .product-page .product-1 .sidebarBox .sideRight .productList ul li:hover .product_cont{
    opacity: 1;
    transform: rotate(0deg) translateY(0);
  }
  .product-page .sideRight .productList .product_cont{
    height: 500px;
  }
  .product-page .product-1 .sidebarBox .sideRight .productList ul li .box{
    border-bottom: transparent;
    border-radius: 7px 7px 0 0;
  }
  .product-page .sideRight .productList .product_cont{
    border-top: transparent;
    border-radius: 0 0 7px 7px; 
    align-items: flex-start;
  }
}
@media screen and (max-width:700px){
  .product-page .sideRight .productList .product_cont,
  .product-page .product-1 .sidebarBox .sideRight .productList ul li .product_cont .des,
  .product-page .product-1 .sidebarBox .sideRight .productList ul.smallImg{
    height: auto;
  }
}
.service-page  h2.title i {
  position: absolute;
  z-index: -1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color);
}
.service-page .service-1 {
  padding: 0 0 48px;
}
.service-page .service-1 h2.title i {
  left: -6px;
  top: 0;
}
.service-page .service-1 .content {
  margin-top: 22px;
}
.service-page .service-1 .content ul {
  margin-right: -12px;
}
.service-page .service-1 .content ul li {
  padding-right: 42px;
}
.service-page .service-1 .content ul li .img img{
  width: 100%;
}
.service-page .service-1 .content ul li .text {
  padding: 18px 11px 0 0;
  color: #383838;
}
.service-page .service-1 .content ul li .text h3 {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.2;
}
.service-page .service-1 .content ul li .text p {
  font-size: 18px;
  line-height: 1.7;
  margin-top: 10px;
}
@media screen and (max-width: 700px) {
  .service-page .service-1 .content ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .service-page .service-1 .content ul li .img img {
    width: 100%;
  }
  .service-page .service-1 .content ul li .text h3 {
    font-size: 22px;
  }
  .service-page .service-1 .content ul li .text p {
    font-size: 18px;
  }
}
.downloadblock {
  padding: 80px 0;
}
.downloadblock .ui.container {
  max-width: 1200px;
}
.downloadblock .ui.container h3 {
  margin-bottom: 20px;
}
.downloadblock .ui.container p {
  margin-bottom: 40px;
  line-height: 2;
  max-width: 600px;
}
.downloadblock .ui.container ul.downlist {
  width: 100%;
}
.downloadblock .ui.container ul.downlist li {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  border: 1px solid #aaa;
  margin-top: -1px;
}
.downloadblock .ui.container ul.downlist li.thead span {
  text-align: center;
  font-size: 24px;
  padding: 15px 0;
  border-right: 1px solid #aaa;
  font-weight: bold;
}
.downloadblock .ui.container ul.downlist li.thead span:last-child {
  border-right: none;
}
.downloadblock .ui.container ul.downlist li.item span {
  font-size: 18px;
  color: #323232;
  padding: 15px 0;
  border-right: 1px solid #aaa;
}
.downloadblock .ui.container ul.downlist li.item span:last-child {
  border-right: none;
}
.downloadblock .ui.container ul.downlist li.item span a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.downloadblock .ui.container ul.downlist li.item span a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  text-decoration: underline;
}
.service-page .init-4 {
  background: #0e0e0e;
  padding: 110px 0 105px;
  text-align: center;
}
.service-page .init-4 h3 {
  color: #fff;
  display:block;
  font-size: 60px;
  position: relative;
}
.service-page .init-4 span.tag{
  color: #fff;
}
.service-page .init-4 span.tag:before{
  background: #fff;
}
.service-page .init-4 a.more em{
 background: #fff;
}
.service-page .init-4 a.more span{
  color: #232323;
}
.service-page .init-4 .accessBox .swiper-container{
  padding: 96px 0 80px;
}
.service-page .init-4 .accessBox .swiper-slide span,
.service-page .init-4 .accessBox .swiper-slide h4,
.service-page .init-4 .accessBox .swiper-slide p {
  transition: .5s ease;
}
.service-page .init-4 .accessBox .swiper-slide:hover span,
.service-page .init-4 .accessBox .swiper-slide:hover h4,
.service-page .init-4 .accessBox .swiper-slide:hover p {
  transform: translateY(-20px);
}
.service-page .init-4 .accessBox .swiper-slide{
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.service-page .init-4 .accessBox .swiper-slide:after{
  position: absolute;
  content: "";
  width: 27px;
  height: 23px;
  right: -70px;
  top: 3rem;
  background: url(../images/s-right.png) no-repeat;
}
.service-page .init-4 .accessBox .swiper-slide span {
  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;
  height: 72px;
}
.service-page .init-4 .accessBox .swiper-slide span img {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
.service-page .init-4 .accessBox .swiper-slide h4 {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  margin: 35px 0 10px;
  font-weight: bold;
}
.service-page .init-4 .accessBox .swiper-slide p {
  color: #fff;
  line-height: 2;
  font-size: 18px;
}
.service-page .init-4 .more:hover {
  -webkit-transform: translateX(1.5rem);
  -moz-transform: translateX(1.5rem);
  -ms-transform: translateX(1.5rem);
  transform: translateX(1.5rem);
}
@media screen and (max-width: 1000px) {
   .service-page .init-4 .accessBox .swiper-slide h4 {
    font-size: 20px;
  }
}
.prodet-page .prodet-1 {
  padding-bottom: 80px;
}
.prodet-page .prodet-1 .box .left{
  width: 50%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.prodet-page .prodet-1 .box .left .big{
  height: 100%;
}
.prodet-page .prodet-1 .box .left .big ul li{
  height: 100%;
}
.prodet-page .prodet-1 .box .left .big ul li a {
  border: 1px solid #e6e6e6;
  background: white;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.prodet-page .prodet-1 .box .left .big-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.prodet-page .prodet-1 .box .left .big {
  width: 85%;
}
.prodet-page .prodet-1 .box .left .big .slick-track{
  display: block;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #fff;
  background-color: var(--color);
}
.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-prev {
  left: 20px;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-next {
  right: 40px;
}
.prodet-page .prodet-1 .box .left .small {
  width: 15%;
}
.prodet-page .prodet-1 .box .left .small .slick-track{
  display: block;
}
.prodet-page .prodet-1 .box .left .small ul {
  margin: -5px;
  height: 500px;
}
.prodet-page .prodet-1 .box .left .small ul .slick-list{
  height: 100%;
}
.prodet-page .prodet-1 .box .left .small ul li {
  padding: 5px;
}
.prodet-page .prodet-1 .box .right {
  padding-top: 5px;
}
.prodet-page .prodet-1 .box .right .content .cat_name {
  position: relative;
  line-height: 1;
  font-size: 26px;
  font-weight: bold;
  padding-block-end: 8px
}
.prodet-page .prodet-1 .box .right .content h1 {
  font-weight: bold;
  font-size: 36px
}
.prodet-page .prodet-1 .box .right .content .st1 {
  font-size: 24px;
  padding-top: 25px;
  border-top: 1px solid #2e2521;
  width: 100%;
  margin-top: 30px;
  font-weight: bold
}
.prodet-page .prodet-1 .box .right .content .st2 {
  font-size: 24px;
  width: 100%;
  margin-top: 30px;
  font-weight: bold;
}
.prodet-page .prodet-1 .box .right .content .text {
  line-height: 2;
  padding-right: 20px;
  color: #545454;
  margin-top: 15px;
  margin-bottom: 20px;
  overflow: auto;
}
.prodet-page .prodet-1 .box .right .content a.msg {
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  transition: 0.5s ease;
  text-align: center;
  font-size: 12px;
  bottom: 15%;
  background: var(--color);
}
.prodet-page .prodet-1 .box .right .content .social-links h4,
.prodet-page .prodet-1 .box .right .content .social-links ul {
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .prodet-1 .box2 .cont {
  margin-top: 40px;
  overflow-x: auto
}
.prodet-page .prodet-1 .box2 .cont::-webkit-scrollbar-thumb {
  height: 5px
}
@media screen and (max-width: 1440px) {
  .prodet-page .prodet-1 .box2 .cont table {
    width: 1440px !important;
  }
  .inner-page{
    margin-top: -20px;
  }
}
@media screen and (max-width: 1000px) {
  .prodet-page .prodet-1 .box .left {
    width: 100%;
    position: static;
  }
  .prodet-page .prodet-1 .box .right {
    width: 100%;
    padding-left: 0;
  }
  .inner-page{
    margin-top: 0;
    border-radius: 30px 30px 0 0;
  }
}
.prodet-page .prodet-2 {
  background-color: #fcf6ec;
  padding: 100px 0 85px;
}
.prodet-page .prodet-2 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  flex-wrap: wrap;
}
.prodet-page .prodet-2 ul {
  margin-right: -39px;
  margin-top: 57px;
}
.prodet-page .prodet-2 ul li {
  padding-right: 39px;
  text-align: center;
}
.prodet-page .prodet-2 ul li .box>img {
  width: 100%;
}
.prodet-page .prodet-2 ul li .box .t1 {
  font-size: 22px;
  display: block;
  margin: 20px 0 15px;
  line-height: 1.6;
}
.prodet-page .prodet-2 ul li .box .t1:hover {
  color:  var(--color)
}
.prodet-page .prodet-2 ul li .box .cont {
  color: #747474;
  font-size: 18px;
  line-height: 32px;
}
.prodet-page .prodet-3 {
  padding: 70px 0;
}
.prodet-page .prodet-3 .smt {
  padding-bottom: 8px;
}
.prodet-page .prodet-3 form {
  margin-top: 40px;
}
.prodet-page .prodet-3 form button {
  border: 0;
  width: 280px
}
.prodet-page .prodet-3 form button:hover{
  background-color: var(--color);
  color: #fff;
}
.prodet-page .prodet-3 form ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.prodet-page .prodet-3 form ul li {
  border: solid 1px #7d7d7d;
  height: 59px;
  font-size: 18px;
  margin-bottom: 20px;
}
.prodet-page .prodet-3 form ul li input {
  width: 100%;
  height: 100%;
  padding: 0 22px;
  border: none;
}
.prodet-page .prodet-3 form ul li textarea {
  width: 100%;
  height: 100%;
  padding: 22px;
  border: none;
}
.prodet-page .prodet-3 form ul .submit {
  width: 100%;
  border: none;
  margin-top: 16px;
}
.prodet-page .prodet-3 form ul .i1 {
  width: 48%;
}
.prodet-page .prodet-3 form ul .i2 {
  width: 100%;
}
.prodet-page .prodet-3 form ul .i3 {
  width: 100%;
  height: 262px;
}
.prodet-page .prodet-4 {
  position: relative;
  background-color: #fcf6ec;
}
.prodet-page .prodet-4 .img {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.prodet-page .prodet-4 .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.prodet-page .prodet-4 .right {
  width: 50%;
  margin: 0 0 0 auto;
  padding: 68px 0 68px 68px;
}
.prodet-page .prodet-4 .right .cont {
  height: 220px;
  overflow-y: auto;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 60px;
  margin-top: 29px;
  padding-right: 5px;
}
.prodet-page .prodet-5 {
  padding: 60px 0 73px;
}
.prodet-page .prodet-5 ul {
  margin-right: -38px;
  margin-top: 40px;
}
.prodet-page .prodet-5 ul li {
  padding: 20px;
  padding-right: 38px;
}
.prodet-page .prodet-5 ul li .box {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.13);
  border-radius: 14px;
  padding: 39px 50px 70px 28px;
  display: block;
}
.prodet-page .prodet-5 ul li .box .time {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 28px;
}
.prodet-page .prodet-5 ul li .box .t1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #2e2521;
  height: 4em; 
  transition: .5s;
}
.prodet-page .prodet-5 ul li .box:hover .t1 {
  color:  var(--color);
}
.prodet-page .prodet-5 ul li .box .cont {
  display: -webkit-box;
  font-size: 18px;
  color: #767676;
  line-height: 2;
  margin-top: 15px;
}
.sustainable-page .sustainable-7 {
  background-color: #fdf6ec;
}
.sustainable-page .sustainable-7 li {
  background-color: white;
  padding: 3%;
}
.sustainable-page .sustainable-7 a.moreBu {
  height: 2.77777778em;
  min-width: 11.11111111em;
}
.sustainable-page .sustainable-7 a.moreBu:hover{
  background: #000;
}
.customized-page .customized-wrap3 {
  padding-top: 5.364583333vw;
  padding-bottom: 60px;
}
.customized-page .customized-wrap3 .intro {
  max-width: 1019px;
  color: #2e2521;
  margin: 38px auto 0;
  line-height: 1.8;
}
@media screen and (max-width: 1680px) {
  .prodet-page .prodet-5 ul li .box .t1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1440px) {
  .prodet-page .prodet-5 ul li .box {
    padding-right: 30px;
  }
  .prodet-page .prodet-5 ul {
    margin-right: -25px;
  }
  .prodet-page .prodet-5 ul li {
    padding-right: 25px;
  }
  .prodet-page .prodet-5 ul li .box .t1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1280px) {
  .prodet-page .prodet-4 .right {
    padding: 30px 0 30px 30px;
  }
  .prodet-page .prodet-5 ul li .box {
    padding: 39px 20px 50px 18px;
  }
  .prodet-page .prodet-5 ul li .box .t1 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .prodet-page .prodet-2 ul li .box .t1 {
    font-size: 22px;
    padding: 15px 0 10px;
  }
  .prodet-page .prodet-4 .img {
    position: relative;
    width: 100%;
  }
  .prodet-page .prodet-4 .right {
    width: 100%;
    padding: 30px 0;
  }
  .customized-page .customized-wrap3 {
    padding-bottom: 6vw;
  }
}
@media screen and (max-width: 700px) {
  .prodet-page .prodet-2 .top .tip{
    width: 100%;
    padding-bottom: 20px;
  }
  .prodet-page .prodet-2 ul li .box .t1 {
    font-size: 20px;
    min-height: 3em;
  }
  .prodet-page .prodet-3 form ul .i1 {
    width: 100%;
  }
  .prodet-page .prodet-5 ul {
    margin-right: 0;
  }
  .prodet-page .prodet-5 ul li {
    padding: 15px;
  }
  .prodet-page .prodet-5{
    padding: 40px 0 ;
  }
  .prodet-page{
    padding-top: 40px;
  }
}
@media screen and (max-width: 500px){
  .prodet-page .prodet-1 .box .left .big {
    width: 85%;
    padding: 0;
  }
  .prodet-page .prodet-1 .box .left .small {
    width: 15%;
    margin-top: 10px;
  }
  .prodet-page .prodet-1 .box .left .small ul{
    height: 300px;
  }
}
@media screen and (max-width: 700px){
  .prodet-page .prodet-1 .box .right .content .cat_name{
    font-size: 20px !important;
  }
  .prodet-page .prodet-1 .box .right .content h1 {
    font-size: 26px !important;
  }
  .inner-page{
    margin-top: 0;
    border-radius: 20px 20px 0 0;
  }
}
#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from form {
  margin-top: 40px;
}
#pups_from i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from i.close::after,
#pups_from i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from i.close:hover {
  background: var(--color);
}
#pups_from i.close:hover::before,
#pups_from i.close:hover::after {
  background: white;
}
#pups_from ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from ul li input,
#pups_from ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
}
#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;
}
.seoPublic .Auxil-through a{
  font-size: 18px;
  height: auto;
  line-height: 1.6;
  padding: 6px 10px;
}