@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.eot');
  src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.woff') format('woff'), url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/RanyBold.eot');
  src: url('../fonts/RanyBold.eot?#iefix') format('embedded-opentype'), url('../fonts/RanyBold.woff2') format('woff2'), url('../fonts/RanyBold.woff') format('woff'), url('../fonts/RanyBold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/RanyMedium.eot');
  src: url('../fonts/RanyMedium.eot?#iefix') format('embedded-opentype'), url('../fonts/RanyMedium.woff2') format('woff2'), url('../fonts/RanyMedium.woff') format('woff'), url('../fonts/RanyMedium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
body {
  --color: #d70000;
  font-family: 'Poppins';
  font-weight: 400;
  max-width: 1920px;
  margin: 0 auto;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.container {
  padding: 0 15px;
  position: relative;
  width: 1510px;
  margin: 0 auto;
}
.more {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  background: #000;
  color: #fff;
  border-radius: 45px;
  padding: 17px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: capitalize;
}
.more::before {
  content: '';
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 0%;
  top: 0;
  left: 0;
  background-color: var(--color);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.more:hover::before,
.more:focus::before {
  width: 160%;
}
#header {
  z-index: 20;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav {
  background: #fff;
  position: relative;
  z-index: 1;
}
#header .nav .menu-box {
  width: -webkit-fill-available;
}
#header .nav .menu-box ul.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#header .nav .menu-box ul.menu > li {
  font-size: 18px;
  line-height: 1;
  margin-right: 50px;
  font-weight: 500;
  float: left;
  position: relative;
  text-transform: capitalize;
}
#header .nav .menu-box ul.menu > li > a {
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  line-height: 1;
}
#header .nav .menu-box ul.menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .menu-box ul.menu > li > a i {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--color);
}
#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:nth-child(4) {
  margin-left: 40%;
}
#header .nav .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .right {
  width: 90px;
  background-color: #edeeef;
}
#header .nav .h-search {
  background-color: #cdcdcd;
  padding: 8px 0;
  text-align: center;
  cursor: pointer;
}
#header .nav .yuy span {
  text-transform: uppercase;
  padding: 10px 0 7px;
}
#header .nav .yuy span a.active {
  color: var(--color);
}
#header .nav .yuy ul {
  left: initial;
  right: 0;
}
#header .nav::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 730px;
  height: 100%;
  background-color: #edeeef;
  border-radius: 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header.active .nav::after {
  width: 100%;
}
.i-title {
  font-size: 40px;
  line-height: 1.3;
}
.i-title em {
  color: var(--color);
}
.title,
.i-title {
  font-weight: bold;
}
.text-color {
  color: var(--color);
}
#banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 96px;
}
#banner ul {
  margin: 0 auto;
}
#banner ul li {
  position: relative;
}
#banner ul li > img {
  width: 100%;
}
#banner ul li .text .top .left {
  border-left: 1px solid #000;
}
#banner ul li .text .top .left .con {
  line-height: 1.4;
  max-width: 394px;
}
#banner ul li .text .top .left .title {
  font-weight: 500;
  line-height: 1;
}
#banner ul li .text .top .right {
  width: 24.8909%;
  font-weight: 300;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
#banner ul li .text .top .right .box {
  border-top: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
}
#banner ul li .text .top .right .box p {
  padding-left: 21px;
  line-height: 1.4;
  position: relative;
}
#banner ul li .text .top .right .box p::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color);
  top: 6px;
  left: 0;
}
#banner ul li .text .top .right .link {
  font-weight: bold;
  display: inline-block;
}
#banner ul li .text .bottom .text {
  left: 0;
  bottom: 0;
  background-color: #000000;
  border-radius: 10px;
  width: 40.9341%;
  color: #fff;
}
#banner ul li .text .bottom .text .con {
  line-height: 1.5;
  width: 65%;
}
#banner ul li .text .bottom .text .link {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: var(--color);
}
#banner ul li .text .bottom .text .link img {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul li .text .bottom .text .link:hover img {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
#banner ul .swiper-slide-active .text span,
#banner ul .swiper-slide-active .text .title,
#banner ul .swiper-slide-active .text .con,
#banner ul .swiper-slide-active .text .btn,
#banner ul .swiper-slide-active .text .right {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#banner ul .swiper-slide-active .text span {
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  transition-delay: .5s;
}
#banner ul .swiper-slide-active .text .title {
  -webkit-transition-delay: .8s;
  -moz-transition-delay: .8s;
  transition-delay: .8s;
}
#banner ul .swiper-slide-active .text .con {
  -webkit-transition-delay: 1.1s;
  -moz-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
#banner ul .swiper-slide-active .text .btn {
  -webkit-transition-delay: 1.4s;
  -moz-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
#banner ul .swiper-slide-active .text .right {
  -webkit-transition-delay: 1.7s;
  -moz-transition-delay: 1.7s;
  transition-delay: 1.7s;
}
#banner .page {
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding-bottom: 5.15625%;
}
#banner .page .arrow a {
  width: 58px;
  height: 58px;
  color: #fff;
  background: rgba(251, 103, 18, 0.29);
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .page .arrow a:hover {
  background: var(--color);
}
#banner .page .arrow a.next {
  margin-left: 4px;
}
#banner .page .swiper-pagination {
  position: initial;
}
#banner .page .swiper-pagination span {
  width: 43px;
  height: 3px;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  margin-right: 5px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
#banner .page .swiper-pagination span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 43px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .page .swiper-pagination span .qh {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
}
#banner .page .swiper-pagination span.swiper-pagination-bullet-active {
  width: 141px;
}
#banner .page .swiper-pagination span.swiper-pagination-bullet-active .qh {
  -webkit-animation: progress 8s linear infinite;
  -moz-animation: progress 8s linear infinite;
  animation: progress 8s linear infinite;
}
#banner .page .swiper-pagination span.swiper-pagination-bullet-active::before {
  background: #fff;
}
.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;
}
.slickBtn div {
  width: 2.55em;
  height: 2.55em;
  background-color: #000;
}
.slickBtn div:hover {
  background: var(--color);
}
#index-body .i-product {
  padding: 8.34% 0 8.28125%;
}
#index-body .i-product .content ul .slick-list {
  padding: 0 92px !important;
}
#index-body .i-product .content ul li {
  padding-top: 31px;
}
#index-body .i-product .content ul li .img-box {
  z-index: 1;
  border-radius: 30px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .content ul li .img-box .title {
  font-size: 20px;
  color: #fff;
  top: 16px;
  left: 0;
  width: 100%;
  padding: 0 29px;
  line-height: 1.5;
  z-index: 2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .content ul li .img-box .link {
  z-index: 2;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .content ul li .img-box .link span {
  margin-right: 22px;
}
#index-body .i-product .content ul li .img-box .link .arrow {
  background-color: #fff;
  border-top-left-radius: 50%;
  padding: 12px 0 0 12px;
  position: relative;
  bottom: 0;
  right: 0;
  z-index: 1;
}
#index-body .i-product .content ul li .img-box .link .arrow .circle {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background-color: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .content ul li .img-box .link .arrow .circle img {
  width: auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .content ul li .img-box .link .arrow::before,
#index-body .i-product .content ul li .img-box .link .arrow::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 20px;
}
#index-body .i-product .content ul li .img-box .link .arrow::before {
  top: -20px;
  right: 0;
  background-image: -webkit-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #fff 100%, #fff);
  background-image: -moz-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #fff 100%, #fff);
  background-image: radial-gradient(circle farthest-side at 0% 0%, transparent 0 100%, #fff 100%, #fff);
}
#index-body .i-product .content ul li .img-box .link .arrow::after {
  background-image: -webkit-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #fff);
  background-image: -moz-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #fff);
  background-image: radial-gradient(circle farthest-side at 0% 0%, transparent 0 100%, #fff);
  bottom: 0;
  left: -20px;
}
#index-body .i-product .content ul li .img-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.57);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-product .content ul li .img-box:hover {
  -webkit-transform: translateY(-31px);
  -moz-transform: translateY(-31px);
  -ms-transform: translateY(-31px);
  transform: translateY(-31px);
}
#index-body .i-product .content ul li .img-box:hover::after{
  opacity: 1;
}
#index-body .i-product .content ul li .img-box:hover .title {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: var(--color);
}
#index-body .i-product .content ul li .img-box:hover .link {
  color: var(--color);
}
#index-body .i-product .content ul li .img-box:hover .link .arrow .circle {
  background: var(--color);
}
#index-body .i-product .content ul li .img-box:hover .link .arrow .circle img {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#index-body .i-about {
  background: url(../images/abg.png) no-repeat bottom left, url(../images/abg1.png) no-repeat bottom left;
  background-size: auto,auto;
  padding-bottom: 4.6875%;
}
#index-body .i-about .left {
  width: 53.852%;
  z-index: 1;
}
#index-body .i-about .left .con h1 {
  display: inline;
}
#index-body .i-about .left .play {
  left: 0;
  bottom: 40px;
  width: 134px;
  height: 134px;
  border-radius: 50%;
  background: #000;
  padding: 9px;
}
#index-body .i-about .left .play svg {
  font-size: 27px;
  -webkit-animation: xz 10s linear infinite;
  -moz-animation: xz 10s linear infinite;
  animation: xz 10s linear infinite;
}
#index-body .i-about .left .play svg text {
  fill: #fff;
}
#index-body .i-about .left .play img {
  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%);
}
#index-body .i-about .left::before {
  content: '';
  position: absolute;
  top: -33px;
  left: 0;
  z-index: -1;
  width: 231px;
  height: 228px;
  background: url(../images/a-icon.png) no-repeat;
}
#index-body .i-about .right {
  width: 46.148%;
}
#index-body .i-about .right .bottom .icon {
  width: 28.574%;
}
#index-body .i-about .right .bottom .con {
  width: 71.426%;
}
#index-body .i-service {
  background: url(../images/sbg.jpg) no-repeat center;
  background-size: cover;
  padding: 74px 0 95px 50px;
}
#index-body .i-service .box .i-title {
  color: #fff;
  max-width: 420px;
}
#index-body .i-service .box .content ul .slick-list {
  padding-right: 234px !important;
}
#index-body .i-service .box .content ul .slick-slide {
  height: auto;
}
#index-body .i-service .box .content ul .slick-slide > div {
  height: 100%;
}
#index-body .i-service .box .content ul li {
  height: 100%;
}
#index-body .i-service .box .content ul li .ig {
  background-image: url(../images/s-bg1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 55px 47px 50px 37px;
  height: 100%;
  position: relative;
  z-index: 1;
  color: #fff;
}
#index-body .i-service .box .content ul li .ig .con {
  min-height: 115px;
}
#index-body .i-service .box .content ul li .ig .link {
  display: inline-block;
}
#index-body .i-service .box .content ul li .ig .link img {
  -webkit-filter: grayscale(100%) brightness(300);
  filter: grayscale(100%) brightness(300);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -moz-transition: transform .5s, -moz-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s, -moz-transform .5s;
}
#index-body .i-service .box .content ul li .ig:hover {
  background-image: url(../images/s-bg2.png);
  color: #000;
}
#index-body .i-service .box .content ul li .ig:hover i img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#index-body .i-service .box .content ul li .ig:hover .link img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
#index-body .i-custom {
  padding: 8.28125% 0 5.625%;
}
#index-body .i-custom .header .i-title {
  width: 40%;
}
#index-body .i-custom .header .con {
  width: 54%;
}
#index-body .i-custom .content ul li .img span {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
  z-index: 1;
  padding: 19px 16px 6px;
  border-radius: 20px 20px 0 0;
}
#index-body .i-custom .content ul li .img span::before,
#index-body .i-custom .content ul li .img span::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 25px;
  height: 25px;
  bottom: -1px;
}
#index-body .i-custom .content ul li .img span::before {
  left: -25px;
  background-image: -webkit-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #fff);
  background-image: -moz-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #fff);
  background-image: radial-gradient(circle farthest-side at 0% 0%, transparent 0 100%, #fff);
}
#index-body .i-custom .content ul li .img span::after {
  right: -25px;
  background-image: -webkit-radial-gradient(100% 0%, circle farthest-side, transparent 0 100%, #fff);
  background-image: -moz-radial-gradient(100% 0%, circle farthest-side, transparent 0 100%, #fff);
  background-image: radial-gradient(circle farthest-side at 100% 0%, transparent 0 100%, #fff);
}
#index-body .i-custom .content .slickBtn div.prev {
  right: 105%;
}
#index-body .i-custom .content .slickBtn div.next {
  left: 104%;
}
#index-body .i-custom .btn .more {
  font-size: 22px;
  padding: 34px 182px 34px 183px;
}
#index-body .i-case {
  background: url(../images/cbg.png) no-repeat center top;
  background-size: 100% 100%;
  padding: 5.0521% 0 48px;
}
#index-body .i-case .content ul {
  margin: -6.5px;
}
#index-body .i-case .content ul li {
  padding: 6.5px;
}
#index-body .i-case .content ul li .img span {
  position: absolute;
  bottom: 0;
  left: 51px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color);
  padding: 16px 21px 7px 14px;
  line-height: 1.5;
  background: #fff;
  border-radius: 20px 20px 0 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-case .content ul li .img span::before,
#index-body .i-case .content ul li .img span::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 25px;
  height: 25px;
  bottom: -1px;
}
#index-body .i-case .content ul li .img span::before {
  left: -25px;
  background-image: -webkit-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #fff);
  background-image: -moz-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #fff);
  background-image: radial-gradient(circle farthest-side at 0% 0%, transparent 0 100%, #fff);
}
#index-body .i-case .content ul li .img span::after {
  right: -25px;
  background-image: -webkit-radial-gradient(100% 0%, circle farthest-side, transparent 0 100%, #fff);
  background-image: -moz-radial-gradient(100% 0%, circle farthest-side, transparent 0 100%, #fff);
  background-image: radial-gradient(circle farthest-side at 100% 0%, transparent 0 100%, #fff);
}
#index-body .i-case .content ul li .text span {
  font-weight: 500;
  line-height: 1.5;
}
#index-body .i-case .content ul li .text .link {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: var(--color);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-case .content ul li .text .link img {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-case .content ul li .text .link:hover img {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
#index-body .i-case .content ul li .ig:hover {
  background: #fff;
  -webkit-box-shadow: 0 2px 3px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 3px 6px rgba(0, 0, 0, 0.05);
}
#index-body .i-case .content ul li .ig:hover .img span {
  opacity: 1;
}
#index-body .i-case .content ul li .ig:hover .text span {
  opacity: 0;
}
#index-body .i-case .content ul li .ig:hover .text .con {
  -webkit-transform: translateY(-26px);
  -moz-transform: translateY(-26px);
  -ms-transform: translateY(-26px);
  transform: translateY(-26px);
}
#index-body .i-case .content ul li .ig:hover .text .link {
  opacity: 1;
}
#index-body .i-news {
  padding: 3.8021% 0 6.2%;
}
#index-body .i-news .container {
  width: 1398px;
}
#index-body .i-news .content ul .slick-slide {
  height: 100%;
}
#index-body .i-news .content ul .slick-slide > div {
  height: 100%;
}
#index-body .i-news .content ul li {
  height: 100%;
}
#index-body .i-news .content ul li .ig {
  background-color: #edeeef;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}
#index-body .i-news .content ul li .ig time span {
  font-size: 16px;
  line-height: 1;
  padding: 12px 20px 10px;
  background-color: #000000;
  color: #fff;
  margin-left: 10px;
}
#index-body .i-news .content ul li .ig .text .tit {
  line-height: 1.8;
  font-weight: 500;
}
#index-body .i-news .content ul li .ig .text em {
  display: block;
  height: 1px;
  background-color: #9f9f9f;
}
#index-body .i-news .content ul li .ig .text .con {
  line-height: 1.6;
  min-height: 96px;
}
#index-body .i-news .content ul li .ig .text .link {
  display: inline-block;
  text-decoration: underline;
}
#index-body .i-news .content ul li .ig .bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-news .content ul li .ig .bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.57);
}
#index-body .i-news .content ul li .ig:hover .bg {
  opacity: 1;
}
#index-body .i-news .content ul li .ig:hover time img {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
#index-body .i-news .content ul li .ig:hover time span {
  background: var(--color);
}
#index-body .i-news .content ul li .ig:hover .text {
  color: #fff;
}
#index-body .i-news .content ul li .ig:hover .text i img {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
#index-body .i-news .content ul li .ig:hover .text .tit {
  color: #fff;
}
#index-body .i-news .content ul li .ig:hover .text .line {
  background: #fff;
}
#index-body .i-news .content .slickBtn div.prev {
  right: initial;
  left: 0;
}
#index-body .i-news .content .slickBtn div.next {
  left: initial;
  right: 0;
}
#footer .box {
  background: url(../images/fbg.png) no-repeat center;
  background-size: 100% 100%;
}
#footer .box .container1 {
  width: 1550px;
  margin: 0 auto;
  padding: 0 15px;
}
#footer .box .f-header .right {
  width: 72.566%;
}
#footer .box .f-header .right .title {
  width: 27%;
  line-height: 1.2;
}
#footer .box .f-header .right .form {
  width: 73.95%;
}
#footer .box .f-header .right .form ul {
  margin: -7px -8px;
}
#footer .box .f-header .right .form ul li {
  padding: 7px 8px;
}
#footer .box .f-header .right .form ul li input {
  width: 100%;
  height: 60px;
  background-color: #d6d6d6;
  border-radius: 30px;
  font-size: 18px;
  color: #6f6f6f;
  padding: 0 22px;
  border: 0;
}
#footer .box .f-header .right .form ul li input::-webkit-input-placeholder {
  color: #6f6f6f;
}
#footer .box .f-header .right .form ul li input:-moz-placeholder {
  color: #6f6f6f;
}
#footer .box .f-header .right .form ul li input::-moz-placeholder {
  color: #6f6f6f;
}
#footer .box .f-header .right .form ul li input:-ms-input-placeholder {
  color: #6f6f6f;
}
#footer .box .f-header .right .form ul li input::placeholder {
  color: #6f6f6f;
}
#footer .box .f-header .right .form ul li button {
  width: 100%;
  height: 60px;
  background-color: #000000;
  border-radius: 30px;
  color: #fff;
  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;
  font-size: 18px;
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#footer .box .f-header .right .form ul li button::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .box .f-header .right .form ul li button i {
  font-size: 21px;
}
#footer .box .f-header .right .form ul li button:hover::before {
  width: 100%;
}
#footer .box .f-header .right .form ul li:nth-child(4) {
  width: 66.6666%;
}
#footer .box .f-header .right .form ul li:last-child {
  width: 33.3333%;
}
#footer .f-content .title {
  font-size: 22px;
  line-height: 1;
  margin: 0 0 25px;
}
#footer .f-content ul li {
  font-size: 18px;
  line-height: 1.7;
}
#footer .f-content ul li a {
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
#footer .f-content ul li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-content ul li a:hover {
  color: var(--color);
}
#footer .f-content ul li a:hover::after {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
#footer .f-content ul li i {
  width: 19px;
  margin-top: 6px;
}
#footer .f-content ul li span {
  margin-left: 12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#footer .f-content ul li:last-child {
  margin-bottom: 0;
}
#footer .f-content ul li ul {
  display: none;
}
#footer .f-content .left {
  width: 47.3%;
}
#footer .f-content .right {
  width: 52.7%;
}
#footer .f-content .f-contact {
  width: 70%;
}
#footer .f-content .f-contact ul li {
  margin-bottom: 8px;
}
#footer .f-content .f-contact ul li:last-child {
  margin-bottom: 0;
}
#footer .f-copy {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  padding: 58px 0 20px;
}
#footer .f-copy svg {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  max-height: 28px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: -1px;
  opacity: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 1860px) {
  #header .nav .menu-box ul.menu > li:nth-child(4) {
    margin-left: 23%;
  }
  #header .nav .menu-box ul.menu > li {
    font-size: 17px;
    margin-right: 40px;
  }
  #index-body .i-service .box .content ul li .ig {
    padding: 55px 28px 50px 19px;
  }
  #index-body .i-news .content ul li .ig .text .tit {
    min-height: 61px;
  }
  #footer .box .container1 {
    width: 1320px;
  }
}
@media screen and (max-width: 1450px) {
  #header .nav .menu-box {
    margin: 0 auto;
  }
  #header .nav .menu-box ul.menu {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #header .nav .menu-box ul.menu > li:nth-child(4) {
    margin-left: 0;
  }
  #footer .box .container1 {
    width: 100%;
    padding: 0 30px;
  }
  #footer .box .f-header .right {
    width: 100%;
    margin-top: 30px;
  }
  #footer .f-copy {
    zoom: .9;
  }
}
@media screen and (max-width: 1250px) {
  #banner ul li .text .top .left {
    width: 72%;
  }
  #index-body .i-about .right .bottom .icon {
    width: 41%;
  }
  #index-body .i-about .right .bottom .con {
    width: 59%;
  }
  #footer .f-content ul li {
    font-size: 16px;
  }
  .pl-167 {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1000px) {
  #banner ul li .text .top .left {
    width: 60%;
  }
  #banner ul li .text .top .right {
    width: 36%;
  }
  #banner ul li .text .bottom .text {
    width: 78%;
  }
  .font-20 {
    font-size: 20px;
  }
  .font-18 {
    font-size: 18px;
  }
  .font-40 {
    font-size: 30px;
  }
  .slickBtn {
    font-size: 16px;
  }
  #index-body .i-about .left {
    width: 100%;
  }
  #index-body .i-about .right {
    width: 100%;
    margin-top: 20px;
  }
  #index-body .i-service .box .content ul .slick-list {
    padding-right: 100px !important;
  }
  #index-body .i-custom .content .slickBtn div.next{
    left: 94%;
  }
  #index-body .i-news .content {
    padding: 0 30px;
  }
  .font-32 {
    font-size: 32px;
  }
  #footer .box .f-header .right {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .box .f-header .right .title {
    width: 100%;
  }
  #footer .box .f-header .right .form {
    width: 100%;
    padding: 20px 0 0 0;
  }
  #footer .box .f-header .right .form ul li {
    width: 50%;
  }
  #footer .box .f-header .right .form ul li input {
    font-size: 16px;
  }
  #footer .box .f-header .right .form ul li:nth-child(3) {
    width: 100%;
  }
  #footer .box .f-header .right .form ul li:nth-child(4) {
    width: 100%;
  }
  #footer .f-content .left {
    width: 100%;
  }
  #footer .f-content .left .f-contact {
    width: 100%;
  }
  #footer .f-content .right {
    display: none;
  }
  #footer .f-copy {
    zoom: .7;
  }
}
@media screen and (max-width: 700px) {
  #banner ul li .text .top .left .con {
    font-size: 16px;
    line-height: 1.8;
  }
  #banner ul li .text .bottom .text {
    padding-left: 20px;
  }
  #banner ul li .text .bottom .text .con {
    font-size: 15px;
    line-height: 1.8;
  }
  .i-title {
    font-size: 34px;
  }
  #index-body .i-product .content ul li .img-box .title {
    font-size: 18px;
  }
  #index-body .i-custom .header .i-title {
    width: 100%;
  }
  #index-body .i-custom .header .con {
    width: 100%;
  }
  #index-body .i-custom .btn .more {
    font-size: 20px;
    padding: 20px 90px 19px 90px;
  }
  #index-body .i-case {
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  #index-body .i-news .content {
    padding: 0;
    margin-top: 20px;
  }
  #index-body .i-news .content .slickBtn div.prev {
    left: -15px;
  }
  #index-body .i-news .content .slickBtn div.next {
    right: -15px;
  }
  #footer .box .container1 {
    padding: 0 15px;
  }
  #footer .f-copy {
    background: #fff;
    zoom: 1;
    padding: 20px 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  #banner {
    margin-top: 60px;
  }
  #banner ul li .text {
    padding: 20px 20px 0;
  }
  #banner ul li .text .top {
    display: none;
  }
  #banner ul li .text .bottom {
    margin-top: 0;
  }
  #banner ul li .text .bottom .text {
    position: initial;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
  }
  #banner ul li .text .bottom .text .con {
    width: 100%;
  }
  .i-title {
    font-size: 30px;
  }
  .font-16 {
    font-size: 14px;
    line-height: 2 !important;
  }
  #index-body .i-custom .content ul li .img span {
    padding: 12px 11px 6px;
    font-size: 14px;
    line-height: 2;
  }
      #index-body .i-custom .content .slickBtn div.next {
        left: 90%;
    }
  #index-body .i-case .content ul li .img span {
    font-size: 16px;
    line-height: 1.8;
  }
  #index-body .i-product {
    padding: 30px 15px;
  }
  #index-body .i-product .content ul .slick-list {
    padding: 0 !important;
  }
  #index-body .i-about .left::after {
    display: none;
  }
  #index-body .i-about .left .bottom .play {
    zoom: .7;
  }
  #index-body .i-about .right {
    padding-left: 0;
  }
  #index-body .i-about .right .bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .i-about .right .bottom .icon {
    width: 100%;
  }
  #index-body .i-about .right .bottom .con {
    width: 100%;
    padding: 20px 0 0;
  }
  #index-body .i-service {
    padding: 30px 0 30px 15px;
  }
  #index-body .i-service .box .content ul .slick-list {
    padding-right: 0 !important;
  }
  #footer {
    padding: 0 20px;
  }
  #footer .box .f-header .right .form ul li {
    width: 100%;
  }
  #footer .box .f-header .right .form ul li:last-child {
    width: 100%;
  }
}
.inner-banner {
  background-size: 100% 100%;
  background-attachment: fixed;
  position: relative;
  padding-top: 14%;
  color: white;
  height: 800px;
  z-index: 1;
  background-repeat: no-repeat;
}
.inner-banner:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../images/banner-mask.png") center bottom no-repeat;
  background-size: 100% auto;
  z-index: -1;
}
.inner-banner h2 {
  font-size: 90px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.5;
}
.inner-banner .box {
  margin-top: 10px;
}
.inner-banner .box .left {
  width: 30%;
}
.inner-banner .box .right {
  width: 70%;
}
.inner-banner .box .right .text {
  display: block;
  font-size: 24px;
  line-height: 2;
  max-width: 450px;
}
.mbx {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color);
  line-height: 2;
}
.mbx a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.mbx a:hover {
  color: white;
}
/*.inner-page {
  background: url("../images/icon-ms-bg.jpg");
}*/
.grid-box {
    font-size: 0;
    [;
    letter-spacing: -4px;
    font-size: 12px;
    ]
}
.grid-box .column {
    display: inline-block;
    font-size: 12px;
    vertical-align: top;
    [;
    letter-spacing: 0;
    ]
}
.grid-box .column {
    width: 100%;
}
.grid-box.two>.column {
    width: 50%;
}
.grid-box.three>.column {
    width: 33.33333%;
}
.grid-box.four>.column {
    width: 25%;
}
.grid-box.five>.column {
    width: 20%;
}
.grid-box.six>.column {
    width: 16.6666667%;
}
.grid-box.seven>.column {
    width: 14.285714%;
}
.grid-box.eight>.column {
    width: 12.5%;
}
.grid-box.nine>.column {
    width: 11.11111111%;
}
.grid-box.ten>.column {
    width: 10%;
}
@media screen and (max-width: 1000px) {
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 33.33333%;
    }
    .grid-box.four>.column {
        width: 33.33333%;
    }
    .grid-box.five>.column {
        width: 33.33333%;
    }
}
@media screen and (max-width: 700px) {
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 50%;
    }
    .grid-box.four>.column {
        width: 50%;
    }
    .grid-box.five>.column {
        width: 50%;
    }
}
@media screen and (max-width: 500px) {
    .grid-box.two>.column {
        width: 100%;
    }
    .grid-box.three>.column {
        width: 100%;
    }
    .grid-box.four>.column {
        width: 100%;
    }
    .grid-box.five>.column {
        width: 100%;
    }
}
.about-page .about-1 {
  padding-top: 50px;
  position: relative;
  z-index: 2;
}
.about-page .about-1 .left {
  padding-right: 3%;
  padding-bottom: 20px;
}
.about-page .about-1 .left h2 {
  display: block;
  font-size: 64px;
  line-height: 1.5;
  font-weight: bold;
}
.about-page .about-1 .left .text {
  margin-top: 70px;
  font-size: 18px;
  line-height: 2;
  opacity: .8;
}
.about-page .about-1 .right {
  padding-left: 3%;
  padding-top: 2%;
}
.about-page .about-1 .right .list ul {
  margin: -10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .about-1 .right .list ul li {
  padding: 10px;
  width: auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-1 .right .list ul li h6 {
  font-size: 45px;
  line-height: 1;
}
.about-page .about-1 .right .list ul li p {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 25px;
}
.about-page .about-1 .right .list ul li:hover {
  color: var(--color);
}
.about-page .about-1 .right .img {
  margin-top: 90px;
}
.about-page .about-1 .right .img a.img-box {
  height: 760px;
  margin-bottom: -120px;
  background-size: 100% 100%;
}
.about-page .about-2 {
  color: black;
  background: url("/nonwovenfabricmakingmachinery/2026/01/15/abb.jpg") center left;
  background-size: cover;
  padding: 260px 0 160px;
  position: relative;
  z-index: 1;
}
.about-page .about-2 i.bg {
  content: '';
  width: 37.5%;
  height: 98%;
  position: absolute;
  z-index: -1;
  left: 15px;
  bottom: 0;
  /*background: url("../images/about-2.png") center bottom no-repeat;*/
  background-size: contain;
}
.about-page .about-2 .box {
  padding-left: 40%;
}
.about-page .about-2 .box h2 {
  font-size: 63px;
  font-weight: bold;
  color: #131313;
  line-height: 1.5;
  text-transform: uppercase;
}
.about-page .about-2 .box .list {
  margin-top: 80px;
}
.about-page .about-2 .box .list ul {
  margin: -30px -45px;
}
.about-page .about-2 .box .list ul li {
  padding: 30px 45px;
}
.about-page .about-2 .box .list ul li h6 {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.5;
}
.about-page .about-2 .box .list ul li p {
  display: block;
  font-size: 18px;
  color: #666;
  line-height: 2;
}
.about-page .about-3 {
  padding: 190px 0;
  background: url("/nonwovenfabricmakingmachinery/2026/01/15/abb2.jpg") center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 30px;
}
.about-page .about-3.txt-center {
  background-image: url("../images/about-3-public-bg.jpg");
  padding: 110px 0;
  background-attachment: unset;
  background-position: center center !important;
}
.about-page .about-3.txt-center .box {
  display: block;
  margin: 0 auto;
}
.about-page .about-3 .box {
  max-width: 910px;
}
.about-page .about-3 .box h2 {
  font-weight: bold;
  font-size: 64px;
  line-height: 1.5;
}
.about-page .about-3 .box .text {
  font-size: 18px;
  line-height: 2;
  margin-top: 20px;
}
.about-page .about-3 .box .btn {
  padding: 90px 0;
  display: inline-block;
  width: 100%;
}
.about-page .about-3 .box .btn a {
  width: 50%;
  float: left;
}
.about-page .about-3 .box .btn a img {
  display: inline-block;
  vertical-align: middle;
}
.about-page .about-3 .box .btn a em {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 4px solid white;
  min-width: 230px;
  margin-left: 25px;
}
.about-page .about-3 .box .btn a em i.fa {
  float: right;
  margin-left: 10px;
}
.about-page .about-3 .box .form ul {
  margin: -2px;
}
.about-page .about-3 .box .form ul li {
  padding: 2px;
}
.about-page .about-3 .box .form ul li input {
  width: 100%;
  line-height: 70px;
  height: 70px;
  padding: 0 15px;
  border: none;
  background: white;
  font-size: 16px;
  color: black;
}
.about-page .about-3 .box .form ul li input::-webkit-input-placeholder {
  color: #666;
}
.about-page .about-3 .box .form ul li input:-moz-placeholder {
  color: #666;
}
.about-page .about-3 .box .form ul li input::-moz-placeholder {
  color: #666;
}
.about-page .about-3 .box .form ul li input:-ms-input-placeholder {
  color: #666;
}
.about-page .about-3 .box .form ul li input::placeholder {
  color: #666;
}
.about-page .about-3 .box .form ul li input[type="submit"] {
  background: var(--color);
  color: white;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .box .form ul li input[type="submit"]:hover {
  background: #222;
}
.about-page .about-3 .box .form ul li:nth-child(1) {
  width: 17.58241758%;
}
.about-page .about-3 .box .form ul li:nth-child(2) {
  width: 17.58241758%;
}
.about-page .about-3 .box .form ul li:nth-child(3) {
  width: 17.58241758%;
}
.about-page .about-3 .box .form ul li:nth-child(4) {
  width: 30.76923077%;
}
.about-page .about-3 .box .form ul li:nth-child(5) {
  width: 16.48351648%;
}
.product-banner {
  height: 900px;
  background: url("../images/icon-ms-bg.jpg");
  position: relative;
  color: white;
  z-index: 1;
  overflow: hidden;
  padding-top: 10%;
}
.product-banner text {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
  font-size: 187px;
  color: #111;
  opacity: .49;
  text-transform: uppercase;
  line-height: 1;
  font-weight: bold;
  white-space: nowrap;
  max-width: 40%;
}
.product-banner .bg {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: -3%;
  width: 38%;
  background-size: contain;
  max-height: 98%;
  text-align: right;
}
.product-banner:before {
  content: '';
  background-image: -webkit-radial-gradient(#f9f9f9, transparent);
  background-image: -moz-radial-gradient(#f9f9f9, transparent);
  background-image: radial-gradient(#f9f9f9, transparent);
  opacity: .1;
  width: 41.66666667vw;
  height: 52.08333333vw;
  position: absolute;
  border-radius: 100%;
  -o-box-shadow: 0 0 15.625vw rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15.625vw rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15.625vw rgba(255, 255, 255, 0.7);
  top: 5%;
  right: -7%;
}
.product-banner .box2 {
  padding-right: 20%;
}
.product-banner .box2 .left {
  margin-top: 8%;
}

.product-banner .box2 .left h1 {
  font-weight: bold;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 10px;
}
.product-banner .box2 .right {
  padding-left: 8%;
  padding-right: 7%;
}
.product-banner .box2 .right h3 {
  font-size: 40px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: bold;
}
.product-banner .box2 .right .text {
  font-size: 16px;
  line-height: 2;
  opacity: .7;
  margin: 30px 0 60px;
}
.product-banner .box2 .right a.more {
  margin-left: 30px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  background: transparent;
}
.product-banner .box2 .right a.more::before{
  display: none;
}
.product-banner .box2 .right a.more i {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: -1;
  background: var(--color);
  opacity: .3;
}
.navList-Slick {
  padding: 25px 0;
}
.navList-Slick ul .slick-track {
  margin-left: 0;
}
.navList-Slick ul li {
  padding: 15px 50px;
  text-align: center;
  font-size: 18px;
  border-right: 1px solid black;
  line-height: 1;
}
.navList-Slick ul li a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.navList-Slick ul li a:hover {
  color: var(--color);
}
.navList-Slick ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: transparent;
  font-size: 0;
}
.navList-Slick ul .slick-arrow:after {
  font-family: "FontAwesome";
  color: black;
  font-size: 28px;
  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%);
}
.navList-Slick ul .slick-arrow.slick-prev {
  right: 100.5%;
}
.navList-Slick ul .slick-arrow.slick-prev:after {
  content: "\f0d9";
}
.navList-Slick ul .slick-arrow.slick-next {
  left: 100.5%;
}
.navList-Slick ul .slick-arrow.slick-next:after {
  content: "\f0da";
}
.product-List {
  padding: 80px 0 100px;
}
.product-List .jiudapro {
  font-size: 18px;
  line-height: 2;
  margin-top: 10px;
}
.product-List .list ul {
  margin: -30px -5px;
}
.product-List .list ul li {
  padding: 30px 5px;
}
.product-List .list ul li a.img-box {
  background-size: contain;
  background-repeat: no-repeat;
  border: 20px solid transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-List .list ul li a.img-box:after {
  display: none;
}
.product-List .list ul li h6 {
  display: block;
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  line-height: 2;
}
.product-List .list ul li h6:hover {
  color: var(--color);
}
.product-List .list ul li:hover a.img-box {
  background-color: white;
  -o-box-shadow: -4px 2px 25px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: -4px 2px 25px rgba(0, 0, 0, 0.1);
  box-shadow: -4px 2px 25px rgba(0, 0, 0, 0.1);
}
.m-page {
  margin-top: 80px;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
}
.m-page a,
.m-page span {
  margin: 0 7px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.m-page a:hover,
.m-page span.current {
  color: var(--color);
}
.product-page {
  background: #f1f1f1;
  color: black;
}
.prodet-page {
  background: white;
  color: black;
}
.prodet-page .mbx {
  padding: 22px 0;
  background-color: #eaeaea;
}
.prodet-page .prodet-1 {
  padding: 75px 0 85px;
}
.prodet-page .prodet-1 .left {
  width: 55%;
  vertical-align: middle;
}
.prodet-page .prodet-1 .left a.img-box {
  background-color: white;
}
.prodet-page .prodet-1 .left .smallImg {
  width: 20%;
  float: left;
  padding-right: 4%;
}
.prodet-page .prodet-1 .left .smallImg ul {
  margin: -10px;
}
.prodet-page .prodet-1 .left .smallImg ul li {
  padding: 10px;
}
.prodet-page .prodet-1 .left .smallImg ul li a.img-box {
  background-size: contain;
  background-repeat: no-repeat;
}
.prodet-page .prodet-1 .left .smallImg ul .slick-arrow {
  width: 40px;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: transparent;
  font-size: 0;
  border: none;
}
.prodet-page .prodet-1 .left .smallImg ul .slick-arrow.slick-prev {
  display: none;
}
.prodet-page .prodet-1 .left .smallImg ul .slick-arrow.slick-next:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 18px;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.prodet-page .prodet-1 .left .bigImg {
  width: 80%;
  padding-left: 2%;
  text-align: center;
  display: inline-block;
}
.prodet-page .prodet-1 .left .bigImg a.img-box {
  background-size: contain;
  background-repeat: no-repeat;
}
.prodet-page .prodet-1 .right {
  width: 45%;
  padding-left: 5%;
  vertical-align: middle;
}
.prodet-page .prodet-1 .right h1 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
}
.prodet-page .prodet-1 .right h6 {
  font-size: 18px;
  font-weight: bold;
  color: var(--color);
  display: block;
  line-height: 1.2;
  margin: 45px 0;
}
.prodet-page .prodet-1 .right .text {
  font-size: 18px;
  line-height: 2;
  color: #666;
}
.prodet-page .prodet-1 .right a.more {
  margin-top: 100px;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  margin-left: 15px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  color: #fff;
}
.prodet-page .prodet-1 .right a.more i {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: var(--color);
  opacity: .2;
  left: -25px;
  top: -20px;
  position: absolute;
}
.prodet-page .prodet-2 {
  padding-bottom: 120px;
}
.prodet-page .prodet-2 .options {
  line-height: 72px;
  height: 72px;
  background-color: #efefef;
}
.prodet-page .prodet-2 .options span {
  display: inline-block;
  vertical-align: top;
  padding: 0 45px;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.prodet-page .prodet-2 .options span:hover,
.prodet-page .prodet-2 .options span.active {
  background-color: var(--color);
  color: white;
}
.prodet-page .prodet-2 .ret {
  margin-top: 85px;
}
.prodet-page .prodet-2 .ret .content {
  font-size: 18px;
  color: #666;
  line-height: 2;
}
.prodet-page .prodet-2 .ret .content td {
  border: 1px solid #eee;
}
.prodet-page .prodet-2 .ret .content.faq ul {
  margin: -25px 0;
}
.prodet-page .prodet-2 .ret .content.faq ul li {
  padding: 25px 0;
}
.prodet-page .prodet-2 .ret .content.faq ul li h6 {
  font-weight: bold;
  font-size: 20px;
  color: #1a1a1a;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color);
  position: relative;
}
.prodet-page .prodet-2 .ret .content.faq ul li h6 i {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  right: 0;
  cursor: pointer;
}
.prodet-page .prodet-2 .ret .content.faq ul li h6 i:after,
.prodet-page .prodet-2 .ret .content.faq ul li h6 i:before {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--color);
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .ret .content.faq ul li h6 i:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.prodet-page .prodet-2 .ret .content.faq ul li h6 i.active:after {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.prodet-page .prodet-2 .ret .content.faq ul li .text {
  margin-top: 22px;
  font-size: 16px;
  color: #666;
  line-height: 2;
  display: none;
}
.prodet-page .prodet-2 .ret .content.table table tbody,
.prodet-page .prodet-2 .ret .content.table table {
  table-layout: fixed;
  border: none;
}
.prodet-page .prodet-2 .ret .content.table table tr td {
  vertical-align: middle;
  padding: 15px;
}
.prodet-page .prodet-2 .ret .content.table table tr td blockquote {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: black;
  margin: 0;
  margin-bottom: 30px;
  line-height: 1.2;
}
.prodet-page .prodet-2 .ret .content.table table tr td blockquote:before {
  content: '';
  width: 37px;
  height: 4px;
  display: block;
  background-color: var(--color);
  margin-bottom: 22px;
}
.prodet-page .product-List {
  padding: 120px 0;
  background: url("../images/icon-ms-bg.jpg");
  color: white;
  text-align: center;
}
.prodet-page .product-List h3 {
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 60px;
}
.prodet-page .product-List .list {
  margin-top: 75px;
}
.prodet-page .product-List .list ul li {
  padding: 70px;
}
.prodet-page .product-List .list ul li a.img {
  display: block;
  margin-bottom: 45px;
  position: relative;
  font-size: 10px;
  z-index: 1;
}
.prodet-page .product-List .list ul li a.img:after {
  content: '';
  width: 24em;
  height: 24em;
  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%);
  z-index: -1;
  background: var(--color);
  background: -webkit-gradient(linear, left top, bottom top, color-stop(0%, var(--color)), color-stop(100%, transparent));
  /* 兼容Safari4-5, chrome1-9 */
  background: -moz-linear-gradient(bottom, var(--color) 0%, transparent 100%);
  /* firefox */
  background: -webkit-linear-gradient(top, var(--color) 0%, transparent 100%);
  /* chrome */
  /* opera */
  /* ie */
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color)), to(transparent));
  background: -webkit-linear-gradient(top, var(--color), transparent);
  background: -moz-linear-gradient(top, var(--color), transparent);
  background: linear-gradient(to bottom, var(--color), transparent);
  /* firefox */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='transparent',GradientType=0)";
  /* 兼容IE8~IE9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='transparent', GradientType=0);
  /* 兼容IE5~IE9 */
  border-radius: 100%;
  opacity: .4;
}
.prodet-page .product-List .list ul li a.img img {
  display: block;
  margin: 0 auto;
  max-height: 380px;
  transform: scale(1.3);
}
.prodet-page .product-List .list ul li span.tag {
  font-size: 18px;
  color: var(--color);
  display: block;
  line-height: 1.2;
}
.prodet-page .product-List .list ul li h6 {
  font-size: 18px;
  color: white;
  margin: 5px 0 10px;
  line-height: 2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .product-List .list ul li h6:hover {
  color: var(--color);
}
.prodet-page .product-List .list ul li a.more {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.prodet-page .product-List .list ul li a.more i {
  margin-left: 10px;
}
.customize-page h2 {
  font-size: 72px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.customize-page .customize-1 {
  padding: 80px 0 120px;
  text-align: center;
}
.customize-page .customize-1 .list {
  margin-top: 75px;
}
.customize-page .customize-1 .list ul {
  margin: -75px;
}
.customize-page .customize-1 .list ul li {
  padding: 75px;
}
.customize-page .customize-1 .list ul li i {
  display: block;
  line-height: 160px;
  height: 160px;
}
.customize-page .customize-1 .list ul li i img {
  display: inline-block;
  vertical-align: middle;
}
.customize-page .customize-1 .list ul li h6 {
  margin: 50px 0 25px;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.5;
}
.customize-page .customize-1 .list ul li p {
  font-size: 18px;
  line-height: 1.6;
  opacity: .8;
}
.customize-page .customize-2 {
  padding-bottom: 170px;
  text-align: center;
}
.customize-page .customize-2 .text {
  margin: 50px auto 70px;
  max-width: 850px;
  font-size: 24px;
  line-height: 2;
  opacity: .8;
}
.customize-page .customize-2 .list ul {
  margin: -10px;
}
.customize-page .customize-2 .list ul li {
  padding: 10px;
}
.customize-page .customize-2 .list ul li a.img-box {
  display: block;
  height: 290px;
}
.customize-page .customize-2 .list ul li:nth-child(1),
.customize-page .customize-2 .list ul li:nth-child(4) {
  width: 30%;
}
.customize-page .customize-2 .list ul li:nth-child(2),
.customize-page .customize-2 .list ul li:nth-child(3) {
  width: 35%;
}
.customize-page .customize-2 .list ul li:nth-child(3) .img {
  margin: -10px;
}
.customize-page .customize-2 .list ul li:nth-child(3) .img > div {
  padding: 10px;
}
.customize-page .customize-2 .list ul li:nth-child(3) .img > div a.img-box {
  height: 135px;
}
.customize-page .customize-2 .list ul li:nth-child(3) .img > div:first-child {
  width: 100%;
}
.customize-page .customize-2 .list ul li:nth-child(5) {
  width: 70%;
}
.service-page .service-1 {
  padding: 50px 0 100px;
  text-align: center;
}
.service-page .service-1 h2.title {
  font-weight: bold;
  font-size: 48px;
  line-height: 1.2;
}
.service-page .service-1 .list {
  margin-top: 70px;
}
.service-page .service-1 .list ul {
  margin: -15px;
}
.service-page .service-1 .list ul li {
  padding: 15px;
}
.service-page .service-1 .list ul li a.img-box {
  height: 300px;
}
.service-page .service-1 .list ul li h6 {
  display: block;
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-1 .list ul li:hover h6 {
  color: var(--color);
}
.service-page .service-2 {
  padding: 120px 0 150px;
  background: url("../images/service-2-bg.jpg") center center;
  background-size: cover;
  color: black;
}
.service-page .service-2 .left {
  width: 25%;
  padding-right: 2%;
}
.service-page .service-2 .left h3 {
  font-size: 32px;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.4;
  text-transform: uppercase;
}
.service-page .service-2 .right {
  width: 75%;
}
.service-page .service-2 .right .list ul {
  margin: -25px 0;
}
.service-page .service-2 .right .list ul li {
  padding: 25px 0;
}
.service-page .service-2 .right .list ul li h6 {
  font-weight: bold;
  font-size: 20px;
  color: #1a1a1a;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color);
  position: relative;
}
.service-page .service-2 .right .list ul li h6 i {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  right: 0;
  cursor: pointer;
}
.service-page .service-2 .right .list ul li h6 i:after,
.service-page .service-2 .right .list ul li h6 i:before {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--color);
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-2 .right .list ul li h6 i:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.service-page .service-2 .right .list ul li h6 i.active:after {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.service-page .service-2 .right .list ul li .text {
  margin-top: 22px;
  font-size: 16px;
  color: #666;
  line-height: 2;
  display: none;
}
.factory-page {
  background: white;
  color: black;
}
.factory-page .factory-1 {
  padding: 70px 0 160px;
}
.factory-page .factory-1 span.tag {
  display: block;
  font-size: 35px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.factory-page .factory-1 h2.title {
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
  max-width: 60%;
}
.factory-page .factory-1 .box {
  margin-top: 80px;
}
.factory-page .factory-1 .box .slide {
  margin-bottom: 80px;
}
.factory-page .factory-1 .box .slide:last-child {
  margin-bottom: 0;
}
.factory-page .factory-1 .box .left {
  width: 34%;
  padding-right: 2%;
}
.factory-page .factory-1 .box .left:before {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--color);
  display: block;
  margin-bottom: 40px;
}
.factory-page .factory-1 .box .left h3 {
  display: block;
  font-weight: bold;
  font-size: 36px;
  line-height: 1.2;
  padding-right: 10%;
}
.factory-page .factory-1 .box .right {
  width: 100%;
}
.factory-page .factory-1 .box .right:before {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--color);
  display: block;
  margin-bottom: 40px;
}
.factory-page .factory-1 .box .right .text {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.factory-page .factory-1 .box .right .list ul {
  margin: -6px;
}
.factory-page .factory-1 .box .right .list ul li {
  padding: 6px;
}
.contact-page .contact-1 {
  padding: 75px 0 150px;
  background: url("../images/contact-bg.jpg") center center;
  background-size: cover;
  color: black;
}
.contact-page .contact-1 span.tag {
  display: block;
  font-size: 34px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.contact-page .contact-1 h2 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  max-width: 60%;
}
.contact-page .contact-1 .box {
  margin-top: 50px;
}
.contact-page .contact-1 .box h5 {
  font-size: 46px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: bold;
}
.contact-page .contact-1 .box .left {
  width: 34%;
  padding-right: 2%;
}
.contact-page .contact-1 .box .left:before {
  content: '';
  width: 100%;
  height: 4px;
  background: var(--color);
  display: block;
  margin-bottom: 40px;
}
.contact-page .contact-1 .box .left .content {
  padding-right: 15%;
}
.contact-page .contact-1 .box .left .text {
  font-size: 18px;
  line-height: 1.6;
}
.contact-page .contact-1 .box .left .info {
  margin-top: 35px;
}
.contact-page .contact-1 .box .left .info ul li {
  margin-bottom: 35px;
  padding-left: 30px;
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .box .left .info ul li i {
  position: absolute;
  left: 0;
  top: -2px;
}
.contact-page .contact-1 .box .left .info ul li i img {
  display: inline-block;
  vertical-align: middle;
}
.contact-page .contact-1 .box .left .info ul li:hover {
  color: var(--color);
}
.contact-page .contact-1 .box .left .info ul li:last-child {
  margin-bottom: 0;
}
.contact-page .contact-1 .box .right {
  width: 66%;
}
.contact-page .contact-1 .box .right:before {
  content: '';
  width: 100%;
  height: 4px;
  background: var(--color);
  display: block;
  margin-bottom: 40px;
}
.contact-page .contact-1 .box .right .form ul {
  margin: -25px -20px;
}
.contact-page .contact-1 .box .right .form ul li {
  padding: 25px 20px;
}
.contact-page .contact-1 .box .right .form ul li label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #666;
  line-height: 1.2;
}
.contact-page .contact-1 .box .right .form ul li input,
.contact-page .contact-1 .box .right .form ul li textarea {
  line-height: 24px;
  padding: 15px;
  border: none;
  background: #f1f1f1;
  width: 100%;
}
.contact-page .contact-1 .box .right .form ul li textarea {
  height: 140px;
}
.contact-page .contact-1 .box .right .form ul li input[type="submit"] {
  height: 64px;
  line-height: 60px;
  padding: 0 60px;
  border: 2px solid var(--color);
  background: transparent;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color);
  width: auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .box .right .form ul li input[type="submit"]:hover {
  background: var(--color);
  color: white;
}
.contact-page .contact-1 .box .right .form ul li.wid-100 {
  width: 100%;
}
.news-page {
  padding: 90px 0 70px;
  /*background: #eaeaea;*/
  color: black;
}
.news-page .news-1 .list .slide {
  margin-bottom: 70px;
}
.news-page .news-1 .list .slide:last-child {
  margin-bottom: 0;
}
.news-page .news-1 .list .slide .left {
  width: 34%;
  padding-right: 2%;
  vertical-align: middle;
}
.news-page .news-1 .list .slide .left:before {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--color);
  display: block;
  margin-bottom: 40px;
}
.news-page .news-1 .list .slide .left a.img-box {
  height: 250px;
}
.news-page .news-1 .list .slide .left a.img-box time {
  position: absolute;
  bottom: 20%;
  left: 12%;
  font-size: 16px;
  line-height: 1;
  color: white;
  z-index: 2;
}
.news-page .news-1 .list .slide .left a.img-box time i {
  width: 60px;
  height: 60px;
  background: white;
  opacity: .2;
  left: -25px;
  top: -20px;
  position: absolute;
  border-radius: 100%;
}
.news-page .news-1 .list .slide .right {
  width: 66%;
}
.news-page .news-1 .list .slide .right:before {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--color);
  display: block;
  margin-bottom: 40px;
}
.news-page .news-1 .list .slide .right h3 {
  font-size: 30px;
  line-height: 1.5;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .list .slide .right h3:hover {
  color: var(--color);
}
.news-page .news-1 .list .slide .right .text {
  font-size: 18px;
  color: #666;
  line-height: 2;
  margin: 22px 0;
}
.news-page .news-1 .list .slide .right a.more {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .list .slide .right a.more i.fa {
  margin-left: 25px;
}
.news-page .news-1 .list .slide .right a.more:hover {
  color: var(--color);
}
.newsdet-page .newsdet-1 {
  padding: 80px 0;
}
.newsdet-page .newsdet-1 h1 {
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.5;
  font-size: 30px;
}
.newsdet-page .newsdet-1 time {
  font-size: 18px;
  margin: 10px 0;
  display: block;
}
.newsdet-page .newsdet-1 .content {
  font-size: 18px;
  color: #ccc;
  line-height: 2;
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px #eee dashed;
  border-bottom: 1px #eee dashed;
}
.newsdet-page .newsdet-1 .m-link {
  font-size: 16px;
  line-height: 2;
}
.newsdet-page .newsdet-1 .m-link a {
  display: block;
}
.newsdet-page .newsdet-1 .m-link a:hover {
  text-decoration: underline;
}
.newsdet-page .product-List h3 {
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 60px;
}
.newsdet-page .product-List .list {
  margin-top: 75px;
  text-align: center;
}
.newsdet-page .product-List .list ul {
  margin: -70px;
}
.newsdet-page .product-List .list ul li {
  padding: 70px;
}
.newsdet-page .product-List .list ul li a.img {
  display: block;
  margin-bottom: 45px;
  position: relative;
  font-size: 10px;
  z-index: 1;
}
.newsdet-page .product-List .list ul li a.img:after {
  content: '';
  width: 28em;
  height: 28em;
  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%);
  z-index: -1;
  background: var(--color);
  background: -webkit-gradient(linear, left top, bottom top, color-stop(0%, var(--color)), color-stop(100%, transparent));
  /* 兼容Safari4-5, chrome1-9 */
  background: -moz-linear-gradient(bottom, var(--color) 0%, transparent 100%);
  /* firefox */
  background: -webkit-linear-gradient(top, var(--color) 0%, transparent 100%);
  /* chrome */
  /* opera */
  /* ie */
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color)), to(transparent));
  background: -webkit-linear-gradient(top, var(--color), transparent);
  background: -moz-linear-gradient(top, var(--color), transparent);
  background: linear-gradient(to bottom, var(--color), transparent);
  /* firefox */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='transparent',GradientType=0)";
  /* 兼容IE8~IE9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='transparent', GradientType=0);
  /* 兼容IE5~IE9 */
  border-radius: 100%;
  opacity: .4;
}
.newsdet-page .product-List .list ul li a.img img {
  display: block;
  margin: 0 auto;
  max-height: 380px;
}
.newsdet-page .product-List .list ul li span.tag {
  font-size: 18px;
  color: var(--color);
  display: block;
  line-height: 1.2;
}
.newsdet-page .product-List .list ul li h6 {
  font-size: 18px;
  color: white;
  margin: 5px 0 10px;
  line-height: 2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newsdet-page .product-List .list ul li h6:hover {
  color: var(--color);
}
.newsdet-page .product-List .list ul li a.more {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.newsdet-page .product-List .list ul li a.more i {
  margin-left: 10px;
}
@media screen and (max-width: 1700px) {
  .newsdet-page .newsdet-1 h1,
  .newsdet-page .product-List h3,
  .prodet-page .product-List h3,
  .about-page .about-1 .left h2 {
    font-size: 44px;
  }
  .inner-banner h2,
  .product-banner .box2 .left h2 {
    font-size: 70px;
  }
  .inner-banner .box .right .text {
    font-size: 20px;
  }
  .inner-banner {
    padding-top: 10%;
    height: 500px;
  }
  .news-page .news-1 .list .slide .right h3 {
    font-size: 28px;
  }
  .news-page .news-1 .list .slide .right .text {
    font-size: 16px;
  }
  .news-page .news-1 .list .slide .left a.img-box {
    height: 200px;
  }
  .news-page .news-1 .list .slide {
    margin-bottom: 40px;
  }
  .factory-page .factory-1 span.tag,
  .contact-page .contact-1 span.tag {
    font-size: 28px;
  }
  .factory-page .factory-1 h2.title,
  .contact-page .contact-1 h2,
  .customize-page h2 {
    font-size: 54px;
  }
  .factory-page .factory-1 .box {
    margin-top: 60px;
  }
  .factory-page .factory-1 .box .left h3 {
    font-size: 28px;
  }
  .factory-page .factory-1 .box .right .text {
    font-size: 18px;
  }
  .factory-page .factory-1 {
    padding: 70px 0;
  }
  .contact-page .contact-1 .box h5 {
    font-size: 38px;
  }
  .service-page .service-1 h2.title {
    font-size: 42px;
  }
  .service-page .service-1 .list ul li h6 {
    font-size: 16px;
    margin-top: 20px;
  }
  .service-page .service-2 .left h3 {
    font-size: 28px;
  }
  .service-page .service-2 .right .list ul li h6,
  .prodet-page .prodet-2 .ret .content.faq ul li h6 {
    font-size: 18px;
  }
  .customize-page .customize-1 .list ul li i {
    height: 120px;
    line-height: 120px;
  }
  .customize-page .customize-1 .list ul li i img {
    max-height: 100%;
    max-width: 120px;
  }
  .customize-page .customize-1 .list ul li h6 {
    font-size: 20px;
    margin: 20px 0 10px;
  }
  .customize-page .customize-1 .list ul li p {
    font-size: 16px;
  }
  .customize-page .customize-1 .list ul li {
    padding: 50px;
  }
  .customize-page .customize-1 .list ul {
    margin: -50px;
  }
  .customize-page .customize-2 .text {
    font-size: 20px;
  }
  .customize-page .customize-2 {
    padding-bottom: 100px;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 28px;
  }
  .prodet-page .prodet-1 .right h6 {
    font-size: 16px;
    margin: 25px 0;
  }
  .prodet-page .prodet-1 .right .text {
    font-size: 16px;
  }
  .prodet-page .prodet-1 .right a.more {
    margin-top: 60px;
  }
  .prodet-page .prodet-2 .options span {
    font-size: 20px;
    padding: 0 40px;
  }
  .prodet-page .prodet-2 .options {
    line-height: 60px;
    height: 60px;
  }
  .prodet-page .prodet-2 .ret {
    margin-top: 40px;
  }
  .prodet-page .prodet-2 .ret .content.table table tr td {
    padding-bottom: 20px !important;
  }
  .prodet-page .product-List {
    padding: 80px 0;
  }
  .product-banner .box2 .right h3 {
    font-size: 80px;
  }
  .product-banner text {
    font-size: 220px;
  }
  .product-banner {
    height: 700px;
  }
  .product-banner:before {
    width: 36%;
  }
  .product-banner .bg {
    width: 20%;
    right: 2%;
  }
  .navList-Slick ul li {
    padding: 10px 30px;
    font-size: 18px;
  }
  .navList-Slick {
    padding: 15px 0;
  }
  .product-List .list ul li h6 {
    font-size: 16px;
    margin-top: 25px;
  }
  .product-List .list ul li {
    padding: 15px 5px;
  }
  .product-List .list ul {
    margin: -15px -5px;
  }
  .m-page {
    margin-top: 50px;
    font-size: 20px;
  }
  .product-List {
    padding: 60px 0;
  }
  .about-page .about-3 .box .form ul li input {
    line-height: 60px;
    height: 60px;
  }
  .about-page .about-1 .right .list ul li h6 {
    font-size: 36px;
  }
  .about-page .about-1 .right .list ul li p {
    font-size: 16px;
    margin-top: 15px;
  }
  .about-page .about-1 .right {
    padding-top: 0;
  }
  .about-page .about-1 .right .img a.img-box {
    height: 600px;
    margin-bottom: -60px;
  }
  .about-page .about-1 .right .img {
    margin-top: 50px;
  }
  .about-page .about-2 {
    padding: 140px 0 80px;
  }
  .about-page .about-2 .box h2 {
    font-size: 42px;
  }
  .about-page .about-2 .box .list {
    margin-top: 40px;
  }
  .about-page .about-2 .box .list ul li h6 {
    font-size: 20px;
  }
  .about-page .about-2 .box .list ul li p {
    font-size: 16px;
  }
  .about-page .about-2 .box .list ul li {
    padding: 15px;
  }
  .about-page .about-2 .box .list ul {
    margin: -15px;
  }
  .about-page .about-3 {
    padding: 140px 0;
  }
  .about-page .about-3 .box h2 {
    font-size: 44px;
  }
  .about-page .about-3 .box .btn {
    padding: 50px 0;
  }
  .about-page .about-3 .box .btn a em {
    font-size: 18px;
  }
}
@media screen and (max-width: 1400px) {
  .inner-banner {
    height: 400px;
  }
  .inner-banner h2,
  .product-banner .box2 .left h2 {
    font-size: 48px;
  }
  .newsdet-page .newsdet-1 h1,
  .newsdet-page .product-List h3,
  .prodet-page .product-List h3,
  .about-page .about-1 .left h2,
  .about-page .about-3 .box h2 {
    font-size: 38px;
  }
  .factory-page .factory-1 h2.title,
  .contact-page .contact-1 h2,
  .customize-page h2 {
    font-size: 42px;
  }
  .about-page .about-1 .right .list ul li h6 {
    font-size: 28px;
  }
  .about-page .about-2 .box .list ul li h6 {
    font-size: 18px;
  }
  .about-page .about-2 .box .list ul li p {
    font-size: 14px;
  }
  .about-page .about-3 .box .text,
  .about-page .about-3 .box .btn a em {
    font-size: 16px;
    margin-left: 15px;
  }
  .about-page .about-3 .box .btn a img {
    max-height: 44px;
    max-width: 44px;
  }
  .product-banner .box2 .right h3 {
    font-size: 60px;
  }
  .product-banner .box2 .right .text {
    font-size: 16px;
  }
  .product-banner .box2 .right a.more {
    font-size: 18px;
  }
  .product-banner text {
    font-size: 180px;
  }
  .product-banner {
    height: 600px;
  }
  .prodet-page .prodet-2 .options span {
    font-size: 18px;
  }
  .prodet-page .prodet-2 .ret .content.table table tr td blockquote:before {
    margin-bottom: 15px;
  }
  .prodet-page .prodet-2 .ret .content.table table tr td blockquote {
    margin-bottom: 20px;
  }
  .prodet-page .prodet-2 .ret .content {
    font-size: 16px;
  }
  .prodet-page .prodet-2 {
    padding-bottom: 60px;
  }
  .prodet-page .product-List .list ul,
  .newsdet-page .product-List .list ul{
    margin: -50px;
  }
  .prodet-page .product-List .list ul li,
  .newsdet-page .product-List .list ul li {
    padding: 50px;
  }
  .prodet-page .product-List .list ul li h6 {
    font-size: 18px;
  }
  .prodet-page .product-List .list ul li a.more {
    font-size: 16px;
  }
  .prodet-page .product-List .list {
    margin-top: 50px;
  }
  .customize-page .customize-1 .list ul li i {
    line-height: 90px;
    height: 90px;
  }
  .customize-page .customize-1 .list ul li i img {
    max-width: 90px;
  }
  .customize-page .customize-1 .list {
    margin-top: 50px;
  }
  .customize-page .customize-1 {
    padding: 70px 0;
  }
  .customize-page .customize-2 .text {
    margin: 20px auto 30px;
  }
  .customize-page .customize-2 .list ul li a.img-box {
    height: 220px;
  }
  .customize-page .customize-2 .list ul li:nth-child(3) .img > div a.img-box {
    height: 100px;
  }
  .service-page .service-1 h2.title {
    font-size: 36px;
  }
  .service-page .service-1 .list {
    margin-top: 40px;
  }
  .service-page .service-2 {
    padding: 70px 0;
  }
  .service-page .service-2 .right .list ul li {
    padding: 15px 0;
  }
  .service-page .service-2 .right .list ul {
    margin: -15px 0;
  }
  .service-page .service-2 .right .list ul li .text {
    margin-top: 15px;
  }
  .factory-page .factory-1 span.tag,
  .contact-page .contact-1 span.tag {
    font-size: 24px;
  }
  .factory-page .factory-1 .box .left:before,
  .factory-page .factory-1 .box .right:before,
  .contact-page .contact-1 .box .left:before,
  .contact-page .contact-1 .box .right:before,
  .news-page .news-1 .list .slide .left:before,
  .news-page .news-1 .list .slide .right:before {
    margin-bottom: 20px;
  }
  .factory-page .factory-1 .box .left {
    width: 26%;
  }
  .factory-page .factory-1 .box .right {
    width: 74%;
  }
  .factory-page .factory-1 .box {
    margin-top: 40px;
  }
  .factory-page .factory-1 .box .slide {
    margin-bottom: 50px;
  }
  .contact-page .contact-1 .box h5 {
    font-size: 30px;
  }
  .contact-page .contact-1 .box .left .content {
    padding-right: 5%;
  }
  .contact-page .contact-1 .box .left .info ul li {
    font-size: 16px;
  }
  .contact-page .contact-1 .box .right .form ul li {
    padding: 10px;
  }
  .contact-page .contact-1 .box .right .form ul {
    margin: -10px;
  }
  .contact-page .contact-1 .box .right .form ul li label {
    font-size: 14px;
  }
  .contact-page .contact-1 .box .right .form ul li input,
  .contact-page .contact-1 .box .right .form ul li textarea {
    padding: 10px;
  }
  .contact-page .contact-1 .box .right .form ul li textarea {
    height: 100px;
  }
  .contact-page .contact-1 .box .right .form ul li input[type="submit"] {
    line-height: 40px;
    height: 44px;
    font-size: 16px;
    padding: 0 30px;
  }
  .contact-page .contact-1 {
    padding: 70px 0;
  }
  .inner-banner .box .right .text {
    font-size: 16px;
  }
  .mbx {
    font-size: 16px;
  }
  .news-page .news-1 .list .slide .right h3 {
    font-size: 24px;
  }
  .news-page .news-1 .list .slide .right .text {
    margin: 15px 0;
  }
  .news-page .news-1 .list .slide .right a.more {
    font-size: 16px;
  }
  .news-page .news-1 .list .slide .right a.more i.fa {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1250px) {
  .product-banner,
  .prodet-page .mbx{
    display: none;
  } 
  #innerMobileBanner{
    margin-top: 60px;
  }
  .inner-banner {
    padding-top: 15%;
  }
  .newsdet-page .newsdet-1 {
    padding: 40px 0;
  }
  .newsdet-page .newsdet-1 h1,
  .newsdet-page .product-List h3,
  .prodet-page .product-List h3,
  .about-page .about-1 .left h2,
  .about-page .about-3 .box h2 {
    font-size: 32px;
  }
  .newsdet-page .product-List .list ul li a.img,
  .prodet-page .product-List .list ul li a.img {
    font-size: 7px;
  }
  .prodet-page .product-List .list ul,
  .newsdet-page .product-List .list ul{
    margin: -30px;
  }
  .prodet-page .product-List .list ul li,
  .newsdet-page .product-List .list ul li {
    padding: 30px;
  }
  .prodet-page .product-List .list ul li a.img img,
  .newsdet-page .product-List .list ul li a.img img {
    max-height: 240px;
  }
  .prodet-page .product-List .list ul li span.tag,
  .newsdet-page .product-List .list ul li span.tag {
    font-size: 16px;
  }
  .prodet-page .product-List .list ul li h6,
  .newsdet-page .product-List .list ul li h6 {
    font-size: 18px;
    line-height: 1.6;
    min-height: 60px;
    color: #000;
  }
  .prodet-page .product-List .list ul li a.more,
  .newsdet-page .product-List .list ul li a.more {
    font-size: 16px;
    padding: 16px 20px;
  }
  .inner-page .slideBox .slideBoxLeft{
    display: none;
  }
  .inner-page .slideBox .slideBoxRight{
    width: 100% !important;
  }
  .font-30 {
     font-size: 26px;
  }
}
@media screen and (max-width: 1000px) {
  .newsdet-page .product-List .list {
    margin-top: 50px;
  }
  .newsdet-page .product-List .list ul li a.img,
  .prodet-page .product-List .list ul li a.img {
    margin-bottom: 20px;
  }
  .about-page .about-3.txt-center {
    padding: 70px 0;
  }
  .news-page .news-1 .list .slide .left a.img-box {
    height: 250px;
  }
  .news-page .news-1 .list .slide .left a.img-box time i,
  .prodet-page .prodet-1 .right a.more i,
  .product-banner .box2 .right a.more i {
    width: 30px;
    height: 30px;
    left: -15px;
    top: -10px;
  }
  .factory-page .factory-1 .box .left h3 {
    font-size: 24px;
  }
  .factory-page .factory-1 h2.title,
  .contact-page .contact-1 h2,
  .customize-page h2 {
    font-size: 36px;
  }
  .factory-page .factory-1 span.tag,
  .contact-page .contact-1 span.tag {
    font-size: 20px;
  }
  .contact-page .contact-1 .box h5 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .contact-page .contact-1 .box .left .info ul li {
    margin-bottom: 20px;
  }
  .service-page .service-1 h2.title {
    font-size: 28px;
  }
  .service-page .service-1 .list ul li a.img-box {
    height: 200px;
  }
  .service-page .service-2 .left {
    width: 100%;
    padding-right: 0;
  }
  .service-page .service-2 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .customize-page .customize-1 .list ul li {
    padding: 15px;
  }
  .customize-page .customize-1 .list ul {
    margin: -15px;
  }
  .customize-page .customize-1 .list ul li p {
    font-size: 14px;
  }
  .factory-page .factory-1 h2.title,
  .contact-page .contact-1 h2,
  .customize-page h2 {
    font-size: 32px;
  }
  .customize-page .customize-2 .text {
    font-size: 16px;
  }
  .customize-page .customize-2 .list ul li {
    width: 50% !important;
  }
  .customize-page .customize-2 .list ul li:nth-child(5) {
    width: 100% !important;
  }
  .prodet-page .prodet-1 {
    padding: 40px 0;
  }
  .prodet-page .prodet-1 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .prodet-page .prodet-1 .left {
    width: 100%;
  }
  .prodet-page .prodet-2 .options span {
    font-size: 16px;
    padding: 0 25px;
  }
  .prodet-page .prodet-2 .options {
    line-height: 44px;
    height: 44px;
  }
  .prodet-page .prodet-2 .ret .content.table table tr td blockquote {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .prodet-page .prodet-2 .ret .content.table table tr td blockquote:before {
    width: 30px;
    height: 2px;
    margin-bottom: 5px;
  }
  .prodet-page .prodet-2 .ret .content {
    font-size: 14px;
  }
  .product-banner .box2 {
    padding-right: 0;
  }
  .product-banner .box2 .right {
    padding: 0;
  }
  .product-banner .box2 .right h3 {
    font-size: 44px;
  }
  .product-banner .box2 .right .text {
    margin: 15px 0 30px;
  }
  .product-banner text {
    font-size: 120px;
  }
  .product-banner {
    height: 400px;
  }
  .product-List {
    padding: 30px 0;
  }
  .product-List .list ul li a.img-box {
    border-width: 10px;
  }
  .about-page .about-1 .left {
    padding-right: 0;
    width: 100%;
  }
  .about-page .about-1 .right {
    width: 100%;
    padding-left: 0;
  }
  .about-page .about-1 .right .img a.img-box {
    height: 300px;
    margin-bottom: 0;
  }
  .about-page .about-1 {
    padding: 50px 0;
  }
  .about-page .about-1 .left .text {
    margin-top: 30px;
  }
  .about-page .about-2 {
    padding: 70px 0;
  }
  .about-page .about-2 i.bg {
    display: none;
  }
  .about-page .about-2 .box {
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
  }
  .about-page .about-2 .box h2 {
    font-size: 36px;
  }
  .about-page .about-3 {
    padding: 100px 0;
  }
  .about-page .about-3 .box .text {
    margin-left: 0;
  }
  .product-banner .box2 .right a.more {
    margin-left: 15px;
    font-size: 16px;
  }
  .prodet-page .prodet-1 .right a.more {
    margin-top: 30px;
  }
  .prodet-page .prodet-1 .right h6 {
    margin: 15px 0;
  }
  .Auxil-industry{
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner h2,
  .product-banner .box2 .left h2 {
    font-size: 32px;
  }
  .inner-banner {
    height: 300px;
  }
  .newsdet-page .newsdet-1 h1,
  .newsdet-page .product-List h3,
  .prodet-page .product-List h3,
  .about-page .about-1 .left h2,
  .about-page .about-3 .box h2 {
    font-size: 26px;
  }
  .prodet-page .prodet-2{
    padding-bottom: 30px;
  }
  .news-page .news-1 .list .slide .left,
  .factory-page .factory-1 .box .left,
  .contact-page .contact-1 .box .left {
    width: 100%;
    padding-right: 0;
  }
  .news-page .news-1 .list .slide .right,
  .factory-page .factory-1 .box .right,
  .contact-page .contact-1 .box .right {
    width: 100%;
    margin-top: 20px;
  }
  .factory-page .factory-1 .box .left:before,
  .factory-page .factory-1 .box .right:before,
  .contact-page .contact-1 .box .left:before,
  .contact-page .contact-1 .box .right:before,
  .news-page .news-1 .list .slide .left:before,
  .news-page .news-1 .list .slide .right:before {
    display: none;
  }
  .factory-page .factory-1 h2.title,
  .contact-page .contact-1 h2,
  .customize-page h2 {
    max-width: none;
    font-size: 26px;
  }
  .contact-page .contact-1 .box {
    margin-top: 30px;
  }
  .about-page .about-3 .box .form ul li:nth-child(1),
  .about-page .about-3 .box .form ul li:nth-child(2),
  .about-page .about-3 .box .form ul li:nth-child(3) {
    width: 33.33%;
  }
  .about-page .about-3 .box .form ul li:nth-child(4) {
    width: 100%;
  }
  .about-page .about-3 .box .form ul li:nth-child(5) {
    width: 100%;
  }
  .service-page .service-2 .left h3 {
    font-size: 24px;
  }
  .customize-page .customize-2 .list ul li a.img-box {
    height: 140px;
  }
  .customize-page .customize-2 .list ul li:nth-child(3) .img > div a.img-box {
    height: 60px;
  }
  .prodet-page .prodet-2 .options span {
    font-size: 14px;
  }
  .product-banner .box2 .right {
    width: 100%;
  }
  .product-banner .box2 .left {
    width: 100%;
  }
  .mbx {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color);
  line-height: 2;
}
  .product-banner .box2 .right h3 {
    font-size: 18px;
    line-height: 1.5;
  }
  .product-banner .box2 .left h1 {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 10px;
}
  .product-banner .box2 .right .text {
    font-size: 14px;
    line-height: 2;
    margin: 10px 0 20px;
  }
  .product-banner text {
    font-size: 90px;
  }
  .product-banner .bg {
    width: 35%;
  }
  .about-page .about-3 .box .btn a em {
    min-width: auto;
    padding-bottom: 5px;
  }
  .about-page .about-3 .box .btn {
    padding: 30px 0;
  }
  .about-page .about-3 {
    padding: 70px 0;
  }
  .about-page .about-2 .box .list ul li {
    width: 100%;
    padding: 10px;
  }
  .about-page .about-2 .box .list ul {
    margin: -10px;
  }
  .about-page .about-2 .box h2 {
    font-size: 28px;
  }
  .about-page .about-1 .right .list ul li h6 {
    font-size: 24px;
  }
  .product-List .jiudapro{
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .product-List .jiudapro{
    font-size: 14px;
  }
  .inner-banner .box .left {
    width: 100%;
  }
  .inner-banner .box .right {
    width: 100%;
    margin-top: 15px;
  }
  .about-page .about-1,
  .about-page .about-3,
  .about-page .about-2{
    padding: 30px 0;
  }
  .about-page .about-1 .right .list ul li p {
    font-size: 14px;
    margin-top: 10px;
  }
  .about-page .about-1 .right .img a.img-box {
    height: 200px;
  }
  .about-page .about-1 .left .text{
    font-size: 14px;
  }
  .about-page .about-2 .box h2{
    font-size: 26px;
  }
  .about-page .about-3 .box .btn a {
    width: 100%;
    margin-bottom: 15px;
  }
  .about-page .about-3 .box .form ul li:nth-child(1),
  .about-page .about-3 .box .form ul li:nth-child(2),
  .about-page .about-3 .box .form ul li:nth-child(3) {
    width: 100%;
  }
  .about-page .about-3 .box .form ul li input {
    line-height: 44px;
    height: 44px;
    font-size: 14px;
  }
  .prodet-page .prodet-2 .options {
    display: none;
  }
  .prodet-page .prodet-2 .ret {
    margin-top: 0;
  }
  .prodet-page .prodet-2 .ret .slide {
    margin-top: 20px;
    display: block;
  }
  .prodet-page .prodet-2 .ret .slide table {
    white-space: nowrap;
  }
  .prodet-page .prodet-2 .ret .slide .content.table table {
    white-space: normal;
  }
  table tbody {
    width: auto !important;
  }
  .prodet-page .prodet-2 .ret .slide .content.table table tr td {
    padding: 10px !important;
    white-space: nowrap;
  }
  .prodet-page .prodet-2 .ret .content.faq ul li {
    padding: 10px 0;
  }
  .prodet-page .prodet-2 .ret .content.faq ul {
    margin: -10px 0;
  }
  .customize-page .customize-2 .list ul li {
    width: 100% !important;
  }
  .customize-page .customize-2 .list ul li:nth-child(3) .img > div {
    width: 50%;
  }
  .customize-page .customize-2 .list ul li:nth-child(3) .img > div a.img-box {
    height: 90px;
  }
  .news-page .news-1 .list .slide .right h3 {
    font-size: 20px;
  }
  .newsdet-page .newsdet-1 .content {
    font-size: 16px;
  }
}
.oxy-nav-menu .mb2-search input[type=submit]{
  background-image: url(../images/icon-search-white.png);
}
#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from form {
  margin-top: 40px;
}
#pups_from i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from i.close::after,
#pups_from i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from i.close:hover {
  background: var(--color);
}
#pups_from i.close:hover::before,
#pups_from i.close:hover::after {
  background: white;
}
#pups_from ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from ul li input,
#pups_from ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}
#pups_from ul li input:focus,
#pups_from ul li textarea:focus {
  border-color: var(--color);
}
#pups_from ul li textarea {
  height: 80px;
}
#pups_from ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from ul li:last-child {
  margin-bottom: 0;
}
.seoPublic>div:nth-child(odd){
  background: transparent;
}

.inner-page .slideBox .slideBoxLeft {
  width: 22%;
  padding-right: 5%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.inner-page .slideBox .slideBoxLeft .nav a {
  padding: .7em 0;
  border-bottom: 1px solid #707070;
}
.inner-page .slideBox .slideBoxLeft .nav a i {
  font-size: 1.3em;
  line-height: 1;
}
.inner-page .slideBox .slideBoxLeft .nav a.active,
.inner-page .slideBox .slideBoxLeft .nav a:hover {
  font-weight: bold;
}
.inner-page .slideBox .slideBoxLeft .nav a i.on {
  transform: rotate(45deg);
}
.inner-page .slideBox .slideBoxLeft .nav ul ul {
  padding-left: 1em;
  margin: 1em 0;
  display: none;
}
.inner-page .slideBox .slideBoxRight {
  width: 78%;
}

.inner-page .slideBox .slideBoxRight .text p{
  margin-bottom: 10px;
}
.newdet-page .slideBox .slideBoxRight .rel img{
  width: 100%;
}
.newdet-page .slideBox .slideBoxRight .rel ul{
  margin: -15px;
}
.newdet-page .slideBox .slideBoxRight .rel ul li{
  padding: 15px;
}